* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header {
            background: linear-gradient(135deg, #27ae60, #e67e22);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #ffeb3b;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu li a:hover {
            color: #ffeb3b;
            border-bottom: 2px solid #ffeb3b;
        }
        .daman-link {
            background-color: #ffeb3b;
            color: #2d3436 !important;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffffff;
            cursor: pointer;
            background: transparent;
            border: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #27ae60;
            margin: 40px 0 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-weight: 800;
        }
        h2 {
            font-size: 2.2rem;
            color: #e67e22;
            margin: 50px 0 20px;
            border-left: 5px solid #27ae60;
            padding-left: 18px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.7rem;
            color: #3498db;
            margin: 40px 0 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "✨";
            margin-right: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #9b59b6;
            margin: 30px 0 12px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #e67e22;
            font-size: 1.15rem;
        }
        .key-term {
            font-weight: 700;
            color: #27ae60;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .stat-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            background-color: #f5fafe;
        }
        .stat-item h4 {
            color: #3498db;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .stat-item p {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e67e22;
            margin: 0;
        }
        .img-wrapper {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            width: 100%;
            max-width: 1000px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            margin: 0 auto;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn {
            background-color: #e67e22;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .login-btn {
            background-color: #27ae60;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .guide-list, .event-list, .tag-list, .genre-list {
            list-style: none;
            margin: 30px 0;
        }
        .guide-list li, .event-list li {
            background-color: #ffffff;
            border-left: 5px solid #3498db;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            font-size: 1.05rem;
        }
        .guide-list li::before {
            content: "🎯";
            margin-right: 10px;
            color: #e67e22;
        }
        .event-list li::before {
            content: "🎉";
            margin-right: 10px;
            color: #9b59b6;
        }
        .section {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .tab-container {
            margin: 40px 0;
        }
        .tab-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .tab-btn {
            padding: 10px 20px;
            background-color: #f1f2f6;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tab-btn.active {
            background-color: #3498db;
            color: #ffffff;
        }
        .tab-content {
            padding: 25px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .community-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 30px 0;
        }
        .community-card {
            flex: 1;
            min-width: 250px;
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            text-align: center;
        }
        .community-card i {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 15px;
        }
        .community-card h4 {
            color: #2d3436;
            margin-bottom: 10px;
        }
        .community-card p {
            color: #636e72;
            margin-bottom: 20px;
        }
        .community-card a {
            color: #e67e22;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .community-card a:hover {
            color: #d35400;
            text-decoration: underline;
        }
        .footer {
            background-color: #2d3436;
            color: #ffffff;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            display: inline-block;
        }
        .genre-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genre-list li, .tag-list li {
            margin-bottom: 10px;
        }
        .genre-list a, .tag-list a {
            color: #ffffff;
            background-color: #34495e;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .genre-list a:hover, .tag-list a:hover {
            background-color: #3498db;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #34495e;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            text-align: center;
        }
        .recommendation p {
            font-size: 1.2rem;
            color: #ffffff;
            margin: 0;
            line-height: 1.8;
        }
        .recommendation span {
            color: #ffeb3b;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            color: #b2bec3;
            font-size: 0.95rem;
            padding-top: 30px;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #27ae60, #e67e22);
                padding: 30px 20px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.7;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 15px 20px;
                font-size: 1.1rem;
            }
            .stat-item {
                min-width: 100%;
            }
            .section {
                padding: 20px;
            }
            .footer {
                padding: 40px 20px 20px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn-container {
                gap: 15px;
            }
            .community-card {
                min-width: 100%;
            }
        }
