* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f5f2eb;
            color: #2c3e50;
            font-size: 16px;
            padding-bottom: 80px;
        }
        .header {
            background-color: #1a237e;
            color: white;
            padding: 20px 15px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd600;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffffff;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd600;
            border-bottom: 3px solid #ffd600;
        }
        .daman-link {
            background-color: #ffd600;
            color: #1a237e !important;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 800;
            border-bottom: none !important;
            box-shadow: 0 4px 8px rgba(255, 214, 0, 0.3);
        }
        .daman-link:hover {
            background-color: #ffc107;
            color: #1a237e !important;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 214, 0, 0.4);
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #ffd600;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.3rem;
            color: #1a237e;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 6px solid #ffd600;
            font-weight: 800;
        }
        h3 {
            font-size: 1.7rem;
            color: #2c3e50;
            margin: 50px 0 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🌟";
            color: #ffd600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 2px;
        }
        .keyword {
            font-weight: 800;
            color: #d32f2f;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 18px rgba(0,0,0,0.15);
            min-width: 220px;
        }
        .download-btn {
            background-color: #388e3c;
            color: white;
        }
        .download-btn:hover {
            background-color: #2e7d32;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(56, 142, 60, 0.4);
        }
        .login-btn {
            background-color: #d32f2f;
            color: white;
        }
        .login-btn:hover {
            background-color: #c62828;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 60px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 4px solid white;
        }
        .stats-card {
            background-color: white;
            border-radius: 20px;
            padding: 45px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 35px;
            margin-top: 35px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #faf6ed;
            border-radius: 12px;
            border: 2px solid #f0e6d2;
        }
        .stat-value {
            font-size: 2.7rem;
            font-weight: 900;
            color: #d32f2f;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 600;
        }
        .review-container {
            background-color: white;
            border-radius: 20px;
            padding: 45px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .review-card {
            border-bottom: 2px solid #f0e6d2;
            padding: 30px 0;
        }
        .review-card:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 1.2rem;
        }
        .reviewer-location {
            color: #718096;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .review-rating {
            color: #ffd600;
            font-size: 1.6rem;
            margin-left: auto;
        }
        .review-text {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .strategy-list {
            list-style-type: none;
            margin: 50px 0;
        }
        .strategy-item {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            display: flex;
            gap: 25px;
            border-left: 6px solid #2196f3;
        }
        .strategy-icon {
            font-size: 2rem;
            color: #2196f3;
            margin-top: 8px;
        }
        .strategy-content h4 {
            font-size: 1.4rem;
            color: #1a237e;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .strategy-content p {
            margin-bottom: 0;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }
        .event-card {
            background-color: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: transform 0.4s ease;
        }
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .event-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .event-content {
            padding: 30px;
        }
        .event-title {
            font-size: 1.5rem;
            color: #1a237e;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .event-date {
            color: #718096;
            font-size: 1.1rem;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-date::before {
            content: "📅";
        }
        .event-prize {
            color: #d32f2f;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-prize::before {
            content: "🏆";
        }
        .event-desc {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .platform-card {
            background-color: white;
            padding: 35px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .platform-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }
        .platform-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: #2196f3;
        }
        .platform-name {
            font-size: 1.4rem;
            color: #1a237e;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .platform-members {
            color: #718096;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        .platform-link {
            display: inline-block;
            color: white;
            background-color: #2196f3;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .platform-link:hover {
            background-color: #1976d2;
        }
        .faq-container {
            background-color: white;
            border-radius: 20px;
            padding: 45px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 2px solid #f0e6d2;
            padding-bottom: 30px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-size: 1.3rem;
            color: #1a237e;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .faq-question::before {
            content: "❓";
        }
        .faq-answer {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .bottom-nav {
            background-color: #1a237e;
            color: white;
            padding: 70px 20px;
            margin-top: 100px;
        }
        .bottom-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 50px;
        }
        .game-types h3 {
            color: #ffd600;
            margin-bottom: 30px;
            font-size: 1.5rem;
            border-left: none;
            padding-left: 0;
        }
        .game-types h3::before {
            display: none;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .type-links a {
            color: white;
            text-decoration: none;
            background-color: #303f9f;
            padding: 12px 25px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .type-links a:hover {
            background-color: #ffd600;
            color: #1a237e;
            transform: translateY(-3px);
        }
        .tags {
            margin-bottom: 50px;
        }
        .tags h3 {
            color: #ffd600;
            margin-bottom: 30px;
            font-size: 1.5rem;
            border-left: none;
            padding-left: 0;
        }
        .tags h3::before {
            display: none;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .tag-links a {
            color: #e0e0e0;
            text-decoration: none;
            background-color: #303f9f;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #ffd600;
            color: #1a237e;
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: #303f9f;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 50px;
            text-align: center;
        }
        .recommendation p {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0;
            line-height: 1.9;
            font-weight: 500;
        }
        .recommendation span {
            color: #ffd600;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            color: #b3b3b3;
            font-size: 1.05rem;
            padding-top: 40px;
            border-top: 2px solid #303f9f;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
                margin-bottom: 50px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2rem;
                margin: 60px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 40px 0 25px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.2rem;
                width: 100%;
                min-width: auto;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .events-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .community-platforms {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .stats-card, .review-container, .faq-container {
                padding: 35px 25px;
            }
            .event-img {
                height: 200px;
            }
            .bottom-nav {
                padding: 50px 20px;
            }
            .type-links, .tag-links {
                gap: 15px;
            }
            .type-links a {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .tag-links a {
                padding: 8px 18px;
                font-size: 1rem;
            }
            .strategy-item {
                flex-direction: column;
                gap: 15px;
                padding: 25px;
            }
            .strategy-icon {
                margin-top: 0;
                align-self: center;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f0e6d2;
        }
        ::-webkit-scrollbar-thumb {
            background: #1a237e;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd600;
        }
        section {
            margin-bottom: 80px;
        }
        .sub-section {
            margin-bottom: 40px;
        }
        [itemprop="articleBody"] {
            display: block;
        }
        .internal-link {
            color: #2196f3;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.3s ease;
        }
        .internal-link:hover {
            color: #1a237e;
        }
