:root {
            --cosmic-blue: #0a0e2a;
            --nebula-purple: #4a1e6e;
            --star-gold: #ffcc00;
            --planet-teal: #2ab7ca;
            --space-gray: #1a1d2c;
            --text-light: #e6f1ff;
            --text-dim: #b0c4de;
            --card-bg: rgba(26, 29, 44, 0.8);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, var(--cosmic-blue) 0%, var(--space-gray) 50%, var(--nebula-purple) 100%);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 14, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--planet-teal);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--star-gold), var(--planet-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(42, 183, 202, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-dim);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: var(--star-gold);
            background: rgba(255, 204, 0, 0.1);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--planet-teal);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--star-gold);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--card-bg);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid var(--planet-teal);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            padding: 0.8rem;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background: rgba(255,204,0,0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb a {
            color: var(--planet-teal);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            border-left: 5px solid var(--star-gold);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #fff, var(--planet-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--text-dim);
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--star-gold);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--nebula-purple);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--planet-teal);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-dim);
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--star-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--planet-teal);
            box-shadow: 0 0 25px rgba(42, 183, 202, 0.3);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 0 35px rgba(42, 183, 202, 0.5);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--card-bg);
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .widget h3 {
            color: var(--star-gold);
            margin-top: 0;
            font-size: 1.4rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid var(--planet-teal);
            background: rgba(10, 14, 42, 0.7);
            color: white;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(90deg, var(--planet-teal), var(--nebula-purple));
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(90deg, var(--nebula-purple), var(--planet-teal));
            transform: translateY(-2px);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--star-gold);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            transition: var(--transition);
            margin: 0 2px;
        }
        .stars i:hover {
            transform: scale(1.3);
            text-shadow: 0 0 10px gold;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid var(--planet-teal);
            background: rgba(10, 14, 42, 0.7);
            color: white;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            padding: 0.8rem 2rem;
            background: linear-gradient(90deg, var(--star-gold), #ff9900);
            color: var(--cosmic-blue);
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #ff9900, var(--star-gold));
            transform: translateY(-2px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--planet-teal);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--planet-teal);
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: rgba(10, 14, 42, 0.98);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--nebula-purple);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(42, 183, 202, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(42, 183, 202, 0); }
            100% { box-shadow: 0 0 0 0 rgba(42, 183, 202, 0); }
        }
        .pulse {
            animation: pulse 2s infinite;
            border-radius: 10px;
        }
        @media print {
            .sidebar, .hamburger, .web-links, footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            article {
                box-shadow: none;
                background: white;
            }
        }
