/* ============================================
   澳门娱乐城 - 独特紫金主题设计
   配色：深紫 #0D0628 / 皇家金 #D4A843 / 暗红 #8B1A1A / 象牙白 #F5F0E8
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0D0628;
    --primary-mid: #1A0E3E;
    --primary-light: #2D1B69;
    --accent-gold: #D4A843;
    --accent-gold-light: #F0D78C;
    --accent-red: #8B1A1A;
    --accent-red-light: #C62828;
    --text-ivory: #F5F0E8;
    --text-muted: #B8B0C8;
    --bg-card: rgba(26, 14, 62, 0.85);
    --bg-overlay: rgba(13, 6, 40, 0.92);
    --border-gold: rgba(212, 168, 67, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.15);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-main: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
    --font-heading: 'PingFang SC', 'STHeiti', 'Microsoft YaHei', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-mid: 0.35s ease;
    --transition-slow: 0.6s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--primary-dark);
    color: var(--text-ivory);
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold-light);
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--accent-gold);
}

h1 { font-size: 2.2rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.6rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-ivory);
}

/* ============================================
   Layout Container
   ============================================ */
.site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   Header & Navigation (Non-sticky)
   ============================================ */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    border-bottom: 2px solid var(--border-gold);
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.site-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--accent-gold);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(212, 168, 67, 0.15);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-ivory);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-gold);
    background: rgba(212, 168, 67, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,6,40,0.3) 0%, rgba(13,6,40,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 2.6rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 15px rgba(212, 168, 67, 0.5);
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-mid);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
    text-transform: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.6);
    color: var(--primary-dark);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 50px 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 1rem;
}

/* ============================================
   Card Grid System
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-mid);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

.card-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Casino Games Mini Cards
   ============================================ */
.game-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.game-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-mid);
}

.game-mini-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.game-mini-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.game-mini-card .game-name {
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ============================================
   Video Section
   ============================================ */
.video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-gold);
}

.video-wrapper img {
    width: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 67, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-mid);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.video-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--primary-dark);
    margin-left: 4px;
}

.video-play-btn:hover {
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   Travel Guide Section
   ============================================ */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.travel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-mid);
}

.travel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.travel-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.travel-card-content {
    padding: 18px;
}

.travel-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.travel-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   License Section
   ============================================ */
.license-section {
    text-align: center;
    padding: 40px 0;
}

.license-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.license-badge-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(212, 168, 67, 0.3));
    transition: transform var(--transition-mid);
}

.license-badge-img:hover {
    transform: scale(1.08);
}

.license-info {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(212, 168, 67, 0.08);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-gold);
    transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-mid);
}

.faq-item.open .faq-answer {
    padding: 0 20px 16px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-mid);
}

.review-card:hover {
    box-shadow: var(--shadow-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-ivory);
    font-size: 0.95rem;
}

.review-city {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    opacity: 0.7;
}

/* ============================================
   Payment Section
   ============================================ */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.payment-icon {
    width: 100px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 8px;
    transition: all var(--transition-fast);
}

.payment-icon:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 168, 67, 0.08);
}

/* ============================================
   Support Section
   ============================================ */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.support-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-mid);
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.support-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
}

.support-item h4 {
    margin-bottom: 6px;
}

.support-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 16px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

/* ============================================
   Responsible Gaming
   ============================================ */
.responsible-section {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.15), rgba(13, 6, 40, 0.9));
    border: 1px solid rgba(139, 26, 26, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.responsible-section h3 {
    color: var(--accent-red-light);
    margin-bottom: 16px;
}

.responsible-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.responsible-section ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.93rem;
}

.responsible-section ul li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--accent-red-light);
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 6px;
}

.breadcrumb .current {
    color: var(--accent-gold);
}

/* ============================================
   Inner Page Styles
   ============================================ */
.page-banner {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,6,40,0.4), rgba(13,6,40,0.85));
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.page-banner-content h1 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-content {
    padding: 40px 0;
}

.page-content article {
    max-width: 850px;
    margin: 0 auto;
}

.page-content article p {
    margin-bottom: 16px;
    line-height: 1.85;
    color: var(--text-muted);
}

.page-content article h2 {
    margin-top: 30px;
    margin-bottom: 16px;
}

.page-content article h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.page-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.page-gallery img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* ============================================
   App Download Page
   ============================================ */
.app-hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.app-hero h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.app-hero p {
    max-width: 600px;
    margin: 0 auto 24px;
    color: var(--text-muted);
}

.app-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.app-phone-img {
    max-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
}

.app-info {
    max-width: 450px;
}

.app-info h2 {
    margin-bottom: 16px;
}

.app-info ul {
    list-style: none;
    padding: 0;
}

.app-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.app-info ul li::before {
    content: '✦ ';
    color: var(--accent-gold);
}

.download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-mid);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.5);
    color: var(--primary-dark);
}

.download-btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.download-btn.secondary:hover {
    background: rgba(212, 168, 67, 0.1);
    color: var(--accent-gold);
}

.qr-section {
    text-align: center;
    padding: 40px 0;
}

.qr-section img {
    width: 200px;
    margin: 0 auto;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-md);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--primary-mid), #050210);
    border-top: 2px solid var(--border-gold);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.footer-social img:hover {
    transform: scale(1.15);
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.footer-payments img {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-payments img:hover {
    opacity: 1;
}

.footer-age {
    display: inline-block;
    margin: 10px 0;
}

.footer-age img {
    width: 50px;
    height: auto;
}

/* ============================================
   Activity / Promo Section
   ============================================ */
.promo-banner {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border: 1px solid var(--border-gold);
}

.promo-banner h3 {
    color: var(--accent-gold-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.promo-banner p {
    color: var(--text-ivory);
    font-size: 1rem;
}

/* ============================================
   Author Info
   ============================================ */
.author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
}

.author-box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.author-box-info h4 {
    margin-bottom: 4px;
}

.author-box-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================
   RTP Info Table
   ============================================ */
.rtp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.92rem;
}

.rtp-table th,
.rtp-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-gold);
    text-align: left;
}

.rtp-table th {
    background: var(--primary-light);
    color: var(--accent-gold);
    font-weight: 600;
}

.rtp-table td {
    color: var(--text-muted);
}

.rtp-table tr:hover td {
    background: rgba(212, 168, 67, 0.05);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */
@media (max-width: 768px) {
    html { font-size: 15px; }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--primary-mid);
        border-radius: var(--radius-md);
        margin-top: 10px;
        padding: 8px;
    }
    
    .main-nav.open {
        display: flex;
    }
    
    .main-nav a {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-gold);
        width: 100%;
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-content {
        padding: 40px 16px;
    }
    
    .card-grid,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .game-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-preview {
        flex-direction: column;
    }
    
    .page-gallery {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .responsible-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    
    .site-container {
        padding: 0 12px;
    }
    
    .game-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .download-btns {
        flex-direction: column;
    }
    
    .payment-grid {
        gap: 10px;
    }
    
    .payment-icon {
        width: 80px;
        height: 48px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header, .site-footer, .cta-btn, .menu-toggle {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
