/* OK9BET - 统一样式表 */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-dark: #0a1628;
    --primary-blue: #1a237e;
    --accent-gold: #ffd700;
    --accent-orange: #ff6b35;
    --text-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-gray: #888;
    --bg-light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1a237e 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
}
body { font-family: 'Open Sans', Arial, sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }

/* Header */
.header { background: var(--gradient-primary); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header-main { padding: 15px 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--text-white); }
.logo-icon { width: 50px; height: 50px; background: var(--gradient-gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: var(--primary-dark); }
.logo-img { height: 45px; width: auto; display: block; }
.logo-text { font-size: 24px; font-weight: 900; color: var(--accent-gold); }
.nav-desktop { display: flex; align-items: center; gap: 8px; }
.nav-link { color: var(--text-white); font-weight: 600; font-size: 14px; padding: 8px 14px; border-radius: 6px; transition: all 0.3s ease; }
.nav-link:hover { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); }
.btn { padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 13px; cursor: pointer; border: none; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif; text-transform: uppercase; display: inline-block; }
.btn-gold { background: var(--gradient-gold); color: var(--primary-dark); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
.btn-outline { background: transparent; color: var(--text-white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--accent-gold); color: var(--accent-gold); }
.btn-large { padding: 14px 28px; font-size: 15px; }

/* Page Hero */
.page-hero { background: var(--gradient-primary); padding: 50px 0 40px; color: var(--text-white); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: 42px; margin-bottom: 15px; }
.page-hero h1 span { color: var(--accent-gold); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.85); }
.breadcrumb { background: rgba(0,0,0,0.2); padding: 12px 0; color: rgba(255,255,255,0.8); font-size: 14px; }
.breadcrumb a { color: var(--accent-gold); }
.breadcrumb a:hover { color: var(--accent-orange); }

/* Mobile Nav */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--accent-gold); font-size: 28px; cursor: pointer; }
.mobile-nav { display: none; }

