* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #8B0000;
            --secondary-color: #1a1a2e;
            --accent-color: #c41e3a;
            --light-color: #f5f5f5;
            --dark-color: #0d0d0d;
            --text-color: #333;
            --gray-color: #666;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        body {
            background-color: #0d0d0d;
            color: var(--light-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff4d6d;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
            border-bottom: 3px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--light-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }
        .logo-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: var(--light-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb span {
            color: var(--gray-color);
            margin: 0 8px;
        }
        main {
            background: linear-gradient(180deg, #0d0d0d 0%, #1a1a2e 100%);
            padding: 30px 0;
            min-height: 100vh;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 20px;
            border-bottom: 2px solid var(--primary-color);
        }
        h1 {
            font-size: 3rem;
            color: var(--light-color);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 26, 46, 0.8);
            padding: 35px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-color);
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--accent-color);
            font-size: 2.2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .article-content h3 {
            color: #f0f0f0;
            font-size: 1.6rem;
            margin: 25px 0 15px;
        }
        .article-content p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #e0e0e0;
            text-align: justify;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight-box {
            background: rgba(139, 0, 0, 0.15);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .game-card {
            background: rgba(40, 40, 60, 0.9);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
            border-color: var(--accent-color);
        }
        .game-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 20px;
        }
        .game-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .game-meta {
            color: #aaa;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        .rating {
            color: #ffd700;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: var(--border-radius);
            border-top: 3px solid var(--accent-color);
        }
        .widget h3 {
            color: var(--light-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 14px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ff4d6d;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--border-radius);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #ff4d6d;
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 8px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.7);
            padding: 15px;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--primary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(60, 60, 80, 0.9);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ddd;
            font-weight: 500;
            display: block;
        }
        footer {
            background: var(--secondary-color);
            padding: 50px 0 20px;
            border-top: 3px solid var(--primary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--light-color);
            margin-bottom: 15px;
            display: block;
        }
        .footer-links h4 {
            color: var(--light-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .article-content {
                padding: 20px;
            }
            .game-list {
                grid-template-columns: 1fr;
            }
            .content-grid {
                gap: 25px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .special-note {
            background: linear-gradient(90deg, rgba(196,30,58,0.2) 0%, rgba(139,0,0,0.1) 100%);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 4px solid var(--accent-color);
        }
        .quote {
            font-style: italic;
            color: #ccc;
            border-left: 3px solid var(--accent-color);
            padding-left: 20px;
            margin: 25px 0;
            font-size: 1.1rem;
        }
        .stat-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            text-align: center;
        }
        .stat {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: var(--border-radius);
            min-width: 150px;
            border-top: 3px solid var(--accent-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 8px;
        }
