        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-accent: #00b4d8;
            --secondary-accent: #7b2cbf;
            --text-primary: #e9ecef;
            --text-secondary: #adb5bd;
            --card-bg: #1a1f2e;
            --section-bg: #111827;
            --hover-glow: 0 0 15px rgba(0, 180, 216, 0.7);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #90e0ef;
            text-shadow: var(--hover-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, rgba(10,14,23,0.95) 0%, rgba(10,14,23,0.8) 100%);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 180, 216, 0.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-accent);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--card-bg);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid rgba(0,180,216,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--section-bg);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 0.5rem;
        }
        .hero {
            padding: 4rem 0;
            text-align: center;
            background: radial-gradient(circle at center, #1a2b4a 0%, var(--primary-dark) 70%);
            border-bottom: 2px solid var(--primary-accent);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #00b4d8, #9d4edd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
        }
        .interactive-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: 1px solid rgba(0,180,216,0.3);
        }
        .feature-box {
            background-color: rgba(26, 31, 46, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-glow);
        }
        .feature-box h3 {
            margin-bottom: 1rem;
            color: var(--primary-accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            background-color: rgba(10,14,23,0.8);
            border: 1px solid #2d3748;
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: var(--hover-glow);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        main {
            padding: 2rem 0;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
        }
        section {
            margin-bottom: 4rem;
            padding: 2rem;
            background-color: var(--section-bg);
            border-radius: 10px;
            border-left: 5px solid var(--primary-accent);
            transition: var(--transition);
        }
        section:hover {
            border-left-color: var(--secondary-accent);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #00b4d8;
            border-bottom: 2px solid rgba(123, 44, 191, 0.5);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #9d4edd;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-primary);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(0,180,216,0.1), rgba(123,44,191,0.1));
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-accent);
            margin: 2rem 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 2px solid rgba(0,180,216,0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            max-width: 100%;
            height: auto;
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 180, 216, 0.3);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .content-link {
            color: #9d4edd;
            font-weight: 600;
            border-bottom: 1px dotted #9d4edd;
            padding-bottom: 2px;
        }
        .content-link:hover {
            color: #c77dff;
            border-bottom-style: solid;
        }
        .internal-links {
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, var(--card-bg) 0%, #16213e 100%);
            border-radius: 10px;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(26, 31, 46, 0.8);
            padding: 0.8rem 1.5rem;
            margin: 0.7rem;
            border-radius: 50px;
            border: 1px solid rgba(0,180,216,0.3);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(0,180,216,0.1);
            border-color: var(--primary-accent);
            transform: translateY(-3px);
        }
        footer {
            background-color: #080c14;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(0,180,216,0.2);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary-accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .interactive-features {
                grid-template-columns: 1fr;
            }
            section {
                padding: 1.5rem;
            }
            .feature-box {
                padding: 1.2rem;
            }
        }