/* Age Notice */
.age-notice { background: linear-gradient(90deg, var(--accent-orange), #e85a25); color: var(--text-white); text-align: center; padding: 8px 15px; font-size: 13px; font-weight: 600; }
.age-notice a { color: var(--accent-gold); text-decoration: underline; }

/* Skip Link */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: static; }

/* Hero Section */
.hero { background: var(--gradient-primary); color: var(--text-white); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255, 215, 0, 0.3); }
.hero h1 { font-size: 48px; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--accent-gold); }
.hero-subtitle { font-size: 22px; color: var(--accent-gold); margin-bottom: 15px; font-weight: 600; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 800px; margin: 0 auto 30px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Trust Section */
.trust-section { 
    background: var(--gradient-primary); 
    padding: 50px 0; 
    color: var(--text-white); 
    position: relative;
}
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
}
.trust-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    text-align: center; 
    position: relative;
    z-index: 1;
}
.trust-item { 
    padding: 25px 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.2);
    transition: all 0.3s ease;
}
.trust-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.trust-number { 
    font-size: 42px; 
    font-weight: 900; 
    color: var(--accent-gold); 
    margin-bottom: 8px; 
    font-family: 'Montserrat', sans-serif; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.trust-label { 
    font-size: 14px; 
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* Section */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; color: var(--primary-dark); margin-bottom: 15px; }
.section-header p { font-size: 17px; color: var(--text-gray); max-width: 800px; margin: 0 auto; }

/* Games Grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.game-card { background: var(--text-white); border-radius: 16px; padding: 0 0 35px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.game-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: var(--accent-gold); }
.game-image { margin: 0 0 20px 0; height: 200px; overflow: hidden; border-radius: 16px 16px 0 0; }
.game-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-image img { transform: scale(1.08); }
.game-card h3 { color: var(--primary-dark); font-size: 22px; margin-bottom: 15px; padding: 0 30px; }
.game-card p { color: var(--text-gray); font-size: 15px; line-height: 1.7; margin-bottom: 20px; padding: 0 30px; }
.game-features { margin: 0 0 20px 30px; padding: 0; color: #666; font-size: 14px; }
.game-features li { margin-bottom: 6px; padding-left: 4px; }
.game-features li:last-child { margin-bottom: 0; }
.game-link { color: var(--primary-blue); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; padding: 0 30px; }
.game-link:hover { color: var(--accent-orange); gap: 10px; }

/* Promo Grid */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.promo-card { background: var(--text-white); border-radius: 16px; padding: 0 0 30px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.06); position: relative; transition: all 0.4s ease; overflow: hidden; }
.promo-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.promo-image { height: 160px; overflow: hidden; margin-bottom: 0; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.promo-card:hover .promo-image img { transform: scale(1.05); }
.promo-tag { position: absolute; top: 15px; right: 15px; background: var(--accent-orange); color: var(--text-white); padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; z-index: 2; }
.promo-card h3 { color: var(--primary-dark); font-size: 20px; margin-bottom: 8px; padding: 0 30px; }
.promo-amount { font-size: 38px; font-weight: 900; color: var(--accent-orange); margin: 5px 0 15px; font-family: 'Montserrat', sans-serif; padding: 0 30px; }
.promo-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; padding: 0 30px; }
.promo-features { margin: 15px 30px 20px; padding: 0 0 0 18px; color: #666; font-size: 14px; }
.promo-features li { margin-bottom: 6px; }
.promo-features li:last-child { margin-bottom: 0; }
.promo-cta { display: inline-block; margin: 0 30px 0; }

/* Content Block */
.content-block { background: var(--text-white); border-radius: 16px; padding: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 30px; }
.content-block h2 { color: var(--primary-dark); font-size: 26px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--accent-gold); }
.content-block h3 { color: var(--primary-blue); font-size: 20px; margin: 25px 0 12px; }
.content-block p { color: #333; font-size: 16px; line-height: 1.8; margin-bottom: 15px; }
.content-block ul, .content-block ol { margin: 15px 0 15px 25px; }
.content-block li { color: #333; font-size: 16px; margin-bottom: 10px; line-height: 1.7; }
.content-block strong { color: var(--primary-blue); }

/* Content Section */
.content-section { padding: 60px 0; background: var(--bg-light); }
.content-box { background: var(--text-white); border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); margin-bottom: 30px; }
.content-box h2 { color: var(--primary-dark); font-size: 28px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--accent-gold); }
.content-box h3 { color: var(--primary-blue); font-size: 20px; margin: 25px 0 12px; }
.content-box p { color: #333; font-size: 16px; line-height: 1.8; margin-bottom: 15px; }
.content-box ul, .content-box ol { margin: 15px 0 15px 25px; }
.content-box li { color: #333; font-size: 16px; margin-bottom: 8px; line-height: 1.7; }
.info-card { background: linear-gradient(135deg, rgba(26,35,126,0.05) 0%, rgba(255,215,0,0.05) 100%); border-left: 4px solid var(--accent-gold); padding: 20px 25px; margin: 20px 0; border-radius: 0 12px 12px 0; }
.info-card strong { color: var(--primary-blue); }
.info-card-warning { background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,215,0,0.06) 100%); border-left: 4px solid var(--accent-orange); }
.info-card-warning strong { color: var(--accent-orange); }

