        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-red: #cc0000;
            --dark-bg: #0f0f0f;
            --medium-bg: #1a1a1a;
            --light-bg: #2a2a2a;
            --text-light: #f0f0f0;
            --text-dim: #b0b0b0;
            --accent-gold: #ffcc00;
            --border-color: #333;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-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;
        }
        section {
            margin-bottom: 3rem;
        }
        .site-header {
            background-color: rgba(15, 15, 15, 0.95);
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-red);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .logo a:hover {
            text-decoration: none;
            color: #ff3333;
        }
        .main-nav {
            display: flex;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-list a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-list a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s;
        }
        .nav-list a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--medium-bg);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb span {
            color: var(--text-dim);
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: var(--medium-bg);
            padding: 2rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-red);
        }
        .sidebar {
            background: var(--medium-bg);
            padding: 1.5rem;
            border-radius: 10px;
        }
        h1, h2, h3 {
            color: var(--accent-gold);
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-bottom: 2px solid var(--border-color); padding-bottom: 0.5rem; }
        h3 { font-size: 1.7rem; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(204, 0, 0, 0.1);
            border-left: 4px solid var(--primary-red);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-dim);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .float-img {
            float: right;
            margin: 0 0 1rem 2rem;
            max-width: 400px;
            border: 3px solid var(--border-color);
            border-radius: 5px;
        }
        @media (max-width: 768px) {
            .float-img {
                float: none;
                margin: 1rem auto;
                display: block;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .term {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .search-box, .comment-form, .rating-form {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background: var(--dark-bg);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
        }
        button:hover {
            background: #ff3333;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--text-dim);
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent-gold);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: var(--primary-red);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 600;
        }
        .site-footer {
            background: #000;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            border-top: 3px solid var(--primary-red);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            padding-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(15, 15, 15, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                border-top: 1px solid var(--border-color);
            }
            .main-nav.active {
                left: 0;
            }
            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
