        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #c00a1e;
            --secondary: #1a1a2e;
            --accent: #f0b400;
            --light: #f8f9fa;
            --dark: #121212;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd343;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(240, 180, 0, 0.15) 50%, transparent 100%);
            padding: 2px 8px;
            border-left: 3px solid var(--accent);
        }
        .site-header {
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(192, 10, 30, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(10px);
            flex-direction: column;
            padding: 30px;
            gap: 25px;
            transition: var(--transition);
            z-index: 999;
        }
        .nav-mobile.active {
            left: 0;
        }
        .nav-mobile a {
            color: var(--light);
            font-size: 1.2rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: block;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(255,255,255,0.03);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(18, 18, 18, 0.8);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid rgba(192, 10, 30, 0.3);
        }
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--primary);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(192, 10, 30, 0.5);
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        .last-updated {
            color: var(--gray);
            font-style: italic;
            margin-top: 10px;
            display: block;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid var(--accent);
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .featured-image img {
            width: 100%;
            transition: var(--transition);
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: rgba(0,0,0,0.5);
            color: #ccc;
        }
        h2 {
            font-size: 2rem;
            color: var(--accent);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(240, 180, 0, 0.3);
        }
        h3 {
            font-size: 1.6rem;
            color: #fff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #e0e0e0;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .pull-quote {
            font-size: 1.4rem;
            font-style: italic;
            color: var(--accent);
            border-left: 4px solid var(--primary);
            padding: 20px 30px;
            margin: 30px 0;
            background: rgba(192, 10, 30, 0.08);
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: rgba(26, 26, 46, 0.9);
            border: 2px solid var(--primary);
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
        }
        .stats-box h3 {
            margin-top: 0;
            color: var(--accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(18, 18, 18, 0.8);
            border-radius: 8px;
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.4rem;
            color: var(--accent);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        input, select, textarea {
            padding: 12px 15px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(240, 180, 0, 0.2);
        }
        button {
            background: linear-gradient(45deg, var(--primary), #a00818);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        button:hover {
            background: linear-gradient(45deg, #d90c23, var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(192, 10, 30, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ccc;
        }
        .related-links a:hover {
            color: var(--accent);
        }
        .related-links i {
            color: var(--primary);
        }
        .site-footer {
            background: rgba(10, 10, 18, 0.95);
            padding: 50px 20px 30px;
            margin-top: 60px;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 0.9rem;
        }
