* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d62828;
            margin-bottom: 25px;
            font-size: 2.6rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #d62828;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-bottom: 3px solid #f1faee;
            padding-bottom: 10px;
            position: relative;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #d62828;
        }
        h3 {
            color: #1d3557;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 4px solid #d62828;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 12px 15px;
            background-color: #d62828;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #1d3557;
        }
        .btn-download:hover {
            background-color: #132640;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .image-caption {
            font-size: 0.95rem;
            margin-top: 12px;
            color: #555;
            font-style: italic;
        }
        .highlight {
            font-weight: bold;
            color: #d62828;
            text-decoration: none;
        }
        .section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 35px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .section:hover {
            transform: translateY(-5px);
        }
        .review-card {
            background-color: #f1faee;
            border-left: 5px solid #457b9d;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .review-author {
            text-align: right;
            font-weight: bold;
            margin-top: 10px;
            color: #1d3557;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e6394620;
            color: #d62828;
            padding: 8px 16px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #e6394630;
        }
        .tag:hover {
            background-color: #e6394630;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 25px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #1d3557;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #d62828;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f1faee;
            border-left-color: #f1faee;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 0.95rem;
            color: #f1faee80;
        }
        .daman-games-promo {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .stats-table th {
            background-color: #f1faee;
            color: #1d3557;
            font-weight: bold;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
        }
        .feature-list {
            margin: 25px 0;
            padding-left: 20px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .feature-list li:before {
            content: '•';
            color: #d62828;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0 0 0;
            }
            nav ul li a {
                display: block;
                padding: 8px 0;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .section {
                padding: 20px;
            }
            .stats-table th, .stats-table td {
                padding: 10px 8px;
                font-size: 0.95rem;
            }
        }
