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