:root {
            --primary: #C80A1E;
            --secondary: #1A1D29;
            --accent: #FFD700;
            --light: #F5F5F5;
            --dark: #0A0C14;
            --text: #333333;
            --gray: #6C757D;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }
        .header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 2px;
            transition: transform 0.3s ease, color 0.3s ease;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .logo:hover {
            transform: scale(1.05);
            color: white;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background-color: rgba(200, 10, 30, 0.8);
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(10, 12, 20, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .search-container {
            background: linear-gradient(rgba(26, 29, 41, 0.9), rgba(10, 12, 20, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 3rem 1rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem auto;
            color: white;
        }
        .search-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            background: #E50914;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(200, 10, 30, 0.7);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--primary);
            padding-left: 20px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(200, 10, 30, 0.2);
        }
        h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary);
            background: linear-gradient(90deg, rgba(200,10,30,0.1) 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.15);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            margin: 2rem 0;
        }
        .wallpaper-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 2.5rem 0;
        }
        .wallpaper-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .wallpaper-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .wallpaper-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .wallpaper-card:hover .wallpaper-img {
            transform: scale(1.05);
        }
        .wallpaper-info {
            padding: 1.5rem;
        }
        .download-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: center;
        }
        .download-btn:hover {
            background: #A00818;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(200, 10, 30, 0.4);
        }
        .character-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 2rem 0;
        }
        .character-tag {
            background: rgba(26, 29, 41, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .character-tag:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .comments-section, .rating-section {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: 3rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: var(--accent);
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.3);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--primary) 0%, #A00818 100%);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(200, 10, 30, 0.3);
        }
        .comment-list {
            margin-top: 2.5rem;
        }
        .comment {
            background: rgba(26, 29, 41, 0.03);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
        }
        .comment-author {
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .footer-links {
            background: var(--secondary);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: color 0.3s ease;
        }
        .web-link a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-links-internal {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links-internal a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links-internal a:hover {
            color: var(--accent);
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content, .comments-section, .rating-section { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { width: 100%; }
            .wallpaper-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
