:root {
            --primary-dark: #1a1a2e;
            --primary-blue: #16213e;
            --accent-purple: #6a11cb;
            --accent-cyan: #2575fc;
            --accent-gold: #ffd700;
            --text-light: #f0f8ff;
            --text-gray: #b0bec5;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(106, 17, 203, 0.3);
            --shadow-glow: 0 0 15px rgba(106, 17, 203, 0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a:hover {
            background: linear-gradient(to right, var(--accent-gold), var(--accent-cyan));
            -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.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-cyan);
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 5px;
            background-color: var(--card-bg);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(106, 17, 203, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0 60px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-glow);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-top: 15px;
        }
        .article-meta i {
            margin-right: 5px;
            color: var(--accent-purple);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            font-size: 1.1rem;
        }
        h2, h3, h4 {
            margin: 30px 0 15px;
            color: var(--accent-gold);
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(106, 17, 203, 0.2), transparent);
            border-left: 4px solid var(--accent-purple);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            font-weight: 600;
        }
        .emoji {
            margin-right: 8px;
            font-size: 1.2em;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 25px 0;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-glow);
        }
        .internal-links {
            margin: 30px 0;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            list-style-type: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .internal-links li {
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 5px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .internal-links li:hover {
            transform: translateY(-3px);
            background-color: rgba(106, 17, 203, 0.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--accent-cyan);
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--accent-purple);
        }
        .search-button {
            background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }
        .search-button:hover {
            opacity: 0.9;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--accent-gold);
        }
        .rating-stars input:checked ~ label {
            color: var(--accent-gold);
        }
        .rating-stars label:hover {
            transform: scale(1.2);
        }
        .rating-form input,
        .rating-form textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-top: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .rating-form textarea,
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 15px;
            width: 100%;
            transition: opacity 0.3s ease, transform 0.2s ease;
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: rgba(0, 0, 0, 0.4);
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background-color: var(--card-bg);
            border-radius: 30px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(106, 17, 203, 0.3);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }
        .footer-links .container {
            text-align: center;
        }
        footer {
            padding: 30px 0;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .internal-links ul {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .logo a {
                font-size: 1.6rem;
            }
            .widget {
                padding: 20px;
            }
        }
