/* ============================================================
   Gold Eagle Casino Online — app.css
   Theme: Near-black #08080E + Gold #D4AF37
   ============================================================ */

:root {
  --primary:    #D4AF37;
  --primary-dk: #A88A1A;
  --primary-lt: #F0CC55;
  --bg-dark:    #08080E;
  --bg-mid:     #10101C;
  --bg-card:    #18182A;
  --text-light: #FFFFFF;
  --text-muted: #9999BB;
  --text-dark:  #08080E;
  --border:     rgba(212,175,55,0.18);
  --border-dk:  rgba(255,255,255,0.07);
  --radius:     3px;
  --trans:      0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Arial', 'Helvetica Neue', sans-serif; background: var(--bg-dark); color: var(--text-light); overflow-x: hidden; width: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: background var(--trans), color var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, #F0CC55 0%, #D4AF37 50%, #A88A1A 100%);
  color: var(--bg-dark); box-shadow: 0 0 18px rgba(212,175,55,0.35);
}
.btn--primary:hover { background: linear-gradient(135deg, #F5D76E 0%, #E0BF6A 50%, #C9A84C 100%); box-shadow: 0 0 28px rgba(212,175,55,0.55); }
.btn--ghost       { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: #fff; }
.btn--ghost-gold  { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--ghost-gold:hover { background: var(--primary); color: var(--bg-dark); }
.btn--hero        { background: var(--primary); color: var(--bg-dark); padding: 14px 36px; font-size: 0.95rem; font-weight: 900; }
.btn--hero:hover  { background: var(--primary-lt); }
.btn--demo        { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); padding: 14px 36px; font-size: 0.95rem; }
.btn--demo:hover  { border-color: #fff; background: rgba(255,255,255,0.07); }
.btn--full        { width: 100%; }

/* ---- HEADER ---- */
.header {
  position: sticky; top: 0; z-index: 100;
  width: 100%; overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--primary);
  transition: box-shadow var(--trans);
}
.header__inner {
  max-width: none; margin: 0; padding: 0 24px;
  display: flex; align-items: center; height: 68px;
}
.header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 24px; }
.header__logo-img  { height: 42px; width: auto; object-fit: contain; }
.header__logo-text { font-size: 1rem; font-weight: 900; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; }
.header__nav { flex: 1; display: flex; justify-content: center; gap: 0; }
.nav-link {
  padding: 8px 12px; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  transition: color var(--trans); white-space: nowrap;
}
.nav-link:hover { color: var(--primary); }
.header__actions { display: flex; gap: 10px; flex-shrink: 0; margin-left: 24px; }

/* ---- BURGER ---- */
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(max-width:1100px) {
  .header__nav, .header__actions { display: none; }
  .burger { display: flex; }
}

/* ---- MOBILE MENU ---- */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(0,0,0,0.85); }
.mobile-menu.open { display: block; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: var(--bg-mid); padding: 80px 24px 32px; border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-link {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color var(--trans);
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-menu__actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ---- GOLD SHIMMER ANIMATION ---- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes eagle-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.08; }
  50%       { transform: translateY(-16px) rotate(2deg); opacity: 0.13; }
}

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  background: url('../images/banners/hero-slots-floor.webp') center center / cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,14,0.92) 0%, rgba(8,8,14,0.65) 55%, rgba(8,8,14,0.25) 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
}
.hero__inner  { position: relative; z-index: 1; padding: 110px 0 90px; }
.hero__content { max-width: 600px; }
.hero__eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); border-bottom: 1px solid var(--primary); padding-bottom: 6px;
}
.hero__h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900;
  line-height: 1.05; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px;
  background: linear-gradient(90deg, #F0CC55 0%, #D4AF37 30%, #FFF8DC 55%, #D4AF37 75%, #A88A1A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.6; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero eagle watermark */
.hero__eagle {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: min(480px, 40vw); opacity: 0.09; pointer-events: none; z-index: 0;
  color: var(--primary); animation: eagle-float 8s ease-in-out infinite;
}
.hero__eagle svg { width: 100%; height: auto; fill: var(--primary); }

/* ---- PROMOTIONS SECTION ---- */
.promos-section { background: var(--bg-mid); padding: 72px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block; margin-bottom: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary);
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
  background: linear-gradient(90deg, #F0CC55, #D4AF37, #FFF8DC, #D4AF37, #A88A1A);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 5s linear infinite;
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); }

.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:768px) { .promos-grid { grid-template-columns: 1fr; } }

.promo-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px 32px;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.promo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #A88A1A, #F0CC55, #D4AF37, #F0CC55, #A88A1A);
  background-size: 200% auto; animation: shimmer 3s linear infinite;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.promo-card__tag {
  display: inline-block; margin-bottom: 12px; padding: 3px 12px; border-radius: 2px;
  background: rgba(212,175,55,0.15); color: var(--primary);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.promo-card__title {
  font-size: 1.25rem; font-weight: 900; color: #fff; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 12px; line-height: 1.2;
}
.promo-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.promo-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); transition: color var(--trans);
}
.promo-card__cta:hover { color: var(--primary-lt); }

