/* ========================================
   王者殿堂 - Kings Hall Royal Theme CSS
   ======================================== */

/* === Font Faces === */
@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-600.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-900.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-300.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* === CSS Variables === */
:root {
  --gold: #FFD700;
  --gold-light: #FFE44D;
  --gold-dark: #B8960C;
  --royal-red: #8B0000;
  --royal-red-light: #A52A2A;
  --glory-purple: #4B0082;
  --obsidian: #2F4F4F;
  --obsidian-dark: #1A2F2F;
  --obsidian-light: #3D6363;
  --pearl-white: #F5F0E8;
  --cream: #FFF8DC;
  --velvet-bg: #3A0A0A;
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Merriweather', 'Times New Roman', serif;
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-deep: 0 8px 32px rgba(0, 0, 0, 0.5);
  --border-gold: 2px solid var(--gold);
  --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  --gradient-royal: linear-gradient(180deg, var(--obsidian-dark), var(--obsidian));
  --gradient-velvet: linear-gradient(180deg, #2A0505, #5A1010, #2A0505);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--pearl-white);
  background-color: var(--obsidian-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 0.8em;
}

h1 { font-size: 2.4rem; font-weight: 900; }
h2 { font-size: 1.8rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
  margin-bottom: 1.2em;
  color: var(--pearl-white);
  font-size: 1rem;
}

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

a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

/* === Container === */
.royal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header / Navigation === */
#kings-hall-header {
  background: linear-gradient(180deg, rgba(26, 47, 47, 0.98), rgba(47, 79, 79, 0.95));
  border-bottom: 3px solid var(--gold);
  padding: 12px 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-area .site-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Desktop Nav */
.royal-nav {
  display: none;
}

.royal-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

.royal-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pearl-white);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.royal-nav ul li a:hover,
.royal-nav ul li a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 1px solid var(--gold);
  border-radius: 4px;
}

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

/* Mobile Nav Dropdown - Gothic Style */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--obsidian-dark), #0D1F1F);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-deep);
  z-index: 99;
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.4s ease;
}

.mobile-nav ul {
  list-style: none;
  padding: 10px 0;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pearl-white);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav ul li a::before {
  content: '\2694';
  margin-right: 10px;
  color: var(--gold);
  font-size: 0.9rem;
}

.mobile-nav ul li a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
  padding-left: 32px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Hero Section === */
#kings-hall-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--obsidian-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(26, 47, 47, 0.3), rgba(26, 47, 47, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 16px;
  animation: crownGlow 3s ease-in-out infinite;
}

.hero-content .hero-slogan {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 30px;
  font-style: italic;
}

.hero-content .cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gradient-gold);
  color: var(--obsidian-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

@keyframes crownGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 2px 2px 4px rgba(0,0,0,0.8); }
  50% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 2px 2px 4px rgba(0,0,0,0.8); }
}

/* === Royal Module (Reusable Section) === */
.royal-module {
  padding: 60px 0;
  position: relative;
}

.royal-module:nth-child(even) {
  background: var(--gradient-velvet);
}

.royal-module:nth-child(odd) {
  background: var(--gradient-royal);
}

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

.module-title h2 {
  display: inline-block;
  padding: 0 30px;
  position: relative;
}

.module-title h2::before,
.module-title h2::after {
  content: '\2726';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
}

.module-title h2::before { left: 0; }
.module-title h2::after { right: 0; }

.gold-divider {
  width: 120px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 16px auto;
  border: none;
}

/* === Brand Story Section === */
.brand-story-section {
  background: var(--gradient-velvet);
  position: relative;
}

.brand-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/castle-grand-hall.webp') center/cover no-repeat;
  opacity: 0.08;
}

