* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #faf6f0;
            color: #2d3436;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header {
            background-color: #0a3d62;
            color: white;
            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: 1250px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #feca57;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: white;
            font-weight: 600;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #feca57;
            border-bottom: 2px solid #feca57;
        }
        .daman-link {
            background-color: #feca57;
            color: #0a3d62 !important;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #ff9f43;
            color: #0a3d62 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(254, 202, 87, 0.3);
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0a3d62;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 1.6rem;
            }
        }
        .container {
            max-width: 1150px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            color: #0a3d62;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #feca57;
            font-weight: 800;
        }
        h2 {
            font-size: 2.1rem;
            color: #0a3d62;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 5px solid #feca57;
            font-weight: 700;
        }
        h3 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin: 40px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🔹";
            color: #feca57;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.08rem;
            text-align: justify;
            line-height: 1.9;
        }
        .keyword {
            font-weight: 700;
            color: #e74c3c;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
        }
        .login-btn {
            background-color: #e74c3c;
            color: white;
        }
        .login-btn:hover {
            background-color: #c0392b;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 50px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        .stats-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8f5f0;
            border-radius: 10px;
            border: 1px solid #f0ebe4;
        }
        .stat-value {
            font-size: 2.4rem;
            font-weight: 800;
            color: #e74c3c;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #34495e;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .review-card {
            border-bottom: 1px solid #f0ebe4;
            padding: 25px 0;
        }
        .review-card:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: 600;
            color: #0a3d62;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        .reviewer-location {
            color: #7f8c8d;
            font-weight: 400;
            font-size: 1rem;
        }
        .review-rating {
            color: #feca57;
            font-size: 1.4rem;
            margin-left: auto;
        }
        .review-text {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .strategy-list {
            list-style-type: none;
            margin: 40px 0;
        }
        .strategy-item {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            gap: 20px;
            border-left: 5px solid #3498db;
        }
        .strategy-icon {
            font-size: 1.8rem;
            color: #3498db;
            margin-top: 5px;
        }
        .strategy-content h4 {
            font-size: 1.3rem;
            color: #0a3d62;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .strategy-content p {
            margin-bottom: 0;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 40px 0;
        }
        .event-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s ease;
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        .event-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-content {
            padding: 25px;
        }
        .event-title {
            font-size: 1.4rem;
            color: #0a3d62;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .event-date {
            color: #7f8c8d;
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .event-date::before {
            content: "📅";
        }
        .event-prize {
            color: #e74c3c;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .event-prize::before {
            content: "🏆";
        }
        .event-desc {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .platform-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #3498db;
        }
        .platform-name {
            font-size: 1.3rem;
            color: #0a3d62;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .platform-members {
            color: #7f8c8d;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .platform-link {
            display: inline-block;
            color: white;
            background-color: #3498db;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .platform-link:hover {
            background-color: #2980b9;
        }
        .faq-container {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #f0ebe4;
            padding-bottom: 25px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-size: 1.2rem;
            color: #0a3d62;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-question::before {
            content: "❓";
        }
        .faq-answer {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .bottom-nav {
            background-color: #0a3d62;
            color: white;
            padding: 60px 20px;
            margin-top: 80px;
        }
        .bottom-container {
            max-width: 1150px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h3 {
            color: #feca57;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-left: none;
            padding-left: 0;
        }
        .game-types h3::before {
            display: none;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .type-links a {
            color: white;
            text-decoration: none;
            background-color: #1e3799;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .type-links a:hover {
            background-color: #feca57;
            color: #0a3d62;
            transform: translateY(-2px);
        }
        .tags {
            margin-bottom: 40px;
        }
        .tags h3 {
            color: #feca57;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-left: none;
            padding-left: 0;
        }
        .tags h3::before {
            display: none;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            color: #bdc3c7;
            text-decoration: none;
            background-color: #1e3799;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #feca57;
            color: #0a3d62;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #1e3799;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 40px;
            text-align: center;
        }
        .recommendation p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0;
            line-height: 1.8;
        }
        .recommendation span {
            color: #feca57;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            color: #bdc3c7;
            font-size: 1rem;
            padding-top: 30px;
            border-top: 1px solid #1e3799;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.1rem;
                margin-bottom: 40px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 20px;
            }
            p {
                font-size: 1.02rem;
                margin-bottom: 22px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .events-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .community-platforms {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .stats-card, .review-container, .faq-container {
                padding: 30px 20px;
            }
            .event-img {
                height: 180px;
            }
            .bottom-nav {
                padding: 40px 20px;
            }
            .type-links, .tag-links {
                gap: 12px;
            }
            .type-links a {
                padding: 8px 15px;
                font-size: 1rem;
            }
            .tag-links a {
                padding: 6px 15px;
                font-size: 0.95rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1ede6;
        }
        ::-webkit-scrollbar-thumb {
            background: #0a3d62;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #feca57;
        }
