* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a1a1a;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            color: #ffcc00;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .daman-link {
            color: #4CAF50 !important;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/id/1060/1200/400');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff3300;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 0 10px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #cc2900;
        }
        .btn-login {
            background-color: #4CAF50;
        }
        .btn-login:hover {
            background-color: #3d8b40;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .section-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
            display: inline-block;
        }
        .content-box {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        .stats-box {
            background-color: #f0f8ff;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .stats-box h3 {
            color: #3498db;
            margin-bottom: 15px;
        }
        .review {
            background-color: #fff8e1;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 1px solid #ffe082;
        }
        .reviewer {
            font-style: italic;
            color: #795548;
            margin-top: 10px;
        }
        .tips-list {
            margin-left: 30px;
            margin-top: 15px;
        }
        .tips-list li {
            margin-bottom: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
        }
        .tag a {
            color: #333;
            text-decoration: none;
        }
        .tag a:hover {
            color: #ff3300;
        }
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .game-types {
            list-style: none;
        }
        .game-types li {
            margin-bottom: 10px;
        }
        .game-types a {
            color: #ddd;
            text-decoration: none;
        }
        .game-types a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        .daman-recommendation {
            background-color: #f0f9e6;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid #c8e6c9;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a1a1a;
                padding: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
