* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f5fafe;
            color: #2d3748;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: #1a202c;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #ed8936;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #f7fafc;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .nav-links a:hover {
            color: #ed8936;
            transform: translateY(-1px);
        }
        .daman-link {
            background-color: #ed8936;
            padding: 10px 20px;
            border-radius: 8px;
            color: #1a202c !important;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(237, 137, 54, 0.3);
        }
        .daman-link:hover {
            background-color: #dd6b20;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(237, 137, 54, 0.4);
        }
        .menu-toggle {
            display: none;
            font-size: 28px;
            color: #ffffff;
            cursor: pointer;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(135deg, #f5fafe 0%, #eaf6fa 100%);
            border-radius: 0 0 30px 30px;
            margin-bottom: 50px;
        }
        h1 {
            font-size: 42px;
            color: #1a202c;
            margin-bottom: 25px;
            font-weight: 800;
            line-height: 1.4;
        }
        h1 span {
            color: #ed8936;
        }
        .hero p {
            font-size: 19px;
            color: #4a5568;
            max-width: 900px;
            margin: 0 auto 30px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #38a169;
            color: white;
        }
        .download-btn:hover {
            background-color: #2f855a;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(56, 161, 105, 0.3);
        }
        .login-btn {
            background-color: #4299e1;
            color: white;
        }
        .login-btn:hover {
            background-color: #3182ce;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(66, 153, 225, 0.3);
        }
        section {
            margin: 70px 0;
        }
        h2 {
            font-size: 32px;
            color: #1a202c;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ed8936;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h2 emoji {
            font-size: 36px;
        }
        h3 {
            font-size: 24px;
            color: #2d3748;
            margin: 40px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3 emoji {
            font-size: 28px;
        }
        h4 {
            font-size: 20px;
            color: #4a5568;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 17px;
            color: #4a5568;
        }
        .highlight {
            font-weight: 700;
            color: #e53e3e;
        }
        .keyword {
            font-weight: 800;
            color: #1a202c;
            font-size: 18px;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 15px;
            color: #718096;
            margin-top: 15px;
            font-style: italic;
        }
        ul, ol {
            margin: 25px 0 30px 45px;
        }
        li {
            margin-bottom: 15px;
            font-size: 17px;
            color: #4a5568;
            position: relative;
        }
        ul li::before {
            content: "🐎";
            position: absolute;
            left: -30px;
            top: 2px;
        }
        ol li {
            counter-increment: item;
        }
        ol li::before {
            content: counter(item) ". ";
            font-weight: 700;
            color: #ed8936;
        }
        .localization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .localization-card {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 4px solid #4299e1;
        }
        .localization-card h4 {
            font-size: 20px;
            color: #1a202c;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-left: 5px solid #ed8936;
        }
        .event-card h4 {
            font-size: 22px;
            color: #1a202c;
            margin-bottom: 12px;
        }
        .event-date {
            color: #718096;
            font-style: italic;
            margin-bottom: 20px;
            display: block;
            font-size: 16px;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 18px;
            object-fit: cover;
            border: 3px solid #ed8936;
        }
        .reviewer-details {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 700;
            color: #1a202c;
            font-size: 18px;
        }
        .reviewer-location {
            color: #718096;
            font-size: 14px;
            margin-top: 3px;
        }
        .review-rating {
            color: #ed8936;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .guide-tip {
            background-color: #f0f8fb;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 5px solid #4299e1;
        }
        .guide-tip h4 {
            color: #2d3748;
            margin-bottom: 15px;
            font-size: 19px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer {
            background-color: #1a202c;
            color: white;
            padding: 60px 0 30px;
            margin-top: 100px;
            border-radius: 30px 30px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #ed8936;
            margin-bottom: 25px;
            font-size: 22px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .game-types a, .tags a {
            display: inline-block;
            color: #cbd5e0;
            text-decoration: none;
            margin-right: 18px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 16px;
            padding: 5px 10px;
            border-radius: 6px;
        }
        .game-types a:hover, .tags a:hover {
            color: #ed8936;
            background-color: rgba(255,255,255,0.1);
        }
        .recommendation {
            font-size: 17px;
            color: #cbd5e0;
            margin-top: 30px;
            line-height: 1.9;
        }
        .recommendation strong {
            color: #ed8936;
            font-size: 18px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a0aec0;
            font-size: 15px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1a202c;
                padding: 30px;
                gap: 20px;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 16px;
                width: 100%;
                justify-content: center;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            ul, ol {
                margin-left: 30px;
            }
            .hero {
                padding: 40px 0 30px;
            }
            section {
                margin: 50px 0;
            }
        }