/* App Section */
.app-section { background: var(--gradient-primary); color: var(--text-white); }
.app-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; }
.app-text h2 { font-size: 32px; margin-bottom: 20px; }
.app-text p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.8; margin-bottom: 25px; }
.app-features-list { list-style: none; margin-bottom: 30px; }
.app-features-list li { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.app-features-list span { color: var(--accent-gold); font-weight: 700; font-size: 18px; }
.app-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.app-image { display: flex; justify-content: center; }
.app-mockup { width: 250px; height: 450px; background: linear-gradient(180deg, #1a237e 0%, #0a1628 100%); border-radius: 35px; border: 8px solid #000; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.5); overflow: hidden; }
.app-mockup img { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: var(--text-white); border-radius: 16px; padding: 35px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); text-align: center; transition: all 0.4s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.feature-icon { font-size: 50px; margin-bottom: 20px; }
.feature-card h3 { color: var(--primary-dark); font-size: 22px; margin-bottom: 15px; }
.feature-card p { color: var(--text-gray); font-size: 15px; line-height: 1.7; }

/* FAQ Section */
.faq-section { background: var(--bg-light); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--text-white); border-radius: 12px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 25px; text-align: left; font-size: 16px; font-weight: 600; color: var(--primary-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; font-family: inherit; }
.faq-question:hover { background: var(--bg-light); }
.faq-question .icon { font-size: 24px; color: var(--accent-gold); transition: transform 0.3s ease; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 25px 25px; color: #333; font-size: 15px; line-height: 1.8; }

/* News Grid */
.news-section { background: var(--text-white); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.news-card { background: var(--text-white); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.05); display: block; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.news-image { height: 180px; background: var(--gradient-primary); position: relative; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-image img { transform: scale(1.08); }
.news-tag { position: absolute; top: 15px; left: 15px; background: var(--accent-orange); color: var(--text-white); padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; z-index: 2; }
.news-content { padding: 20px; }
.news-content h3 { color: var(--primary-dark); font-size: 17px; line-height: 1.4; margin-bottom: 10px; }
.news-card:hover .news-content h3 { color: var(--primary-blue); }
.news-content p { color: var(--text-gray); font-size: 14px; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-date { font-size: 12px; color: var(--text-gray); }

/* CTA Section */
.cta-section { background: var(--gradient-primary); color: var(--text-white); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: 32px; margin-bottom: 20px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Forms */
.form-section { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--primary-dark); font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; background: var(--gradient-gold); color: var(--primary-dark); border: none; border-radius: 8px; font-weight: 700; font-size: 16px; cursor: pointer; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.sitemap-section { background: var(--text-white); border-radius: 12px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.06); }
.sitemap-section h3 { color: var(--primary-blue); font-size: 18px; margin-bottom: 15px; }
.sitemap-section ul { list-style: none; margin: 0; padding: 0; }
.sitemap-section li { margin-bottom: 10px; }
.sitemap-section a { color: var(--text-gray); font-size: 14px; transition: all 0.3s ease; }
.sitemap-section a:hover { color: var(--accent-orange); padding-left: 5px; }

/* Feature Grid (simple pages) */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin: 30px 0; }
.feature-item { background: var(--text-white); border-radius: 12px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.feature-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.feature-item .icon { font-size: 40px; margin-bottom: 15px; }
.feature-item h4 { color: var(--primary-dark); font-size: 18px; margin-bottom: 10px; }
.feature-item p { color: var(--text-gray); font-size: 14px; line-height: 1.6; margin: 0; }

/* Providers Banner */
.providers-banner { margin: 30px 0; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.providers-banner img { width: 100%; height: auto; display: block; }

/* About Page */
.about-stats-image { margin-bottom: 30px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-stats-image img { width: 100%; height: auto; display: block; }
.about-map-image { margin: 25px 0; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-map-image img { width: 100%; height: auto; display: block; }
.license-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 25px 0; }
.license-item { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.license-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.license-item:hover img { transform: scale(1.05); }

/* Contact Page */
.contact-channels-image { margin: 30px 0; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.contact-channels-image img { width: 100%; height: auto; display: block; }
.support-icons-image { margin: 25px 0 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }
.support-icons-image img { width: 100%; height: auto; display: block; }

/* Deposit Page */
.deposit-methods-banner { padding: 30px 20px; background: #f9f9f9; }
.deposit-methods-banner img { max-width: 1100px; margin: 0 auto; height: auto; display: block; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }

/* App Download Page */
.app-features-section { padding: 50px 0; background: var(--text-white); }
.app-features-image { margin-bottom: 30px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.app-features-image img { width: 100%; height: auto; display: block; }
.app-lifestyle-image { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.app-lifestyle-image img { width: 100%; height: auto; display: block; }

/* FAQ Page */
.faq-categories-image { margin-bottom: 30px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 1100px; margin: 30px auto; }
.faq-categories-image img { width: 100%; height: auto; display: block; }

/* Sitemap Page */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sitemap-section { background: var(--text-white); border-radius: 16px; padding: 25px 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.sitemap-section h3 { font-size: 18px; color: var(--primary-dark); margin-bottom: 15px; padding-bottom: 12px; border-bottom: 2px solid var(--accent-gold); }
.sitemap-section ul { list-style: none; padding: 0; margin: 0; }
.sitemap-section li { margin-bottom: 10px; }
.sitemap-section li:last-child { margin-bottom: 0; }
.sitemap-section a { color: var(--text-gray); font-size: 14px; transition: color 0.3s; text-decoration: none; }
.sitemap-section a:hover { color: var(--accent-orange); }
.quick-links-grid { background: var(--text-white); border-radius: 16px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-top: 50px; }
.quick-links-grid h2 { font-size: 22px; color: var(--primary-dark); margin-bottom: 20px; }
.quick-links-buttons { display: flex; flex-wrap: wrap; gap: 15px; }
.quick-links-buttons .btn { padding: 14px 28px; font-size: 15px; }
.contact-grid-info { background: var(--text-white); border-radius: 16px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-top: 30px; }
.contact-grid-info h2 { font-size: 22px; color: var(--primary-dark); margin-bottom: 20px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.contact-grid div strong { display: block; color: var(--primary-dark); margin-bottom: 5px; }
.contact-grid div p { color: var(--text-gray); font-size: 14px; margin: 0; }

/* Articles Section */
.articles-section { padding: 60px 0; }
.articles-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.article-card { background: var(--text-white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: all 0.4s ease; display: grid; grid-template-columns: 280px 1fr; gap: 0; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.article-thumb { height: 100%; min-height: 200px; background: var(--gradient-primary); position: relative; overflow: hidden; display: block; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-tag { position: absolute; top: 15px; left: 15px; background: var(--accent-orange); color: var(--text-white); padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.article-body { padding: 25px 30px; display: flex; flex-direction: column; justify-content: center; }
.article-body h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 12px; line-height: 1.4; transition: color 0.3s; }
.article-body h3:hover { color: var(--primary-blue); }
.article-body p { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-meta { display: flex; gap: 20px; font-size: 12px; color: var(--text-gray); margin-bottom: 15px; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.read-more { color: var(--primary-blue); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; transition: all 0.3s ease; text-decoration: none; }
.read-more:hover { color: var(--accent-orange); gap: 10px; }
.article-separator { margin: 40px 0; border: none; border-top: 1px solid rgba(0,0,0,0.06); }

/* News Page */
.news-highlight { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.news-highlight img { width: 100%; height: 350px; object-fit: cover; display: block; }
.news-highlight-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%); color: white; }
.news-badge { display: inline-block; background: var(--accent-orange); color: white; padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.news-highlight-content h2 { font-size: 26px; margin-bottom: 10px; color: white; }
.news-highlight-content p { color: rgba(255,255,255,0.9); font-size: 15px; max-width: 800px; }
.news-promo-image { margin-bottom: 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.news-promo-image img { width: 100%; height: auto; display: block; }
.page-hero-news { background: var(--gradient-primary); padding: 50px 0 40px; color: var(--text-white); text-align: center; position: relative; overflow: hidden; }
.page-hero-news::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%); }
.page-hero-news > * { position: relative; z-index: 1; }
.page-hero-news h1 { font-size: 42px; margin-bottom: 15px; }
.page-hero-news h1 span { color: var(--accent-gold); }
.page-hero-news p { font-size: 17px; color: rgba(255,255,255,0.85); }

/* About Page */
.about-stats-image { margin-bottom: 30px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-stats-image img { width: 100%; height: auto; display: block; }
.about-map-image { margin: 25px 0; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-map-image img { width: 100%; height: auto; display: block; }
.license-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 25px 0; }
.license-item { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.license-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.license-item:hover img { transform: scale(1.05); }

/* Hot Games Grid */
.hot-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.hot-games-grid .game-image-card { 
    display: block; 
    border-radius: 12px; 
    overflow: hidden; 
    background: var(--text-white); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}
.hot-games-grid .game-image-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.hot-games-grid .game-image-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.hot-games-grid .game-image-card .game-name { 
    display: block; 
    padding: 12px 15px; 
    font-weight: 700; 
    color: var(--primary-dark); 
    text-align: center; 
    font-size: 14px;
}
.hot-games-grid .game-image-card .game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255,107,53,0.4);
    z-index: 2;
}

/* Footer */
.footer { background: #0a0a0a; color: var(--text-white); padding: 50px 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }
.footer h4 { font-size: 18px; color: var(--accent-gold); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links a:hover { color: var(--accent-gold); }
.contact-info { list-style: none; }
.contact-info li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: rgba(255,255,255,0.7); font-size: 14px; }
.contact-info span:first-child { font-size: 20px; color: var(--accent-gold); }
.footer-bottom { padding: 25px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: block; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-section { padding: 40px 0; }
    .trust-number { font-size: 36px; }
    .app-content { grid-template-columns: 1fr; }
    .app-image { order: -1; }
    .hero h1 { font-size: 36px; }
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 32px; }
    .page-hero-news h1 { font-size: 30px; }
    .page-hero-news p { font-size: 15px; }
    .news-highlight img { height: 220px; }
    .news-highlight-content { padding: 20px; }
    .news-highlight-content h2 { font-size: 20px; }
    .article-card { grid-template-columns: 1fr; }
    .article-thumb { min-height: 180px; }
    .sitemap-grid { grid-template-columns: 1fr; }
    .quick-links-buttons { flex-direction: column; }
    .quick-links-buttons .btn { text-align: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .section-header h2 { font-size: 28px; }
    .hero { padding: 50px 0; }
    .hero h1 { font-size: 28px; }
    .section { padding: 50px 0; }
    .games-grid, .promo-grid, .news-grid, .features-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .trust-section { padding: 30px 0; }
    .trust-item { padding: 15px 10px; }
    .trust-number { font-size: 28px; }
    .trust-label { font-size: 12px; }
    .game-images-row { grid-template-columns: repeat(2, 1fr); }
}