/* ---- JACKPOT BAR ---- */
.jackpot-bar {
  background: #000; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0;
}
.jackpot-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.jackpot-bar__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.jackpot-bar__amount { font-size: 2.2rem; font-weight: 900; letter-spacing: 0.04em; line-height: 1; }
.jackpot-bar__name { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; }
.jackpot-bar__divider { width: 1px; height: 36px; background: var(--border); }

/* ---- GAMES SECTION ---- */
.games-section { background: var(--bg-dark); padding: 80px 0; }

.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media(max-width:900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .games-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.game-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border-dk);
  transition: transform var(--trans), box-shadow var(--trans);
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,175,55,0.22); }
.game-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-card__img { transform: scale(1.06); }
.game-card__label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: 0.04em;
}
.games-cta { text-align: center; margin-top: 40px; }

/* ---- VENUES 2×2 GRID ---- */
.venues-section { background: var(--bg-mid); padding: 80px 0; }
.venues-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 48px;
}
@media(max-width:600px) { .venues-grid { grid-template-columns: 1fr; } }

.venue-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 300px; border: 1px solid var(--border-dk);
  transition: transform var(--trans), box-shadow var(--trans);
}
.venue-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }
.venue-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.venue-card:hover .venue-card__img { transform: scale(1.05); }
.venue-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 48px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.venue-card__label {
  font-size: 1.35rem; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.venue-card__sub { font-size: 0.8rem; color: var(--primary); font-weight: 700; letter-spacing: 0.06em; }

/* ---- BONUS SECTION ---- */
.bonus-section {
  background: var(--bg-dark); border-top: 1px solid var(--border); padding: 80px 0;
  position: relative; overflow: hidden;
}
.bonus-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-inner { display: flex; align-items: center; justify-content: center; position: relative; }
.bonus-content { max-width: 680px; text-align: center; }
.bonus-badge {
  display: inline-block; margin-bottom: 16px; padding: 5px 20px; border-radius: 2px;
  background: var(--primary); color: var(--bg-dark);
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
}
.bonus-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 18px; color: #fff; line-height: 1.1;
}
.bonus-title span { color: var(--primary); }
.bonus-text { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ---- SEO CONTENT ---- */
.content-section { background: var(--bg-dark); padding: 80px 0 60px; }
.seo-content { max-width: 860px; width: 100%; margin: 0 auto; }
.seo-content h1 { font-size: 1.9rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 14px; color: #fff; line-height: 1.2; }
.seo-content h2 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin: 40px 0 14px; color: #fff; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 { font-size: 1.05rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin: 28px 0 10px; }
.seo-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 20px 0 8px; }
.seo-content p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.seo-content strong { color: #fff; }
.seo-content img { width: 100%; max-width: 700px; border-radius: var(--radius); margin: 24px 0; }

.seo-content h3.faq-item {
  cursor: pointer; padding: 14px 0; border-bottom: 1px solid var(--border-dk);
 transition: color var(--trans); margin: 0;
}
.seo-content h3.faq-item::after { content: '+'; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.seo-content h3.faq-item.faq-open::after { content: '−'; }
.seo-content h3.faq-item + p { display: none; padding: 14px 0; margin-bottom: 0; }
.seo-content h3.faq-item.faq-open + p { display: block; }

.seo-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; background: var(--bg-card) !important; border: 1px solid var(--border-dk); }
.seo-content th { background: rgba(255,255,255,0.08) !important; color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.seo-content td { background: var(--bg-card) !important; padding: 10px 14px; border-bottom: 1px solid var(--border-dk); color: var(--text-muted); vertical-align: top; }
.seo-content tr:nth-child(even) td { background: rgba(255,255,255,0.04) !important; }
.seo-content table strong { color: #fff; }
.seo-content ul, .seo-content ol { margin: 0 0 16px 20px; }
.seo-content li { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 4px; }
.seo-content li strong { color: #fff; }

/* ---- BONUS EAGLE WATERMARK ---- */
.bonus-eagle {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(700px, 85vw); opacity: 0.05; pointer-events: none; z-index: 0;
  animation: eagle-float 12s ease-in-out infinite;
}
.bonus-eagle svg { width: 100%; height: auto; fill: var(--primary); }

/* ---- JACKPOT BAR GOLD GLOW ---- */
.jackpot-bar__amount {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900;
  background: linear-gradient(90deg, #F0CC55, #D4AF37, #FFF8DC, #D4AF37, #A88A1A);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite;
  text-shadow: none;
}

/* ---- FOOTER ---- */
.footer { background: #000; border-top: 2px solid var(--primary); }
.footer__inner { padding: 48px 0 28px; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap; margin-bottom: 40px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border-dk);
}
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo-img  { height: 42px; width: auto; object-fit: contain; }
.footer__logo-text { font-size: 1rem; font-weight: 900; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; }
.footer__nav { display: flex; gap: 6px 24px; flex-wrap: wrap; align-items: center; }
.footer__nav a { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; transition: color var(--trans); }
.footer__nav a:hover { color: var(--primary); }
.footer__bottom { text-align: center; }
.footer__copy { font-size: 0.78rem; color: #555; line-height: 1.6; }

@media(max-width:768px) { .footer__top { flex-direction: column; } }
