* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e293b;
            padding: 18px 20px;
            border-bottom: 3px solid #fbbf24;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #fbbf24;
            text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.15rem;
            transition: 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: #fbbf24;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #fbbf24;
            transition: 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 100;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #fbbf24;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.8rem;
            padding-bottom: 15px;
            border-bottom: 4px solid #334155;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            color: #fcd34d;
            margin: 50px 0 25px;
            font-size: 2.2rem;
            border-left: 5px solid #fbbf24;
            padding-left: 18px;
            letter-spacing: 0.3px;
        }
        h3 {
            color: #eab308;
            margin: 35px 0 18px;
            font-size: 1.7rem;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: '•';
            color: #fbbf24;
            position: absolute;
            left: -10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #e2e8f0;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #fbbf24;
            text-shadow: 0 0 2px rgba(251, 191, 36, 0.3);
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 18px 35px;
            background-color: #10b981;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.3rem;
            transition: 0.4s;
            text-align: center;
            min-width: 220px;
            border: 2px solid transparent;
        }
        .btn-login {
            background-color: #3b82f6;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            border-color: #fbbf24;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            border: 2px solid #334155;
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 1px solid #334155;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #0f172a;
            border-radius: 10px;
            border: 1px solid #334155;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #94a3b8;
            font-size: 1.05rem;
        }
        .review-container {
            margin: 40px 0;
        }
        .review-card {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-left: 4px solid #fbbf24;
        }
        .reviewer {
            font-weight: bold;
            color: #fcd34d;
            font-size: 1.2rem;
        }
        .rating {
            color: #fbbf24;
            margin: 8px 0;
            font-size: 1.3rem;
        }
        .guide-section {
            background-color: #1e293b;
            padding: 35px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #334155;
        }
        .guide-step {
            margin-bottom: 30px;
        }
        .guide-step-number {
            font-size: 1.6rem;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 12px;
            display: inline-block;
            background-color: #0f172a;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
        }
        .events-list {
            list-style-type: none;
        }
        .event-item {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-top: 4px solid #fbbf24;
        }
        .event-title {
            font-weight: bold;
            color: #fcd34d;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
        }
        .community-link {
            padding: 12px 25px;
            background-color: #0f172a;
            border-radius: 8px;
            text-decoration: none;
            color: #fbbf24;
            font-weight: bold;
            border: 1px solid #334155;
            transition: 0.3s;
        }
        .community-link:hover {
            background-color: #1e293b;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 50px 20px;
            margin-top: 60px;
            border-top: 3px solid #fbbf24;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #fbbf24;
            border-bottom: 2px solid #334155;
            padding-bottom: 10px;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a, .tag-links a {
            color: #e2e8f0;
            text-decoration: none;
            background-color: #0f172a;
            padding: 10px 20px;
            border-radius: 8px;
            transition: 0.3s;
            border: 1px solid #334155;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #fbbf24;
            color: #0f172a;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 40px 0;
            font-size: 1.2rem;
            line-height: 2;
            background-color: #0f172a;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #fbbf24;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 30px 20px;
                gap: 20px;
                z-index: 99;
                border-bottom: 3px solid #fbbf24;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .guide-section, .stat-item, .review-card, .event-item {
                padding: 20px;
            }
        }
