* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c2e 0%, #1a1a3e 100%);
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 40, 0.95);
            border-bottom: 2px solid #00ccff;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00ccff, #ff00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #a0a0ff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background: #00ccff;
            color: #0c0c2e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #00ccff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 60, 0.98);
            padding: 20px;
            border-top: 1px solid #444;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #333;
            transition: padding-left 0.3s;
        }
        .nav-mobile a:hover {
            padding-left: 25px;
            color: #00ccff;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #888;
        }
        .breadcrumb a {
            color: #a0a0ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 20, 50, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #00ffff;
            margin-bottom: 20px;
            text-shadow: 0 0 10px #00ffff;
        }
        h2 {
            font-size: 2rem;
            color: #ff66cc;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.5rem;
            color: #66ff99;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 204, 255, 0.1);
            border-left: 5px solid #00ccff;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00ccff;
            margin: 20px 0;
            transition: transform 0.5s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .internal-link {
            color: #66ffcc;
            text-decoration: none;
            font-weight: bold;
        }
        .internal-link:hover {
            text-decoration: underline;
            text-shadow: 0 0 8px #66ffcc;
        }
        .sidebar {
            background: rgba(25, 25, 65, 0.8);
            border-radius: 15px;
            padding: 20px;
            height: fit-content;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ff9966;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #555;
            background: #111133;
            color: #fff;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ff3366, #ff9933);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            height: 100px;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #555;
            background: #111133;
            color: #fff;
            resize: vertical;
            margin-bottom: 10px;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #555;
            background: #111133;
            color: #fff;
            margin-bottom: 10px;
        }
        .comment-form button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #3366ff, #00ccff);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 40px 0;
            padding: 20px;
            background: rgba(15, 15, 45, 0.8);
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(0, 50, 100, 0.3);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 100, 200, 0.5);
        }
        .web-link a {
            color: #99ccff;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #00ffff;
        }
        footer {
            text-align: center;
            padding: 25px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .bold {
            font-weight: 900;
            color: #ffff99;
        }
        .new-line {
            display: block;
            margin-top: 10px;
        }
