        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #8B0000 0%, #CD5C5C 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .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;
            text-decoration: none;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }
        #mobileNavBtn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        nav ul li a.daman-link {
            color: #FFD700;
            font-weight: bold;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8B0000;
            font-size: 2.6rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #CD5C5C;
        }
        h2 {
            color: #8B0000;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #CD5C5C;
        }
        h3 {
            color: #CD5C5C;
            font-size: 1.6rem;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
        }
        strong {
            color: #8B0000;
            font-weight: bold;
        }
        .btn-group {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        .btn {
            padding: 16px 35px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .download-btn {
            background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
            color: white;
        }
        .login-btn {
            background: linear-gradient(135deg, #1E90FF 0%, #87CEFA 100%);
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .game-img {
            max-width: 100%;
            height: auto;
        }
        .img-caption {
            background-color: #f0f0f0;
            padding: 12px;
            font-size: 1rem;
            color: #555;
            font-style: italic;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 50px 0;
            gap: 30px;
        }
        .stat-card {
            background-color: white;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            flex: 1;
            min-width: 220px;
            border-top: 5px solid #CD5C5C;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #8B0000;
            margin-bottom: 15px;
        }
        .stat-label {
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 30px 0;
            border-left: 5px solid #228B22;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .reviewer {
            font-weight: bold;
            color: #333;
            font-size: 1.1rem;
        }
        .review-location {
            font-size: 0.9rem;
            color: #666;
            margin-left: 10px;
        }
        .review-rating {
            color: #FFA500;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .toc {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 40px 0;
        }
        .toc h3 {
            margin-top: 0;
            margin-bottom: 20px;
        }
        .toc ul {
            list-style: none;
            padding-left: 20px;
        }
        .toc li {
            margin-bottom: 12px;
        }
        .toc a {
            color: #CD5C5C;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .toc a:hover {
            color: #8B0000;
            padding-left: 5px;
        }
        .tags-container {
            margin: 50px 0;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tags-container h3 {
            margin-top: 0;
            margin-bottom: 20px;
        }
        .tag {
            display: inline-block;
            background-color: #CD5C5C;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #8B0000;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 40px 0;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 20px;
        }
        .type-link {
            color: #CD5C5C;
            text-decoration: none;
            margin-right: 25px;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .type-link:hover {
            color: #8B0000;
        }
        .tips-box {
            background-color: #FFF8E1;
            border-left: 5px solid #FFC107;
            padding: 25px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .tips-box h3 {
            color: #FF8F00;
            margin-top: 0;
        }
        .event-card {
            background-color: #E8F5E9;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-top: 5px solid #4CAF50;
        }
        .event-title {
            color: #2E7D32;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        .event-date {
            color: #2E7D32;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-block;
            background-color: rgba(76, 175, 80, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #FFD700;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #FFD700;
        }
        .daman-promo {
            background-color: rgba(255,255,255,0.08);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .daman-promo a {
            color: #FFD700;
            font-weight: bold;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            color: #ccc;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            #mobileNavBtn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #8B0000;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.3);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
                padding-bottom: 10px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
