/* ========================================
   澳门赌场·黄金时代 - Art Deco Style
   ======================================== */

/* === 字体定义 === */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/poppins-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lora-700.woff2') format('woff2');
}

/* === CSS变量 === */
:root {
  --gold: #DAA520;
  --gold-light: #F0D060;
  --gold-dark: #B8860B;
  --burgundy: #800000;
  --burgundy-light: #A52A2A;
  --dark-green: #006400;
  --dark-green-deep: #003300;
  --ivory: #FFFFF0;
  --ivory-dark: #F5F5DC;
  --black: #1A1A1A;
  --dark-bg: #0D0D0D;
  --text-dark: #3B2F1E;
  --text-light: #F5F0E8;
  --shadow-gold: rgba(218, 165, 32, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.5);
}

/* === 全局重置 === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Georgia', serif;
  color: var(--text-dark);
  background-color: var(--ivory);
  line-height: 1.8;
  overflow-x: hidden;
}

/* === 排版 === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Arial', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.9;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* === Art Deco 装饰元素 === */
.art-deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem;
}

.art-deco-divider::before,
.art-deco-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.art-deco-divider .deco-diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.art-deco-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  margin: 2rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--text-dark);
  display: inline-block;
  padding: 0 1.5rem;
  position: relative;
}

.section-title h2::before,
.section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.section-title h2::before { right: 100%; }
.section-title h2::after { left: 100%; }

.section-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* === 导航栏 === */
.golden-age-nav {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #1A1A0A 100%);
  border-bottom: 3px solid var(--gold);
  padding: 0;
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover {
  color: var(--gold);
}

.nav-links li a:hover::after {
  width: 80%;
}

/* 汉堡菜单 */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero 模块 === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
}

.hero-deco-frame {
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(218, 165, 32, 0.4);
  z-index: 3;
  pointer-events: none;
}

.hero-deco-frame::before,
.hero-deco-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
}

.hero-deco-frame::before {
  top: -2px;
  left: -2px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.hero-deco-frame::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero-slogan {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 2rem;
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-gold);
  color: var(--black);
}

/* === 通用模块样式 === */
.art-deco-module {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.module-dark {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #1A1A0A 100%);
  max-width: 100%;
  color: var(--text-light);
}

.module-dark h2,
.module-dark h3,
.module-dark h4 {
  color: var(--gold);
}

.module-dark p {
  color: var(--ivory-dark);
}

.module-green {
  background: linear-gradient(180deg, var(--dark-green-deep) 0%, var(--dark-green) 50%, var(--dark-green-deep) 100%);
  max-width: 100%;
  color: var(--text-light);
}

.module-green h2,
.module-green h3 {
  color: var(--gold);
}

.module-burgundy {
  background: linear-gradient(180deg, var(--burgundy) 0%, #600000 100%);
  max-width: 100%;
  color: var(--text-light);
}

.module-burgundy h2,
.module-burgundy h3 {
  color: var(--gold);
}

.module-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === 品牌故事模块 === */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.brand-story-image {
  position: relative;
  border: 3px solid var(--gold);
  padding: 5px;
}

.brand-story-image img {
  width: 100%;
  height: auto;
}

.brand-story-content h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* === 游戏卡片 === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--ivory);
  border: 2px solid var(--gold);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-gold);
}

