* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #1a202c;
            line-height: 1.8;
        }
        header {
            background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 1px;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 1001;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            list-style: none;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .nav-links li a.daman-games {
            background-color: #ffeb3b;
            color: #c62828;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #c62828;
            text-align: center;
            margin: 20px 0 40px;
            font-size: 36px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffeb3b;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #c62828;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffeb3b;
            font-size: 28px;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "▶";
            position: absolute;
            left: -20px;
            color: #ffeb3b;
        }
        h3 {
            color: #b71c1c;
            margin: 35px 0 15px;
            font-size: 22px;
            display: flex;
            align-items: center;
        }
        h3::after {
            content: "";
            flex-grow: 1;
            height: 2px;
            background-color: #ffeb3b;
            margin-left: 15px;
            opacity: 0.7;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #b71c1c;
            text-shadow: 0 0 1px rgba(183,28,28,0.3);
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 20px;
            background-color: #388e3c;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: #f57c00;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .stat-card {
            background-color: white;
            padding: 35px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-top: 6px solid #ffeb3b;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #c62828;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .stat-label {
            color: #555;
            font-size: 18px;
            font-weight: 500;
        }
        .review {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-left: 5px solid #ffeb3b;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #c62828;
            font-size: 19px;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 8px;
        }
        .review-rating {
            color: #ffb300;
            font-size: 22px;
        }
        .tips-list {
            margin: 25px 0 25px 50px;
        }
        .tips-list li {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-left: 15px;
        }
        .tips-list li::before {
            content: "•";
            color: #c62828;
            font-size: 24px;
            position: absolute;
            left: -25px;
            top: -5px;
        }
        .tags-section {
            margin: 60px 0;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            background-color: #ffebee;
            padding: 12px 22px;
            border-radius: 30px;
            text-decoration: none;
            color: #c62828;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #c62828;
            color: white;
            transform: translateY(-3px);
        }
        .features-box {
            background-color: rgba(255,235,59,0.1);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #ffeb3b;
        }
        .feature-item {
            display: flex;
            margin-bottom: 25px;
        }
        .feature-icon {
            font-size: 24px;
            color: #c62828;
            margin-right: 15px;
            margin-top: 5px;
            min-width: 30px;
        }
        footer {
            background-color: #1a202c;
            color: white;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #ffeb3b;
            border-bottom: 2px solid #ffeb3b;
            padding-bottom: 12px;
            display: inline-block;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 20px;
        }
        .game-type-link {
            color: white;
            text-decoration: none;
            background-color: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .game-type-link:hover {
            background-color: rgba(255,235,59,0.3);
            color: #ffeb3b;
            transform: translateY(-3px);
        }
        .recommendation {
            font-size: 18px;
            line-height: 1.9;
            margin-top: 20px;
            color: #e2e8f0;
        }
        .recommendation a {
            color: #ffeb3b;
            font-weight: bold;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 16px;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 30px;
                gap: 18px;
                padding-bottom: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
                margin: 15px 0 30px;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 20px;
                padding-left: 0;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 20px;
                margin: 30px 0 15px;
            }
            p, .tips-list li, .review {
                font-size: 17px;
            }
            .btn {
                width: 90%;
                margin: 12px auto;
                display: block;
                padding: 14px 20px;
            }
            .stat-number {
                font-size: 38px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .review {
                padding: 20px;
            }
            .features-box {
                padding: 20px;
            }
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .comparison-table th, .comparison-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        .comparison-table th {
            background-color: #c62828;
            color: white;
            font-size: 18px;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table tr:hover {
            background-color: #f8f9fa;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #ffeb3b, transparent);
            margin: 60px 0;
            opacity: 0.7;
        }
