* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', 'Roboto', 'sans-serif';
            line-height: 1.8;
        }
        body {
            background-color: #f5f0e6;
            color: #2d2417;
            font-size: 16px;
            padding-bottom: 150px;
        }
        .header {
            background-color: #7d4d1d;
            color: #ffffff;
            padding: 22px 15px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 18px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #ffdd00;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
        }
        .logo span {
            color: #ffffff;
            font-weight: 600;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd00;
            border-bottom: 3px solid #ffdd00;
        }
        .daman-link {
            background-color: #ffdd00;
            color: #7d4d1d !important;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 700;
            border-bottom: none !important;
            box-shadow: 0 4px 12px rgba(255, 221, 0, 0.3);
        }
        .daman-link:hover {
            background-color: #ffcc00;
            color: #7d4d1d !important;
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(255, 221, 0, 0.5);
        }
        .menu-toggle {
            display: none;
            font-size: 2.3rem;
            cursor: pointer;
            color: #ffffff;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #7d4d1d;
                padding: 40px 20px;
                gap: 30px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 2rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 3rem;
            color: #7d4d1d;
            text-align: center;
            margin-bottom: 70px;
            padding-bottom: 30px;
            border-bottom: 6px solid #ffdd00;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 2.3rem;
            color: #7d4d1d;
            margin: 80px 0 40px;
            padding-left: 30px;
            border-left: 8px solid #ffdd00;
            font-weight: 800;
        }
        h3 {
            font-size: 1.8rem;
            color: #4a3b2a;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: "🎯";
            color: #ffdd00;
            font-size: 2rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            padding: 0 5px;
        }
        .keyword {
            font-weight: 800;
            color: #a82c2c;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .btn-container {
            display: flex;
            gap: 35px;
            justify-content: center;
            margin: 80px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 45px;
            font-size: 1.4rem;
            font-weight: 800;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            min-width: 250px;
        }
        .download-btn {
            background-color: #005a00;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #004400;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 90, 0, 0.5);
        }
        .login-btn {
            background-color: #a82c2c;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #851e1e;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(168, 44, 44, 0.5);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 70px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
            border: 5px solid #ffffff;
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        .stat-item {
            text-align: center;
            padding: 30px;
            background-color: #fff8e6;
            border-radius: 18px;
            border: 3px solid #ffe4b5;
        }
        .stat-value {
            font-size: 3.2rem;
            font-weight: 900;
            color: #a82c2c;
            margin-bottom: 15px;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #4a3b2a;
            font-weight: 600;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        .review-card {
            border-bottom: 3px solid #fff8e6;
            padding: 35px 0;
        }
        .review-card:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: 700;
            color: #7d4d1d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1.3rem;
        }
        .reviewer-location {
            color: #6b543a;
            font-weight: 500;
            font-size: 1.1rem;
        }
        .review-rating {
            color: #ffdd00;
            font-size: 1.8rem;
            margin-left: auto;
        }
        .review-text {
            color: #4a3b2a;
            font-size: 1.15rem;
            line-height: 2;
        }
        .strategy-list {
            list-style-type: none;
            margin: 60px 0;
        }
        .strategy-item {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            display: flex;
            gap: 30px;
            border-left: 8px solid #1e90ff;
        }
        .strategy-icon {
            font-size: 2.5rem;
            color: #1e90ff;
            margin-top: 10px;
        }
        .strategy-content h4 {
            font-size: 1.5rem;
            color: #7d4d1d;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .strategy-content p {
            margin-bottom: 0;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 45px;
            margin: 60px 0;
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
        }
        .event-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }
        .event-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }
        .event-content {
            padding: 35px;
        }
        .event-title {
            font-size: 1.6rem;
            color: #7d4d1d;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .event-date {
            color: #6b543a;
            font-size: 1.2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .event-date::before {
            content: "📅";
            font-size: 1.6rem;
        }
        .event-prize {
            color: #a82c2c;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.2rem;
        }
        .event-prize::before {
            content: "🏆";
            font-size: 1.6rem;
        }
        .event-desc {
            color: #4a3b2a;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .platform-card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.25);
        }
        .platform-icon {
            font-size: 4rem;
            margin-bottom: 30px;
            color: #1e90ff;
        }
        .platform-name {
            font-size: 1.5rem;
            color: #7d4d1d;
            margin-bottom: 25px;
            font-weight: 700;
        }
        .platform-members {
            color: #6b543a;
            margin-bottom: 30px;
            font-size: 1.2rem;
        }
        .platform-link {
            display: inline-block;
            color: #ffffff;
            background-color: #1e90ff;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: background-color 0.3s ease;
            font-size: 1.1rem;
        }
        .platform-link:hover {
            background-color: #007fff;
        }
        .faq-container {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        .faq-item {
            margin-bottom: 35px;
            border-bottom: 3px solid #fff8e6;
            padding-bottom: 35px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-size: 1.4rem;
            color: #7d4d1d;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .faq-question::before {
            content: "❓";
            font-size: 1.8rem;
        }
        .faq-answer {
            color: #4a3b2a;
            font-size: 1.15rem;
            line-height: 2;
        }
        .bottom-nav {
            background-color: #7d4d1d;
            color: #ffffff;
            padding: 80px 20px;
            margin-top: 120px;
        }
        .bottom-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 60px;
        }
        .game-types h3 {
            color: #ffdd00;
            margin-bottom: 35px;
            font-size: 1.7rem;
            border-left: none;
            padding-left: 0;
        }
        .game-types h3::before {
            display: none;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .type-links a {
            color: #ffffff;
            text-decoration: none;
            background-color: #6b4826;
            padding: 15px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .type-links a:hover {
            background-color: #ffdd00;
            color: #7d4d1d;
            transform: translateY(-5px);
        }
        .tags {
            margin-bottom: 60px;
        }
        .tags h3 {
            color: #ffdd00;
            margin-bottom: 35px;
            font-size: 1.7rem;
            border-left: none;
            padding-left: 0;
        }
        .tags h3::before {
            display: none;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .tag-links a {
            color: #f5e6d3;
            text-decoration: none;
            background-color: #6b4826;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #ffdd00;
            color: #7d4d1d;
            transform: translateY(-5px);
        }
        .recommendation {
            background-color: #6b4826;
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 60px;
            text-align: center;
        }
        .recommendation p {
            color: #ffffff;
            font-size: 1.4rem;
            margin-bottom: 0;
            line-height: 2.1;
            font-weight: 500;
        }
        .recommendation span {
            color: #ffdd00;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            color: #f5e6d3;
            font-size: 1.1rem;
            padding-top: 50px;
            border-top: 3px solid #6b4826;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                margin-bottom: 60px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2rem;
                margin: 70px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 50px 0 25px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 20px 40px;
                font-size: 1.3rem;
                width: 100%;
                min-width: auto;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .events-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .community-platforms {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .stats-card, .review-container, .faq-container {
                padding: 40px 25px;
            }
            .event-img {
                height: 230px;
            }
            .bottom-nav {
                padding: 60px 20px;
            }
            .type-links, .tag-links {
                gap: 20px;
            }
            .type-links a {
                padding: 12px 25px;
                font-size: 1.05rem;
            }
            .tag-links a {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .strategy-item {
                flex-direction: column;
                gap: 20px;
                padding: 30px;
            }
            .strategy-icon {
                margin-top: 0;
                align-self: center;
            }
        }
        ::-webkit-scrollbar {
            width: 15px;
        }
        ::-webkit-scrollbar-track {
            background: #fff8e6;
        }
        ::-webkit-scrollbar-thumb {
            background: #7d4d1d;
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffdd00;
        }
        section {
            margin-bottom: 90px;
        }
        .sub-section {
            margin-bottom: 50px;
        }
        [itemprop="articleBody"] {
            display: block;
        }
        .internal-link {
            color: #1e90ff;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: color 0.3s ease;
        }
        .internal-link:hover {
            color: #7d4d1d;
        }
