/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5b6abf;
    --primary-dark: #3f4d9c;
    --primary-light: #8b97d4;
    --secondary: #f093fb;
    --accent: #fa709a;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --border: #e9ecef;
    --success: #43e97b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang TC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-40 { margin-top: 40px; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91, 106, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 106, 191, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-en {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-cn {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(91, 106, 191, 0.08);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== Page Banner ===== */
.page-banner {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    text-align: center;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.banner-desc {
    font-size: 18px;
    color: var(--gray);
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title-en {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title-cn {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 40px;
    right: 80px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: 60px;
    right: 160px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 180px;
    right: 20px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== Stats ===== */
.stats {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
}

/* ===== Features ===== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    border-radius: 12px;
    background: var(--light-gray);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Featured Games ===== */
.featured-games {
    padding: 80px 0;
    background: var(--light-gray);
}

.games-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.game-cover {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.game-info {
    padding: 20px;
}

.game-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.game-genre {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.game-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cta-inner {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--light-gray);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 20px;
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-en {
    color: var(--white);
    font-size: 22px;
}

.footer-logo .logo-cn {
    color: rgba(255,255,255,0.5);
}

.footer-desc {
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.8;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ===== About Page ===== */
.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-para {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-item {
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7ff, #e8ecff);
    text-align: center;
}

.about-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.about-stat-label {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== Timeline ===== */
.timeline-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Values ===== */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px 24px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 106, 191, 0.1);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--gray);
}

/* ===== Team ===== */
.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.team-bio {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    padding: 0 10px;
}

/* ===== Categories Tabs ===== */
.categories-section {
    padding: 40px 0;
    background: var(--light-gray);
}

.categories-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-tab {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== Games Full ===== */
.games-full {
    padding: 60px 0;
}

.games-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.game-card-full {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.game-card-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.game-cover-full {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-badge-full {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.game-info-full {
    padding: 24px;
}

.game-info-full h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.game-genre {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.game-desc-full {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.game-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray);
    flex-wrap: wrap;
}

/* ===== Coming Soon ===== */
.coming-soon {
    padding: 80px 0;
    background: var(--light-gray);
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.coming-card {
    padding: 32px 24px;
    border-radius: 12px;
    background: var(--white);
    text-align: center;
    border: 2px dashed var(--border);
    transition: all 0.3s;
}

.coming-card:hover {
    border-color: var(--primary);
}

.coming-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.coming-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.coming-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.coming-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(91, 106, 191, 0.1);
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* ===== Services ===== */
.services-full {
    padding: 60px 0 80px;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-block {
    padding: 36px 28px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-block:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(91, 106, 191, 0.08);
}

.service-icon-large {
    font-size: 44px;
    margin-bottom: 16px;
}

.service-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-intro {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.service-list {
    margin-bottom: 16px;
}

.service-list li {
    font-size: 14px;
    color: #555;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-detail h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.service-detail p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Process ===== */
.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.process-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== Benefits ===== */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px 24px;
    border-radius: 12px;
    background: var(--light-gray);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Jobs ===== */
.jobs-section {
    padding: 60px 0 80px;
}

.job-category {
    margin-bottom: 36px;
}

.job-cat-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.job-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(91, 106, 191, 0.08);
}

.job-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    background: rgba(91, 106, 191, 0.08);
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== Apply Process ===== */
.apply-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.apply-step {
    text-align: center;
    padding: 24px 12px;
    background: var(--white);
    border-radius: 12px;
}

.apply-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.apply-step h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.apply-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

.apply-note {
    text-align: center;
    padding: 16px;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    color: #555;
}

/* ===== Contact ===== */
.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== Form ===== */
.contact-form-wrapper {
    padding: 32px;
    border-radius: 12px;
    background: var(--light-gray);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 106, 191, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    font-size: 13px;
    color: #555;
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(91, 106, 191, 0.03);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 22px;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: 60px 0 80px;
}

.legal-meta {
    padding: 20px 24px;
    border-radius: 10px;
    background: var(--light-gray);
    margin-bottom: 40px;
}

.legal-meta p {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.legal-section h3 {
    font-size: 17px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
    margin-top: 16px;
}

.legal-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 0;
    list-style: none;
}

.legal-section ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.legal-section a {
    color: var(--primary);
    font-weight: 600;
}

.contact-details {
    padding: 20px;
    border-radius: 10px;
    background: var(--light-gray);
    margin: 16px 0;
}

.contact-details p {
    margin-bottom: 6px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}

.cookie-table th,
.cookie-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--light-gray);
    font-weight: 700;
    color: var(--dark);
}

.cookie-table td {
    color: #555;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid,
    .values-grid,
    .team-grid,
    .games-grid-full,
    .services-grid-full,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps,
    .apply-steps {
        grid-template-columns: repeat(5, 1fr);
        overflow-x: auto;
    }

    .coming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title-cn {
        font-size: 36px;
    }

    .hero-visual {
        display: none;
    }

    .features-grid,
    .values-grid,
    .team-grid,
    .games-grid-full,
    .services-grid-full,
    .benefits-grid,
    .games-preview,
    .coming-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .process-steps,
    .apply-steps {
        grid-template-columns: 1fr 1fr;
    }

    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .banner-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-steps,
    .apply-steps {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }
}