.game-card-image {
  overflow: hidden;
  height: 200px;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-body {
  padding: 1.5rem;
}

.game-card-body h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.game-card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.game-card-link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.game-card-link:hover {
  background: var(--gold-dark);
  color: var(--ivory);
}

/* === 荷官天团 === */
.dealer-section {
  text-align: center;
}

.dealer-image-wrapper {
  position: relative;
  margin: 2rem auto;
  max-width: 900px;
  border: 3px solid var(--gold);
  padding: 5px;
}

.dealer-image-wrapper img {
  width: 100%;
}

.dealer-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dealer-feature {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.dealer-feature h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* === VIP俱乐部 === */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vip-tier {
  background: rgba(218, 165, 32, 0.05);
  border: 2px solid var(--gold);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-tier:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.vip-tier h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.vip-tier ul {
  list-style: none;
  text-align: left;
}

.vip-tier ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  font-size: 0.9rem;
}

.vip-tier ul li::before {
  content: '◆ ';
  color: var(--gold);
}

/* === 安全保障 === */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.security-item {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 100, 0, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.security-item h4 {
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}

/* === 攻略模块 === */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.strategy-card {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.strategy-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.strategy-card h4 {
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

/* === 牌照模块 === */
.license-section {
  text-align: center;
}

.license-badge {
  display: inline-block;
  border: 3px solid var(--gold);
  padding: 2rem 3rem;
  margin: 1.5rem 0;
  background: rgba(218, 165, 32, 0.05);
}

.license-badge h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.license-badge p {
  font-size: 0.95rem;
}

/* === 页脚 === */
.golden-age-footer {
  background: linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  color: var(--ivory-dark);
  border-top: 3px solid var(--gold);
  padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-col h4 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--ivory-dark);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(218, 165, 32, 0.2);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-payment img {
  height: 30px;
  display: inline-block;
  margin-right: 0.5rem;
}

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

.footer-license {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #888;
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* === 内页样式 === */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.page-hero-content h1 {
  color: var(--gold);
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.5rem;
}

.page-hero-content p {
  color: var(--ivory);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-content h2 {
  color: var(--gold-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.page-content h3 {
  color: var(--text-dark);
  margin: 2rem 0 0.75rem;
}

.page-content-image {
  margin: 2rem 0;
  border: 2px solid var(--gold);
  padding: 4px;
}

.page-content-image img {
  width: 100%;
  height: auto;
}

.page-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(218, 165, 32, 0.05);
  font-style: italic;
}

.golden-rule-box {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(128, 0, 0, 0.05) 100%);
  border: 2px solid var(--gold);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.golden-rule-box h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

/* === FAQ模块 === */
.faq-item {
  border: 1px solid rgba(218, 165, 32, 0.3);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.5rem;
  background: rgba(218, 165, 32, 0.05);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '◆';
  color: var(--gold);
  transition: transform 0.3s ease;
}

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

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

.faq-answer.active {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

/* === APP下载页 === */
.app-elevator {
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A0A 50%, #0D0D0D 100%);
  position: relative;
  overflow: hidden;
}

.app-elevator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 50px,
    rgba(218, 165, 32, 0.03) 50px,
    rgba(218, 165, 32, 0.03) 51px
  );
  pointer-events: none;
}

.app-qr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 2rem auto;
}

.app-qr-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A1A 100%);
  border: 2px solid var(--gold);
  padding: 2rem;
  text-align: center;
}

.app-qr-card h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.app-qr-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}

.app-steps {
  max-width: 700px;
  margin: 3rem auto;
}

.app-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
  background: rgba(218, 165, 32, 0.03);
}

.app-step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.app-step-content h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.app-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.app-advantage {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.app-advantage h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* === 玩家故事 === */
.story-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
  background: rgba(218, 165, 32, 0.02);
}

.story-card:nth-child(even) {
  grid-template-columns: 1fr 250px;
}

.story-card:nth-child(even) .story-image {
  order: 2;
}

.story-image {
  border: 2px solid var(--gold);
  padding: 3px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content h3 {
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === 响应式设计 === */
@media (max-width: 992px) {
  .brand-story {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story-card:nth-child(even) .story-image {
    order: 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-slogan {
    font-size: 1rem;
  }

  .art-deco-module {
    padding: 2.5rem 1rem;
  }

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

  .vip-tiers {
    grid-template-columns: 1fr;
  }

  .app-qr-cards {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    height: 40vh;
    min-height: 280px;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title h2::before,
  .section-title h2::after {
    width: 30px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .dealer-features {
    grid-template-columns: 1fr;
  }

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