        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a1a;
            --primary-blue: #1a237e;
            --accent-yellow: #FFD700;
            --accent-red: #C41E3A;
            --neutral-light: #f0f2f5;
            --neutral-mid: #b0b2c3;
            --text-primary: #e0e0ff;
            --text-secondary: #a0a2b5;
            --gradient-space: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #2a2a5a 100%);
            --shadow-glowing: 0 0 15px rgba(26, 35, 126, 0.7);
            --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.3);
            --border-glow: 1px solid rgba(255, 215, 0, 0.3);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: var(--gradient-space);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: white;
            text-shadow: 0 0 8px var(--accent-yellow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-blue), #283593);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            border: var(--border-glow);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            box-shadow: var(--shadow-soft);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glowing);
            background: linear-gradient(to right, #283593, #3949ab);
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
            color: white;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-red), var(--accent-yellow));
            border-radius: 2px;
        }
        .highlight {
            color: var(--accent-yellow);
            font-weight: 700;
        }
        .card {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 12px;
            padding: 25px;
            border: var(--border-glow);
            box-shadow: var(--shadow-soft);
            transition: transform 0.4s, box-shadow 0.4s;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .site-header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: none;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(to right, white, var(--accent-yellow));
            -webkit-background-clip: text;
            background-clip: text;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-yellow);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.98);
            border-top: var(--border-glow);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--neutral-mid);
        }
        .breadcrumb a {
            color: var(--neutral-mid);
        }
        .breadcrumb a:hover {
            color: var(--accent-yellow);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(26, 35, 126, 0.2) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-secondary);
        }
        .search-section {
            padding: 30px 0;
            background: rgba(0, 0, 20, 0.4);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow-glowing);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: var(--neutral-mid);
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-blue), #283593);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #283593, #3949ab);
        }
        .main-content {
            flex: 1;
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        article h2, article h3 {
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            color: white;
        }
        article h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-red);
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
            color: var(--accent-yellow);
        }
        .featured-image {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow-glowing);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--neutral-mid);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .info-box {
            background: rgba(26, 35, 126, 0.2);
            border-left: 5px solid var(--accent-yellow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        blockquote {
            font-size: 1.4rem;
            font-style: italic;
            border-left: 5px solid var(--accent-red);
            padding-left: 25px;
            margin: 30px 0;
            color: #d0d0ff;
        }
        .sidebar .card {
            margin-bottom: 25px;
        }
        .sidebar h3 {
            color: var(--accent-yellow);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .rating-widget, .comment-widget {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--neutral-mid);
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-yellow);
        }
        .rating-form input, .rating-form textarea,
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .footer-links {
            padding: 40px 0;
            background: rgba(0, 0, 20, 0.7);
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--accent-yellow);
        }
        .site-footer {
            text-align: center;
            padding: 30px 0;
            border-top: var(--border-glow);
            background: rgba(10, 10, 26, 0.9);
            color: var(--neutral-mid);
            font-size: 0.95rem;
        }
        .site-footer p {
            margin: 10px 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
                padding: 16px;
            }
        }
