* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #eaeaea;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #16213e;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 0 0 5px rgba(255,215,0,0.7);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #eaeaea;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .daman-link {
            color: #4CAF50 !important;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #eaeaea;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            font-size: 2.5rem;
            color: #ffd700;
            margin: 30px 0;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #ffd700;
        }
        h2 {
            font-size: 2rem;
            color: #00f0ff;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #00f0ff;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff6b6b;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #ffd700;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 15px 10px;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            text-align: center;
        }
        .btn-download {
            background-color: #2196F3;
        }
        .btn-login {
            background-color: #ff9800;
        }
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .game-stats {
            background-color: #16213e;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #1a1a2e;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
        }
        .tips-list {
            margin: 20px 0;
            padding-left: 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .event-card {
            background-color: #16213e;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid #ff6b6b;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #252a41;
            color: #eaeaea;
            text-decoration: none;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #ffd700;
            color: #1a1a2e;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type-link {
            color: #00f0ff;
            text-decoration: none;
            margin-right: 15px;
            font-size: 1.1rem;
        }
        .game-type-link:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #16213e;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #252a41;
            color: #888;
        }
        .recommendation {
            text-align: center;
            margin: 20px 0;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #16213e;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
