* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #faf6ed;
            color: #2d2d2d;
            line-height: 1.9;
            font-size: 16px;
            letter-spacing: 0.4px;
            padding-bottom: 100px;
            background-image: linear-gradient(135deg, #fdf2f8 0%, #faf6ed 100%);
        }
        .container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .header-nav {
            background-color: #1a365d;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            border-bottom: 4px solid #ff9f1c;
            box-shadow: 0 5px 15px rgba(255, 159, 28, 0.2);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #ff9f1c;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .logo span {
            color: #ffffff;
        }
        .logo em {
            font-style: normal;
            color: #2ec4b6;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ff9f1c;
            border-bottom: 3px solid #ff9f1c;
        }
        .daman-link {
            background-color: #ff9f1c;
            padding: 10px 25px;
            border-radius: 30px;
            color: #1a365d !important;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
        }
        .daman-link:hover {
            background-color: #e78f08;
            transform: translateY(-3px);
            box-shadow: 0 6px 14px rgba(255, 159, 28, 0.4);
        }
        .menu-toggle {
            display: none;
            font-size: 2.2rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .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;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 7px 18px rgba(0,0,0,0.18);
            text-align: center;
            margin: 20px 12px;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        .download-btn {
            background-color: #e74c3c;
            color: #fff;
            background-image: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        }
        .download-btn:hover {
            background-color: #c0392b;
            transform: translateY(-4px);
            box-shadow: 0 9px 22px rgba(231, 76, 60, 0.35);
        }
        .login-btn {
            background-color: #2ec4b6;
            color: #fff;
            background-image: linear-gradient(135deg, #2ec4b6 0%, #219e84 100%);
        }
        .login-btn:hover {
            background-color: #219e84;
            transform: translateY(-4px);
            box-shadow: 0 9px 22px rgba(46, 196, 182, 0.35);
        }
        h1 {
            font-size: 3.2rem;
            color: #1a365d;
            margin: 60px 0 40px;
            text-align: center;
            text-shadow: 0 3px 6px rgba(0,0,0,0.1);
            line-height: 1.6;
            font-weight: 900;
        }
        h1 span {
            color: #ff9f1c;
        }
        h2 {
            font-size: 2.4rem;
            color: #2ec4b6;
            margin: 80px 0 35px;
            padding-bottom: 15px;
            border-bottom: 4px solid #2ec4b6;
            display: inline-block;
            font-weight: 800;
        }
        h3 {
            font-size: 1.8rem;
            color: #e74c3c;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3:before {
            content: "🏆";
            font-size: 2.0rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #9b5de5;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4:before {
            content: "🔹";
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            color: #333333;
            line-height: 2.0;
            text-align: justify;
            padding: 0 2px;
        }
        .intro-card {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 50px;
            margin: 50px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-left: 6px solid #ff9f1c;
            background-image: linear-gradient(180deg, #ffffff 0%, #f9f5f0 100%);
        }
        .highlight {
            font-weight: 800;
            color: #ff9f1c;
            font-size: 1.2rem;
        }
        .key-point {
            font-weight: 700;
            color: #e74c3c;
            font-size: 1.18rem;
            display: block;
            margin: 10px 0;
        }
        .stats-badge {
            display: inline-block;
            background-color: #2ec4b6;
            color: #ffffff;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 700;
            margin: 0 10px 10px 0;
            font-size: 1.1rem;
            box-shadow: 0 3px 8px rgba(46, 196, 182, 0.2);
        }
        .image-container {
            text-align: center;
            margin: 60px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.18);
            transition: transform 0.5s ease;
            border: 5px solid #ffffff;
        }
        img:hover {
            transform: scale(1.04);
        }
        ul {
            margin: 35px 0 45px 60px;
        }
        li {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #333333;
            list-style-type: none;
            position: relative;
            padding-left: 30px;
            line-height: 1.9;
        }
        li:before {
            content: "✅";
            position: absolute;
            left: -40px;
            top: 3px;
            font-size: 1.3rem;
            color: #2ec4b6;
        }
        ol {
            margin: 35px 0 45px 60px;
        }
        ol li {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #333333;
            list-style-type: decimal;
            position: relative;
            padding-left: 20px;
        }
        ol li:before {
            display: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .stat-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 18px;
            text-align: center;
            border-top: 5px solid #ff9f1c;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background-image: linear-gradient(180deg, #ffffff 0%, #faf6f1 100%);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a365d;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #444444;
            font-weight: 600;
        }
        .review-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 18px;
            margin-bottom: 35px;
            border-right: 5px solid #9b5de5;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 12px;
            display: block;
            font-size: 1.3rem;
        }
        .review-location {
            color: #666666;
            font-size: 1.05rem;
            margin-bottom: 18px;
            display: block;
        }
        .review-rating {
            color: #ffd700;
            margin-bottom: 18px;
            font-size: 1.4rem;
        }
        .game-categories {
            margin: 80px 0 60px;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        .category-item {
            background-color: #f1f5f9;
            padding: 15px 28px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .category-item:hover {
            background-color: #ff9f1c;
            transform: translateY(-2px);
        }
        .category-item a {
            color: #1a365d;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .category-item:hover a {
            color: #ffffff;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 60px 0 80px;
        }
        .tag {
            background-color: #f8fafc;
            padding: 14px 26px;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .tag:hover {
            background-color: #2ec4b6;
            transform: translateY(-2px);
        }
        .tag a {
            color: #1a365d;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .tag:hover a {
            color: #ffffff;
        }
        .footer {
            background-color: #1a365d;
            color: #ecf0f1;
            padding: 70px 0 50px;
            margin-top: 120px;
            border-top: 5px solid #ff9f1c;
        }
        .footer-content {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .footer-promo {
            text-align: center;
            margin: 50px 0 60px;
            font-size: 1.2rem;
            line-height: 2.2;
            color: #bdc3c7;
        }
        .footer-promo strong {
            color: #ff9f1c;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid #2d527c;
            font-size: 1.05rem;
            color: #95a5a6;
            margin-top: 40px;
        }
        .faq-container {
            margin: 80px 0;
        }
        .faq-item {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 25px 30px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .faq-question {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-question:before {
            content: "❓";
            font-size: 1.3rem;
        }
        .faq-answer {
            font-size: 1.1rem;
            color: #444444;
            line-height: 1.9;
        }
        .strategy-card {
            background-color: #fef7fb;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
            border-left: 4px solid #9b5de5;
        }
        .strategy-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #9b5de5;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .strategy-title:before {
            content: "🎯";
            font-size: 1.4rem;
        }
        .event-card {
            background-color: #f0f8fb;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
            border-top: 4px solid #2ec4b6;
        }
        .event-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-title:before {
            content: "🎉";
            font-size: 1.4rem;
        }
        .event-details {
            font-size: 1.1rem;
            color: #444444;
            line-height: 1.9;
        }
        .event-prize {
            font-weight: 700;
            color: #e74c3c;
            margin-top: 15px;
            display: block;
        }
        @media (max-width: 1200px) {
            .logo {
                font-size: 2.4rem;
            }
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .stat-number {
                font-size: 3.2rem;
            }
            .intro-card {
                padding: 45px;
            }
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 2.2rem;
            }
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.0rem;
            }
            .btn {
                padding: 16px 32px;
                font-size: 1.15rem;
            }
            .stats-grid {
                gap: 30px;
            }
            .intro-card {
                padding: 40px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 40px;
                gap: 30px;
                box-shadow: 0 20px 30px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .intro-card {
                padding: 35px 25px;
            }
            .stats-grid {
                gap: 25px;
            }
            .stat-card {
                padding: 30px;
            }
            .stat-number {
                font-size: 2.8rem;
            }
            ul, ol {
                margin-left: 45px;
            }
            .btn {
                width: 100%;
                justify-content: center;
                margin: 15px 0;
            }
            p {
                text-align: left;
                font-size: 1.1rem;
            }
            .image-container {
                margin: 45px 0;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.0rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .footer {
                padding: 60px 0 40px;
            }
            .tag-container, .category-list {
                gap: 15px;
            }
            .tag, .category-item {
                padding: 12px 20px;
                font-size: 1.0rem;
            }
            .review-card {
                padding: 30px 20px;
            }
            .intro-card {
                padding: 30px 20px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .faq-question {
                font-size: 1.1rem;
            }
            .faq-answer {
                font-size: 1.05rem;
            }
        }
