        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a0a;
            --secondary-red: #c00a0a;
            --accent-gold: #d4af37;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-card: #1a1a1a;
            --border-color: #333;
            --shadow-heavy: 0 8px 16px rgba(192, 10, 10, 0.3);
            --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(192, 10, 10, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--secondary-red);
            text-shadow: 0 0 8px rgba(192, 10, 10, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary-red);
            box-shadow: var(--shadow-heavy);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            background: linear-gradient(45deg, var(--secondary-red), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            color: inherit;
            background: none;
        }
        .my-logo a:hover {
            text-shadow: 0 0 15px rgba(192, 10, 10, 0.9);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--secondary-red);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
        }
        .main-nav a:hover {
            color: var(--secondary-red);
            background: rgba(192, 10, 10, 0.1);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-bottom: 4px solid var(--secondary-red);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -10%;
            width: 120%;
            height: 100%;
            background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(192,10,10,0.03) 2px, rgba(192,10,10,0.03) 4px);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: var(--text-light);
            text-shadow: 3px 3px 0 var(--secondary-red), 6px 6px 0 rgba(0,0,0,0.8);
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .hero .tagline {
            color: var(--accent-gold);
            font-style: italic;
            font-size: 1.5rem;
            margin-top: 20px;
        }
        .content-section {
            background-color: var(--bg-card);
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow-light);
            border-left: 5px solid var(--secondary-red);
        }
        h2 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px dashed var(--border-color);
            position: relative;
        }
        h2::after {
            content: '⚔️';
            position: absolute;
            right: 0;
            bottom: -10px;
            font-size: 1.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-red);
            margin: 30px 0 15px;
            padding-left: 15px;
            border-left: 4px solid var(--accent-gold);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-light);
            margin: 20px 0 10px;
            padding-left: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        .highlight {
            background-color: rgba(192, 10, 10, 0.1);
            border-left: 4px solid var(--secondary-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            color: var(--text-light);
            font-weight: 600;
        }
        .float-img {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 400px;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-light);
        }
        .float-img figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 8px;
            font-size: 0.9rem;
        }
        .internal-links {
            background-color: rgba(212, 175, 55, 0.05);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px dashed var(--accent-gold);
        }
        .internal-links h4 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        .internal-links ul {
            columns: 2;
            list-style: none;
        }
        .internal-links li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .internal-links li::before {
            content: '🔗';
            position: absolute;
            left: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #222, #1a1a1a);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--secondary-red);
        }
        .stat-card .number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--secondary-red);
            display: block;
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-card p {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 1rem;
        }
        .feature-box {
            background-color: var(--primary-dark);
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .feature-box h3 {
            text-align: center;
            border: none;
            padding-left: 0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        .form-group {
            flex: 1 1 300px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background-color: #222;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-red);
            box-shadow: 0 0 0 2px rgba(192, 10, 10, 0.3);
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary-red), #a00808);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #d00c0c, var(--secondary-red));
            box-shadow: 0 6px 12px rgba(192, 10, 10, 0.4);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
        }
        .site-footer {
            background-color: #111;
            padding: 60px 0 30px;
            border-top: 4px solid var(--secondary-red);
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
            padding-left: 0;
            border-left: none;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(192, 10, 10, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-gold);
            font-weight: bold;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                font-size: 2rem;
            }
            .main-nav {
                order: 2;
                flex-basis: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .main-nav a {
                display: block;
                padding: 12px;
                text-align: center;
            }
            .hero {
                padding: 60px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
                text-shadow: 2px 2px 0 var(--secondary-red), 4px 4px 0 rgba(0,0,0,0.8);
            }
            .hero p {
                font-size: 1.1rem;
            }
            .float-img {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
            .internal-links ul {
                columns: 1;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .feature-box {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 20px;
            }
            button, .btn {
                padding: 12px 20px;
                width: 100%;
            }
        }
