        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }
        button {
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        header {
            background-color: #ff7a00;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            color: white;
            font-size: 24px;
            padding: 5px 10px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links li a:hover, .nav-links li a.active {
            background-color: rgba(255,255,255,0.2);
        }
        .nav-links li a.daman-link {
            background-color: #0066cc;
        }
        .nav-links li a.daman-link:hover {
            background-color: #0052a3;
        }
        .hero {
            padding: 50px 0;
            text-align: center;
            background: linear-gradient(135deg, #fff8f0 0%, #fff0e0 100%);
            margin-bottom: 40px;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .hero h1 {
            font-size: 38px;
            color: #ff7a00;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .hero p {
            font-size: 18px;
            color: #555;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            font-size: 17px;
            font-weight: 700;
            border-radius: 8px;
            display: inline-block;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #ff7a00;
            color: white;
        }
        .btn-download:hover {
            background-color: #e66a00;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #0066cc;
            color: white;
        }
        .btn-login:hover {
            background-color: #0052a3;
            transform: translateY(-2px);
        }
        section {
            margin-bottom: 60px;
        }
        h2 {
            font-size: 32px;
            color: #ff7a00;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc99;
            display: inline-block;
        }
        h3 {
            font-size: 24px;
            color: #cc5500;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #ff7a00;
        }
        .image-box {
            margin: 35px 0;
            text-align: center;
        }
        .image-box img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: white;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .stat-number {
            font-size: 42px;
            font-weight: 900;
            color: #ff7a00;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 16px;
            color: #555;
            font-weight: 600;
        }
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-weight: 700;
            color: #333;
            font-size: 17px;
        }
        .review-location {
            color: #777;
            font-size: 14px;
            margin-left: 10px;
        }
        .review-rating {
            color: #ffdd00;
            font-size: 18px;
        }
        .review-text {
            color: #555;
            line-height: 1.7;
        }
        .localization-list {
            margin: 20px 0 30px 20px;
        }
        .localization-list li {
            margin-bottom: 15px;
            font-size: 16px;
            color: #444;
        }
        .localization-list li:before {
            content: "✅";
            margin-right: 10px;
            color: #ff7a00;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border-left: 5px solid #ff7a00;
        }
        .tip-title {
            font-weight: 700;
            color: #ff7a00;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .tip-text {
            color: #555;
        }
        .community-events {
            background-color: #fff8f0;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .event-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ffcc99;
        }
        .event-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .event-name {
            font-weight: 700;
            color: #cc5500;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .event-details {
            color: #555;
        }
        footer {
            background-color: #2d3748;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            font-size: 19px;
            margin-bottom: 20px;
            color: #ffdd00;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h4:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #ff7a00;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links li a {
            color: #e2e8f0;
            font-size: 15px;
        }
        .footer-links li a:hover {
            color: #ff7a00;
            padding-left: 5px;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        .game-type-link {
            color: #e2e8f0;
            background-color: rgba(255,255,255,0.1);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
        }
        .game-type-link:hover {
            background-color: #ff7a00;
            color: white;
        }
        .tags-container {
            margin-top: 15px;
        }
        .tag-link {
            display: inline-block;
            color: #e2e8f0;
            background-color: rgba(255,255,255,0.1);
            padding: 5px 12px;
            border-radius: 18px;
            font-size: 14px;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .tag-link:hover {
            background-color: #0066cc;
            color: white;
        }
        .recommendation {
            text-align: center;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
            margin-bottom: 30px;
            font-size: 16px;
        }
        .recommendation strong {
            color: #ffdd00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff7a00;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 8px rgba(0,0,0,0.1);
            }
            .nav-links.show {
                display: flex;
            }
            .hero h1 {
                font-size: 30px;
            }
            .hero p {
                font-size: 16px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
                width: 100%;
                max-width: 300px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-number {
                font-size: 36px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .reviews-container {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 30px 0;
            }
        }
