:root {
            --primary-dark: #1a1a2e;
            --primary-red: #d72323;
            --accent-pink: #ff6b8b;
            --accent-orange: #ff9a3c;
            --light-bg: #f8f9fa;
            --text-light: #e6e6e6;
            --text-dark: #222831;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-orange);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #16213e 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-pink), var(--accent-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-pink);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--accent-pink);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--accent-pink);
        }
        .search-section {
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            padding: 3rem 0;
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent-orange);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 2px dashed var(--accent-pink);
            padding-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .meta i {
            margin-right: 5px;
            color: var(--primary-red);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .article-content h2 {
            color: var(--primary-dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-orange);
            font-size: 2rem;
        }
        .article-content h3 {
            color: var(--primary-red);
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 107, 139, 0.15) 0%, rgba(255, 154, 60, 0.15) 100%);
            border-left: 5px solid var(--accent-pink);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .interactive-section {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin: 4rem 0;
        }
        .comments, .rating {
            flex: 1;
            min-width: 300px;
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .section-title {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #ccc;
            margin-bottom: 1rem;
            font-size: 1rem;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-red), var(--accent-orange));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .footer-links {
            background: var(--primary-dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link a {
            color: var(--text-light);
        }
        .web-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background: #0f0f1a;
            color: var(--text-light);
            text-align: center;
            padding: 2.5rem 0;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .social-links a {
            color: var(--text-light);
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--accent-pink);
            transform: scale(1.2);
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: var(--primary-dark);
                width: 100%;
                text-align: center;
                padding: 2rem;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .interactive-section {
                flex-direction: column;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 2rem;
            }
            .meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
        }
