        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a0a;
            --primary-red: #9a0000;
            --primary-gold: #d4af37;
            --accent-blue: #0066cc;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-card: #1a1a1a;
            --border-color: #333;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.8));
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-red);
            text-shadow: 2px 2px 4px #000, 0 0 15px #9a0000;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .my-logo span {
            color: var(--text-light);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            color: var(--primary-gold);
            border-bottom-color: var(--primary-red);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1 {
            color: var(--primary-red);
            font-size: 3.2rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 1px 1px 2px #000;
        }
        h2 {
            color: var(--primary-gold);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            color: var(--accent-blue);
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: var(--text-light);
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-gray);
            border-left: 4px solid var(--primary-red);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(154,0,0,0.2), transparent);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid var(--primary-red);
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            border: 3px solid var(--border-color);
            margin: 30px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--primary-gold);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        input, textarea, select {
            padding: 12px 15px;
            background-color: #2a2a2a;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-red), #6a0000);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #b30000, var(--primary-red));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(154,0,0,0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .stars span:hover,
        .stars span:hover ~ span {
            color: #ffcc00;
        }
        .stars .active {
            color: #ffcc00;
        }
        .site-footer {
            background-color: #050505;
            margin-top: 60px;
            padding: 50px 0 30px;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #333;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; color: var(--primary-gold); }
        .emoji { font-size: 1.2em; }
        .last-updated {
            color: var(--text-gray);
            font-style: italic;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                background-color: rgba(10,10,10,0.98);
                width: 80%;
                height: calc(100vh - 80px);
                transition: right 0.4s ease;
                padding: 30px;
                overflow-y: auto;
                border-left: 2px solid var(--primary-red);
            }
            .main-nav.active { right: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 25px; }
            .header-content { padding: 0 15px; }
        }