.story-content {
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.story-image {
  border: 3px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.story-text h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.story-text h3::before {
  content: '\265A ';
  color: var(--royal-red-light);
}

/* === Game Cards Grid === */
.game-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.game-card {
  background: linear-gradient(145deg, rgba(47, 79, 79, 0.8), rgba(26, 47, 47, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-body {
  padding: 20px;
}

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

.game-card-body p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 16px;
}

.card-link {
  display: inline-block;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

/* === Odds Table === */
.odds-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.odds-table thead {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.odds-table thead th {
  padding: 12px 16px;
  color: var(--obsidian-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.odds-table tbody tr {
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  transition: background 0.3s ease;
}

.odds-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.06);
}

.odds-table tbody td {
  padding: 12px 16px;
  color: var(--pearl-white);
}

.odds-up { color: #4CAF50; }
.odds-down { color: #F44336; }

/* === VIP Section === */
.vip-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.vip-card {
  background: linear-gradient(145deg, rgba(75, 0, 130, 0.3), rgba(47, 79, 79, 0.8));
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.vip-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.vip-card .vip-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.vip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

.vip-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.85);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.vip-card ul li::before {
  content: '\2726 ';
  color: var(--gold);
}

/* === Safety Section === */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.safety-item {
  background: rgba(47, 79, 79, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.safety-item:hover {
  border-color: var(--gold);
}

.safety-item .safety-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.safety-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.safety-item p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
}

/* === News Section === */
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.news-item {
  display: flex;
  gap: 16px;
  background: rgba(47, 79, 79, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-item:hover {
  border-color: var(--gold);
}

.news-item img {
  width: 120px;
  min-height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-item-body {
  padding: 12px 12px 12px 0;
}

.news-item-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.news-item-body .news-date {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.news-item-body p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.75);
}

/* === Expert Column === */
.expert-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.expert-card {
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.2), rgba(47, 79, 79, 0.7));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 24px;
}

.expert-card h4 {
  color: var(--gold);
  margin-bottom: 8px;
}

.expert-card .expert-name {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 10px;
}

.expert-card p {
  font-size: 0.9rem;
}

/* === License Module === */
.license-section {
  text-align: center;
}

.license-badge {
  display: inline-block;
  background: linear-gradient(145deg, rgba(75, 0, 130, 0.3), rgba(47, 79, 79, 0.8));
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 30px;
  margin: 20px auto;
  max-width: 500px;
}

.license-badge img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.license-badge h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.license-badge p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
}

.license-number {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
}

/* === APP Download Section === */
.app-section {
  text-align: center;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.app-feature-item {
  background: rgba(47, 79, 79, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
}

.app-feature-item .feature-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.app-feature-item h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.app-feature-item p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.75);
}

.qr-codes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.qr-item {
  text-align: center;
}

.qr-item .qr-placeholder {
  width: 140px;
  height: 140px;
  background: var(--pearl-white);
  border: 3px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 0.8rem;
  color: var(--obsidian-dark);
  font-family: var(--font-heading);
}

.qr-item p {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
}

/* === Footer === */
#kings-hall-footer {
  background: linear-gradient(180deg, #1A1A1A, #0D0D0D);
  border-top: 3px solid var(--gold);
  padding: 50px 0 20px;
  position: relative;
}

#kings-hall-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/castle-stone-wall.webp') center/cover no-repeat;
  opacity: 0.06;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s ease;
}

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

.footer-col p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 6px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 4px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--obsidian-dark);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.payment-icons span {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.7);
  font-family: var(--font-heading);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 4px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--royal-red);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--royal-red);
  margin: 12px auto;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
}

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

/* === Inner Page Styles === */
.inner-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.inner-hero .hero-bg {
  opacity: 0.3;
}

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

.inner-content {
  padding: 50px 0;
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

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

.content-image {
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Strategy Box */
.strategy-box {
  background: linear-gradient(145deg, rgba(75, 0, 130, 0.15), rgba(47, 79, 79, 0.6));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  margin: 20px 0;
}

.strategy-box h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.strategy-box ol, .strategy-box ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.strategy-box li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.85);
}

/* King's Creed Box */
.kings-creed {
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.25), rgba(75, 0, 130, 0.2));
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.kings-creed h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.kings-creed blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.8;
  border: none;
  padding: 0;
}

/* Story Box */
.story-box {
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.15), rgba(47, 79, 79, 0.5));
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
  font-style: italic;
}

.story-box h4 {
  color: var(--gold);
  font-style: normal;
  margin-bottom: 10px;
}

.story-box p {
  color: rgba(245, 240, 232, 0.85);
}

/* === APP Download Page Specific === */
.coronation-hall {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.scroll-step {
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.15), rgba(47, 79, 79, 0.6));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin: 20px 0;
  position: relative;
}

.scroll-step::before {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--gold);
  color: var(--obsidian-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.scroll-step h3 {
  margin-top: 8px;
}

/* === Forum Page === */
.forum-post {
  background: rgba(47, 79, 79, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 24px;
  margin: 16px 0;
}

.forum-post .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gold-dark);
}

.forum-post h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* === Responsive Design === */
@media (min-width: 480px) {
  .game-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  .hero-content h1 { font-size: 2.8rem; }
  .hero-content .hero-slogan { font-size: 1.3rem; }

  .story-grid {
    grid-template-columns: 300px 1fr;
  }

  .game-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

@media (min-width: 1024px) {
  .royal-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

  .game-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-tiers {
    grid-template-columns: repeat(4, 1fr);
  }

  .safety-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--royal-red-light); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Oil painting loading effect */
.oil-paint-load {
  animation: oilReveal 1.2s ease-out;
}

@keyframes oilReveal {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

/* Scepter swipe animation */
.scepter-enter {
  animation: scepterSwipe 0.8s ease-out;
}

@keyframes scepterSwipe {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
