        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #1a1a2e;
            --accent: #FFD700;
            --light: #f5f5f5;
            --dark: #222;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: #FFD700;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h1 {
            font-size: 2.8rem;
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff6b6b;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }
        .logo {
            font-family: 'Impact', sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(45deg, #FFD700, #8B0000);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 2px;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            background: var(--primary);
            color: var(--accent);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: var(--transition);
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--secondary);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            box-shadow: -5px 0 20px rgba(0,0,0,0.5);
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: var(--light);
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--accent);
            padding-left: 1rem;
        }
        .close-menu {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(255,255,255,0.05);
            margin-top: 1rem;
            border-radius: 8px;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.8rem;
            color: var(--gray);
        }
        .search-section {
            background: linear-gradient(rgba(139,0,0,0.9), rgba(26,26,46,0.9));
            padding: 3rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .search-form {
            max-width: 700px;
            margin: 2rem auto 0;
            display: flex;
            gap: 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.95);
        }
        .search-btn {
            background: var(--accent);
            color: var(--dark);
            border: none;
            padding: 0 2.5rem;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #ffed4e;
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 46, 0.8);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,215,0,0.1);
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(139,0,0,0.5);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(139,0,0,0.2), transparent);
            padding: 1.5rem;
            border-left: 5px solid var(--accent);
            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: 3rem 0;
        }
        .stat-card {
            background: rgba(255,255,255,0.05);
            padding: 1.8rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .stat-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 3rem;
            color: var(--accent);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        aside {
            background: rgba(26,26,46,0.9);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(255,215,0,0.1);
        }
        .rating-section, .comments-section {
            background: rgba(30,30,46,0.9);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1.2rem;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,215,0,0.3);
            border-radius: 8px;
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255,255,255,0.15);
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--primary), #b30000);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(45deg, #b30000, var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(139,0,0,0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 10px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(139,0,0,0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: var(--accent);
            text-decoration: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .web-link i {
            font-size: 1.2rem;
        }
        footer {
            background: var(--secondary);
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            border-top: 5px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.95rem;
        }
        .text-bold {
            font-weight: bold;
            color: var(--accent);
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
            margin: 3rem 0;
            border-radius: 3px;
        }
        .float-right {
            float: right;
            margin: 0 0 1rem 2rem;
            max-width: 400px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .featured-image {
                height: 300px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
            }
            .float-right {
                float: none;
                margin: 1rem 0;
                max-width: 100%;
            }
        }
