:root {
            --primary-dark: #0a0e29;
            --primary-blue: #1a237e;
            --star-yellow: #ffeb3b;
            --cosmic-purple: #7b1fa2;
            --accent-teal: #26c6da;
            --text-light: #f5f5f5;
            --text-dim: #b0b0c0;
            --bg-gradient: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a40 50%, var(--cosmic-purple) 100%);
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-glow: rgba(26, 35, 126, 0.7);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-gradient);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--star-yellow);
            text-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 14, 41, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid 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: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--star-yellow), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(38, 198, 218, 0.5);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--star-yellow);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-glow);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--star-yellow);
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: var(--text-dim);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--star-yellow);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(26, 35, 126, 0.2) 0%, transparent 70%);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--star-yellow), #ff9800);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-light);
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border-glow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: var(--star-yellow);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 1px solid var(--primary-blue);
            border-radius: 8px 0 0 8px;
            background: rgba(10, 14, 41, 0.8);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cosmic-purple));
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.2s ease;
        }
        .search-form button:hover {
            transform: scale(1.05);
            background: linear-gradient(90deg, var(--cosmic-purple), var(--primary-blue));
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid var(--border-glow);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        article h2 {
            color: var(--star-yellow);
            font-size: 2.2rem;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-teal);
        }
        article h3 {
            color: var(--accent-teal);
            font-size: 1.8rem;
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.15rem;
        }
        article b {
            color: var(--star-yellow);
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--border-glow);
        }
        .article-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-img:hover img {
            transform: scale(1.03);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border-glow);
        }
        .widget h3 {
            color: var(--star-yellow);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 20px 0;
            color: var(--text-dim);
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .rating-widget .stars .active {
            color: var(--star-yellow);
            text-shadow: 0 0 10px currentColor;
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cosmic-purple));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background: rgba(10, 14, 41, 0.8);
            border: 1px solid var(--primary-blue);
            border-radius: 8px;
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #388e3c, #2e7d32);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #2e7d32, #388e3c);
        }
        .footer-links {
            margin-top: 60px;
            padding: 40px 0;
            border-top: 1px solid var(--border-glow);
            border-bottom: 1px solid var(--border-glow);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-teal);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.08);
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-dim);
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .main-article {
                padding: 25px;
            }
            article h2 {
                font-size: 1.9rem;
            }
            article h3 {
                font-size: 1.6rem;
            }
        }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(255, 235, 59, 0.1) 50%, transparent 100%);
            padding: 5px 15px;
            border-radius: 5px;
            margin: 5px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
            margin: 40px 0;
        }
