/* ========================================
   UFA2X - Main Stylesheet
   Theme: Luxury Orange Casino
======================================== */

:root {
  --orange-1: #FF6B00;
  --orange-2: #FF8C00;
  --orange-3: #FFA500;
  --orange-4: #FFB732;
  --gold: #FFD700;
  --gold-2: #F4C430;
  --dark: #0A0500;
  --dark-2: #130B00;
  --dark-3: #1E1000;
  --dark-4: #2A1500;
  --dark-5: #3A1F00;
  --text: #F5E6D0;
  --text-muted: #B89070;
  --white: #FFFFFF;
  --card-bg: rgba(255,107,0,0.07);
  --card-border: rgba(255,140,0,0.2);
  --header-h: 75px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(255,107,0,0.15);
  --shadow-lg: 0 16px 64px rgba(255,107,0,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Kanit', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ---- HEADER ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: var(--transition);
}
.header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,5,0,0.98) 0%, rgba(10,5,0,0.92) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,140,0,0.2);
}
.header.scrolled .header-bg {
  background: rgba(10,5,0,0.99);
  box-shadow: 0 4px 30px rgba(255,107,0,0.2);
}
.navbar {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 90px;
  height: var(--header-h);
}
.logo {
  font-weight: 900; font-size: 1.8rem;
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.logo-ufa { width:200px; }
.logo-2x {
  color: var(--orange-1);
  text-shadow: 0 0 20px rgba(255,107,0,0.8);
}
.logo-badge {
  font-size: 0.5rem; font-weight: 600; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--orange-1), var(--gold));
  color: var(--dark); padding: 2px 6px; border-radius: 4px;
  margin-left: 4px; align-self: flex-end; margin-bottom: 4px;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; margin-left: auto;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange-3); background: rgba(255,107,0,0.1);
}
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--orange-1); border-radius: 2px;
}
.nav-cta { display: flex; gap: 8px; }
.btn-login {
  padding: 8px 18px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(255,140,0,0.4); transition: var(--transition);
}
.btn-login:hover { border-color: var(--orange-1); color: var(--orange-3); }
.btn-register {
  padding: 8px 18px; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  color: var(--white); transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}
.btn-register:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.5);
}
.menu-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer; padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: rgba(10,5,0,0.99); z-index: 999;
  padding: 20px; flex-direction: column; gap: 12px;
  border-bottom: 1px solid rgba(255,140,0,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 8px; font-weight: 600;
  border: 1px solid rgba(255,140,0,0.1); transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,107,0,0.1); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  background: linear-gradient(135deg, var(--orange-1) 0%, var(--orange-3) 100%);
  color: var(--white); border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255,107,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,0,0.55);
  background: linear-gradient(135deg, #FF7A00 0%, #FFB000 100%);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  background: transparent; color: var(--orange-3);
  border: 2px solid var(--orange-2); cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,140,0,0.1); transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,0,0.2);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius); font-weight: 600;
  background: transparent; color: var(--orange-3);
  border: 1px solid rgba(255,140,0,0.4); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,140,0,0.1); border-color: var(--orange-2); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(255,165,0,0.08) 0%, transparent 50%),
              linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  padding: var(--header-h) 0 80px;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; padding: 60px 0 40px; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  font-size: 0.9rem; font-weight: 600; color: var(--orange-3);
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange-1), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.gold-text { color: var(--gold); display: block; }
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius); padding: 20px 32px;
  backdrop-filter: blur(10px);
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-num {
  display: block; font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--orange-1), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,140,0,0.2); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  text-align: center; color: var(--text-muted); font-size: 0.8rem;
}
.scroll-arrow { animation: bounce 2s infinite; font-size: 1.2rem; color: var(--orange-2); }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- MARQUEE ---- */
.marquee-bar {
  background: linear-gradient(90deg, var(--orange-1), var(--orange-3), var(--orange-1));
  padding: 12px 0; overflow: hidden;
}
.marquee-inner {
  display: inline-block; white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-weight: 700; font-size: 0.9rem; color: var(--white); letter-spacing: 0.5px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.section-title .highlight {
  background: linear-gradient(135deg, var(--orange-1), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ---- GAMES ---- */
.games-section { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); }
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px;
}
.game-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: var(--transition); cursor: pointer;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange-2); }
.game-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.slot-bg { background: linear-gradient(135deg, #1a0a00, #3d1f00, #1a0a00); }
.baccarat-bg { background: linear-gradient(135deg, #000d1a, #003d1a, #000d1a); }
.roulette-bg { background: linear-gradient(135deg, #1a0000, #3d0d00, #1a0000); }
.sport-bg { background: linear-gradient(135deg, #001a00, #003d0d, #001a00); }
.lotto-bg { background: linear-gradient(135deg, #0d001a, #2d003d, #0d001a); }
.fish-bg { background: linear-gradient(135deg, #001a1a, #003d3d, #001a1a); }
.game-icon { z-index: 1; filter: drop-shadow(0 0 20px rgba(255,107,0,0.5)); }
.game-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.play-btn {
  padding: 10px 20px; background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; transition: var(--transition);
}
.trial-btn {
  padding: 10px 20px; border: 2px solid var(--orange-2); border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; color: var(--orange-3); transition: var(--transition);
}
.play-btn:hover { transform: scale(1.05); }
.trial-btn:hover { background: rgba(255,140,0,0.15); }
.game-info { padding: 20px; }
.game-info h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.game-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.game-tag {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-3);
}
.game-tag.hot { background: rgba(255,50,0,0.15); border-color: rgba(255,50,0,0.4); color: #FF6060; }
.game-tag.new { background: rgba(50,200,100,0.15); border-color: rgba(50,200,100,0.4); color: #60D080; }

/* ---- WHY ---- */
.why-section { background: var(--dark-2); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px;
}
.why-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: var(--transition); position: relative;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-2); }
.why-card.featured {
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,183,50,0.08));
  border-color: var(--orange-2);
  box-shadow: 0 0 40px rgba(255,107,0,0.15);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--orange-1), var(--gold));
  color: var(--dark); padding: 4px 10px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}

/* ---- PROVIDERS ---- */
.providers-section { background: var(--dark); }
.providers-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.provider-item {
  padding: 14px 28px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--card-border);
  font-weight: 700; font-size: 0.95rem; transition: var(--transition);
  cursor: default;
}
.provider-item:hover {
  background: rgba(255,107,0,0.12); border-color: var(--orange-2);
  color: var(--orange-3); transform: translateY(-3px);
}

/* ---- PROMO PREVIEW ---- */
.promo-preview { background: var(--dark-2); }
.promo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.promo-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: var(--transition); position: relative;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.promo-card.big {
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,183,50,0.08));
  border-color: var(--orange-2); box-shadow: 0 0 40px rgba(255,107,0,0.1);
}
.promo-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: rgba(255,107,0,0.2); border: 1px solid rgba(255,107,0,0.4);
  font-size: 0.75rem; font-weight: 700; color: var(--orange-3); margin-bottom: 12px;
}
.promo-badge.daily { background: rgba(50,200,100,0.15); border-color: rgba(50,200,100,0.3); color: #60D080; }
.promo-badge.weekly { background: rgba(100,150,255,0.15); border-color: rgba(100,150,255,0.3); color: #90B0FF; }
.promo-card h3 { font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; }
.promo-amount { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-muted); }
.promo-amount strong { color: var(--gold); font-size: 1.4rem; }
.promo-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---- SEO SECTION ---- */
.seo-section { background: var(--dark-3); border-top: 1px solid rgba(255,107,0,0.1); }
.seo-content {
  max-width: 900px; margin: 0 auto;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 40px;
}
.seo-content h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; color: var(--orange-3); }
.seo-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.seo-content strong { color: var(--orange-3); }
.seo-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.seo-links a {
  padding: 8px 16px; border-radius: var(--radius);
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25);
  font-size: 0.85rem; font-weight: 600; color: var(--orange-3); transition: var(--transition);
}
.seo-links a:hover { background: rgba(255,107,0,0.2); }

/* ---- ARTICLES PREVIEW ---- */
.articles-preview { background: var(--dark); }
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px;
}
.article-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: var(--transition); display: block;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-2); }
.article-img {
  height: 180px;
  background: linear-gradient(135deg, #1a0800, #3a1800);
  display: flex; align-items: center; justify-content: center;
}
.art1 { background: linear-gradient(135deg, #2a0800, #1a0500, #3a1000); }
.art2 { background: linear-gradient(135deg, #001a0a, #002d10, #001505); }
.art3 { background: linear-gradient(135deg, #1a0020, #2d0035, #0f0015); }
.article-body { padding: 24px; }
.article-cat {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  font-size: 0.75rem; font-weight: 700; color: var(--orange-3); margin-bottom: 10px;
}
.article-body h3 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; line-height: 1.5; }
.article-body p { color: var(--text-muted); font-size: 0.85rem; }

/* ---- FOOTER ---- */
.footer { background: var(--dark-2); border-top: 1px solid rgba(255,107,0,0.15); }
.footer-top { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 16px 0; line-height: 1.8; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  padding: 8px 16px; border-radius: var(--radius);
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2);
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.social-links a:hover { background: rgba(255,107,0,0.2); color: var(--orange-3); }
.footer-links h4, .footer-contact h4 {
  font-weight: 700; margin-bottom: 20px; color: var(--white);
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,107,0,0.2);
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--orange-3); padding-left: 4px; }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom {
  padding: 20px 0; border-top: 1px solid rgba(255,107,0,0.1);
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 4px; }
.footer-bottom a { color: var(--orange-3); }
.disclaimer { font-size: 0.75rem !important; opacity: 0.7; }

/* ---- PAGE SPECIFIC ---- */
/* Trial Page */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,0,0.15) 0%, transparent 60%),
              linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }

/* Filter bar */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--transition);
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  border-color: transparent; color: var(--white);
}

/* Trial games */
.trial-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 20px;
}
.trial-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--card-border); background: var(--card-bg);
  transition: var(--transition); cursor: pointer; text-align: center;
}
.trial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--orange-2); }
.trial-thumb {
  height: 150px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.trial-card-info { padding: 14px; }
.trial-card-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.trial-card-info p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.rtp-bar { height: 4px; background: rgba(255,107,0,0.15); border-radius: 2px; margin-bottom: 8px; }
.rtp-fill { height: 100%; background: linear-gradient(90deg, var(--orange-1), var(--gold)); border-radius: 2px; }
.rtp-label { font-size: 0.75rem; color: var(--orange-3); font-weight: 700; }

/* Promotion Page */
.promo-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px;
}
.promo-full-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--card-border); background: var(--card-bg);
  transition: var(--transition);
}
.promo-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo-header {
  padding: 32px; position: relative;
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,183,50,0.1));
}
.promo-body { padding: 24px; }
.promo-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.promo-body ul li { font-size: 0.9rem; color: var(--text-muted); }
.promo-body ul li::before { content: '✓ '; color: var(--orange-3); font-weight: 700; }

/* Article List Page */
.articles-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 28px;
}
.article-full-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--card-border); background: var(--card-bg);
  transition: var(--transition); display: block;
}
.article-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-2); }
.article-full-img { height: 220px; background: linear-gradient(135deg, #1a0800, #3a1000); display:flex;align-items:center;justify-content:center;font-size:4rem; }
.article-full-body { padding: 28px; }
.article-full-body h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.article-full-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.8; }
.article-meta { font-size: 0.8rem; color: var(--text-muted); display:flex;gap:12px; }

/* Article Detail */
.article-detail { max-width: 860px; margin: 0 auto; }
.article-detail-header { margin-bottom: 40px; }
.article-detail-header h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.article-detail-header .meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.article-hero-img {
  height: 300px; border-radius: var(--radius-lg); margin-bottom: 40px;
  background: linear-gradient(135deg, #2a0800, #1a0500, #3a1000);
  display:flex;align-items:center;justify-content:center;font-size:6rem;
}
.article-body-content { line-height: 1.9; }
.article-body-content h2 { font-size: 1.5rem; font-weight: 800; margin: 40px 0 16px; color: var(--orange-3); }
.article-body-content h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; }
.article-body-content p { color: var(--text-muted); margin-bottom: 20px; }
.article-body-content strong { color: var(--white); }
.article-body-content ul, .article-body-content ol {
  padding-left: 24px; margin-bottom: 20px; color: var(--text-muted);
  display:flex;flex-direction:column;gap:8px;
}
.info-box {
  background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius); padding: 24px; margin: 28px 0;
}
.info-box h4 { color: var(--orange-3); font-weight: 700; margin-bottom: 12px; }
.info-box p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Sidebar */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.sidebar { position: sticky; top: 95px; height: fit-content; }
.sidebar-widget {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.sidebar-widget h3 { font-weight: 700; margin-bottom: 16px; font-size: 1.05rem; padding-bottom: 10px; border-bottom: 1px solid rgba(255,107,0,0.2); }
.sidebar-links { display:flex;flex-direction:column;gap:8px; }
.sidebar-links a {
  padding: 10px 14px; border-radius: var(--radius);
  background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.1);
  font-size: 0.85rem; transition: var(--transition);
}
.sidebar-links a:hover { background: rgba(255,107,0,0.15); color: var(--orange-3); }
.sidebar-cta {
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,183,50,0.1));
  border-color: var(--orange-2); text-align: center;
}
.sidebar-cta h3 { color: var(--orange-3); }
.sidebar-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

/* Breadcrumb */
.breadcrumb {
  padding: calc(var(--header-h) + 20px) 0 20px;
  background: var(--dark-2);
}
.breadcrumb-inner { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--orange-3); transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--orange-1); }
.breadcrumb-inner span { color: var(--text-muted); }

/* ---- ANIMATIONS ---- */
.animate-fade-up { animation: fadeUp 0.8s ease both; }
.animate-fade-up:nth-child(2) { animation-delay: 0.15s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.45s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.6s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile{max-width:600px;}
/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid .promo-card.big { grid-column: 1/-1; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-stats { padding: 16px 30px; }
  .stat-item { padding: 0 12px; }
  .hero-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .mobile{max-width:450px;}
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .stat-divider { display: none; }
  .trial-grid { grid-template-columns: repeat(2,1fr); }
  .articles-full-grid { grid-template-columns: 1fr; }
  .mobile{max-width:340px;}
  
}

/* ═══════════════════════════════════════
   SEO UPGRADE — เพิ่มเนื้อหา + FAQ + Layout
═══════════════════════════════════════ */

/* SEO Full Content Block */
.seo-content-full {
  max-width: 980px; margin: 0 auto;
}
.seo-block {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 40px;
  margin-bottom: 24px;
}
.seo-block h2 {
  font-size: 1.55rem; font-weight: 800; color: var(--orange-3);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,140,0,0.15);
}
.seo-block p {
  color: var(--text-muted); line-height: 1.95; margin-bottom: 14px;
  font-size: 0.97rem;
}
.seo-block p:last-child { margin-bottom: 0; }
.seo-block strong { color: var(--orange-3); }
.seo-block a { color: var(--orange-2); text-decoration: underline; transition: var(--transition); }
.seo-block a:hover { color: var(--gold); }

/* Two-column SEO layout */
.seo-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px;
}
.seo-col {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 36px;
}
.seo-col h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--orange-3);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,140,0,0.15);
}
.seo-col p {
  color: var(--text-muted); line-height: 1.9; margin-bottom: 12px; font-size: 0.95rem;
}
.seo-col p:last-child { margin-bottom: 0; }
.seo-col a { color: var(--orange-2); text-decoration: underline; }
.seo-col a:hover { color: var(--gold); }

/* ═══ FAQ ACCORDION ═══ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.faq-item {
  background: rgba(255,107,0,0.04); border: 1px solid rgba(255,140,0,0.15);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255,140,0,0.35); }
.faq-item[open] {
  border-color: var(--orange-2);
  background: rgba(255,107,0,0.08);
  box-shadow: 0 4px 20px rgba(255,107,0,0.1);
}

.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 0.97rem; color: var(--white);
  user-select: none; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-3); }
.faq-item[open] summary { color: var(--orange-3); }

.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--orange-3);
  transition: var(--transition);
}
.faq-item[open] .faq-icon {
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  color: var(--white); border-color: transparent;
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 22px 20px; animation: faqSlide 0.25s ease;
}
.faq-body p {
  color: var(--text-muted); line-height: 1.9; font-size: 0.93rem; margin: 0;
}
.faq-body a { color: var(--orange-2); text-decoration: underline; }
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Internal SEO links row */
.seo-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid rgba(255,140,0,0.1);
}
.seo-links a {
  padding: 9px 18px; border-radius: var(--radius);
  background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.2);
  font-size: 0.85rem; font-weight: 600; color: var(--orange-3);
  transition: var(--transition); text-decoration: none;
}
.seo-links a:hover { background: rgba(255,107,0,0.18); border-color: var(--orange-2); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .seo-cols { grid-template-columns: 1fr; }
  .seo-block, .seo-col { padding: 24px; }
  .seo-block h2 { font-size: 1.25rem; }
  .faq-item summary { padding: 14px 16px; font-size: 0.9rem; }
  .faq-body { padding: 0 16px 16px; }
}

/* ═══════════════════════════════════════
   FIXED BOTTOM NAV BAR
═══════════════════════════════════════ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(8,4,0,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,140,0,0.25);
  padding: 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6), 0 -1px 0 rgba(255,107,0,0.15);
}
.bottom-nav-inner {
  display: flex; align-items: stretch;
  max-width: 600px; margin: 0 auto;
  height: 80px;
}
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  padding: 8px 4px; cursor: pointer;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition); position: relative;
  border: none; background: none;
}
.bottom-nav-item:hover { color: var(--orange-3); }
.bottom-nav-item.active { color: var(--orange-3); }
.bottom-nav-item.active::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%;
  height: 2px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--orange-1), var(--gold));
}
.bottom-nav-icon {
  font-size: 1.35rem; line-height: 1;
  transition: transform 0.2s ease;
}
.bottom-nav-item:hover .bottom-nav-icon { transform: translateY(-2px); }

/* CTA button in bottom nav */
.bottom-nav-item.cta-register {
  flex: 1.4;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  color: var(--white) !important;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.bottom-nav-item.cta-register:hover {
  background: linear-gradient(135deg, #ff7a00, #ffb000);
}
.bottom-nav-item.cta-register::before { display: none; }
.bottom-nav-item.cta-register .bottom-nav-icon { font-size: 1.5rem; }

/* Notification badge */
.bottom-nav-badge {
  position: absolute; top: 6px; right: calc(50% - 18px);
  background: #ff3b30; color: #fff;
  font-size: 0.6rem; font-weight: 800;
  padding: 1px 5px; border-radius: 50px;
  min-width: 16px; text-align: center; line-height: 1.4;
}

/* Push page content up so bottom nav doesn't cover it */
body { padding-bottom: 62px; }

/* ═══════════════════════════════════════
   HERO VISUAL — SLOT MACHINE GRAPHIC
═══════════════════════════════════════ */

/* Slot Machine Container */
.slot-machine {
  position: relative;
  width: 340px; height: 380px;
  flex-shrink: 0;
}
/* Glow ring */
.slot-machine::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

/* Machine body */
.machine-body {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a0c00 0%, #0d0600 50%, #1a0800 100%);
  border-radius: 24px;
  border: 2px solid rgba(255,140,0,0.35);
  box-shadow:
    0 0 0 1px rgba(255,107,0,0.1),
    0 20px 60px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,200,100,0.15);
  overflow: hidden;
}
/* Top accent bar */
.machine-body::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange-1), var(--gold), var(--orange-1));
}

/* Screen */
.machine-screen {
  position: absolute; top: 44px; left: 24px; right: 24px;
  height: 180px;
  background: linear-gradient(180deg, #080300 0%, #0f0500 100%);
  border-radius: 12px;
  border: 2px solid rgba(255,140,0,0.4);
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(255,107,0,0.08);
}
/* Screen scanline effect */
.machine-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,107,0,0.02) 4px);
  pointer-events: none;
}

/* Reel columns */
.reel-track {
  display: grid; grid-template-columns: repeat(3,1fr);
  height: 100%; gap: 2px; padding: 12px 10px;
}
.reel-col {
  display: flex; flex-direction: column;
  gap: 4px; overflow: hidden;
  border-radius: 6px;
  background: rgba(255,107,0,0.04);
}
.reel-item {
  height: 50px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; border-radius: 4px;
  animation: reelSpin 0.8s ease-in-out infinite alternate;
  flex-shrink: 0;
}
.reel-col:nth-child(1) .reel-item { animation-duration: 0.75s; }
.reel-col:nth-child(2) .reel-item { animation-duration: 0.9s; animation-delay: 0.1s; }
.reel-col:nth-child(3) .reel-item { animation-duration: 0.65s; animation-delay: 0.2s; }
@keyframes reelSpin {
  from { transform: translateY(0);    filter: brightness(1); }
  to   { transform: translateY(-4px); filter: brightness(1.3); }
}
/* Win line */
.win-line {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--orange-1) 20%, var(--gold) 50%, var(--orange-1) 80%, transparent);
  opacity: 0.7;
  animation: winPulse 1.5s ease-in-out infinite;
}
@keyframes winPulse { 0%,100% { opacity:0.4 } 50% { opacity:1 } }

/* Decorative circles */
.machine-lights {
  position: absolute; top: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.light-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-2);
  box-shadow: 0 0 6px var(--orange-1);
  animation: lightBlink 1.2s ease-in-out infinite;
}
.light-dot:nth-child(2) { animation-delay: 0.2s; }
.light-dot:nth-child(3) { animation-delay: 0.4s; background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.light-dot:nth-child(4) { animation-delay: 0.6s; }
.light-dot:nth-child(5) { animation-delay: 0.8s; }
@keyframes lightBlink { 0%,100% { opacity:0.4 } 50% { opacity:1 } }

/* Spin button */
.machine-btn {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-2), var(--orange-1) 50%, #cc5500);
  border: 3px solid rgba(255,200,100,0.4);
  box-shadow:
    0 6px 20px rgba(255,107,0,0.5),
    inset 0 2px 0 rgba(255,255,255,0.2),
    inset 0 -3px 0 rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  animation: btnPulse 2s ease-in-out infinite;
}
.machine-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 10px 30px rgba(255,107,0,0.7), inset 0 2px 0 rgba(255,255,255,0.25);
}
.machine-btn span { font-size: 2rem; }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(255,107,0,0.5), inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -3px 0 rgba(0,0,0,0.3); }
  50%      { box-shadow: 0 6px 30px rgba(255,107,0,0.8), inset 0 2px 0 rgba(255,255,255,0.25), inset 0 -3px 0 rgba(0,0,0,0.3); }
}

/* Lever */
.machine-lever {
  position: absolute; right: -22px; top: 90px;
  width: 18px; height: 120px;
}
.lever-pole {
  position: absolute; left: 7px; top: 0; bottom: 28px;
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, #cc8800, var(--gold), #cc8800);
  box-shadow: 0 0 8px rgba(255,215,0,0.4);
}
.lever-ball {
  position: absolute; bottom: 0; left: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe066, var(--gold), #cc8800);
  box-shadow: 0 3px 10px rgba(255,107,0,0.5);
  animation: leverBounce 2s ease-in-out infinite;
}
@keyframes leverBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

/* Floating coins */
.coin {
  position: absolute; font-size: 1.3rem;
  animation: coinFloat linear infinite;
  opacity: 0;
  pointer-events: none;
}
.coin:nth-child(1) { left:10%; animation-duration:3.2s; animation-delay:0s; }
.coin:nth-child(2) { left:30%; animation-duration:2.8s; animation-delay:0.7s; }
.coin:nth-child(3) { left:55%; animation-duration:3.5s; animation-delay:1.4s; }
.coin:nth-child(4) { left:75%; animation-duration:2.6s; animation-delay:0.3s; }
.coin:nth-child(5) { left:88%; animation-duration:3.0s; animation-delay:1.8s; }
@keyframes coinFloat {
  0%   { opacity:0;   transform: translateY(0)     rotate(0deg); }
  15%  { opacity:0.9; }
  85%  { opacity:0.7; }
  100% { opacity:0;   transform: translateY(-320px) rotate(360deg); }
}

/* Jackpot tag */
.jackpot-tag {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-1), var(--gold));
  color: var(--dark); padding: 5px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 900; letter-spacing: 1.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255,107,0,0.5);
  animation: tagBounce 2s ease-in-out infinite;
}
@keyframes tagBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-4px); }
}

/* ═══ RESPONSIVE HERO ═══ */
@media (max-width: 900px) {
  /* Mobile: single column, visual flows between subtitle and buttons */
  .hero .container {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
    gap: 0;
    padding-top: 16px;
    align-items: start;
  }
  /* Mobile: single col, hero-content is a flex column */
  .hero-content {
    grid-area: unset;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  /* visual leaves the grid and flows inside hero-content via flex order */
  .hero-visual {
    order: 4;          /* after badge(1) title(2) subtitle(3) */
    justify-content: center;
    margin: 0 auto;
    grid-area: unset;
  }
  .hero-badge    { order: 1;display: none; }
  .hero-title    { order: 2; }
  .hero-subtitle { order: 3; }
  .hero-buttons  { order: 5; }
  .hero-stats    { order: 6; }
  .hero-buttons { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .slot-machine { width: 280px; height: 320px; }
  .machine-screen { top: 38px; left: 18px; right: 18px; height: 150px; }
  .machine-btn { width: 68px; height: 68px; bottom: 28px; }
  .machine-btn span { font-size: 1.65rem; }
  .machine-lever { right: -16px; top: 76px; height: 105px; }
}
@media (max-width: 480px) {
  .slot-machine { width: 250px; height: 290px; }
  .machine-screen { top: 34px; left: 14px; right: 14px; }
  .reel-item { font-size: 1.5rem; height: 40px; }
  .machine-btn { width: 60px; height: 60px; bottom: 22px; }
  .machine-lever { display: none; }
  .jackpot-tag { font-size: 0.68rem; padding: 4px 14px; }
}

/* Reel spin transition */
.reel-item {
  transition: transform 0.12s ease, opacity 0.12s ease;
}
/* Bottom nav active page highlight */
.bottom-nav-item.active-page {
  color: var(--orange-3);
}

/* ═══════════════════════════════════════
   HERO LAYOUT — definitive
═══════════════════════════════════════ */

/* DESKTOP: 2-column grid */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--header-h) - 80px);
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TABLET (≤900px): stack — content top, visual bottom */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 16px;
    align-items: start;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    order: 1;
  }
  .hero-visual {
    order: 2;
    justify-content: center;
  }
  .hero-buttons { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .slot-machine { width: 280px; height: 320px; }
  .machine-screen { top: 38px; left: 18px; right: 18px; height: 150px; }
  .machine-btn { width: 68px; height: 68px; bottom: 28px; }
  .machine-btn span { font-size: 1.6rem; }
  .machine-lever { right: -16px; top: 76px; height: 105px; }
}

/* MOBILE (≤480px) */
@media (max-width: 480px) {
  .slot-machine { width: 250px; height: 290px; }
  .machine-screen { top: 34px; left: 14px; right: 14px; }
  .reel-item { font-size: 1.5rem; height: 40px; }
  .machine-btn { width: 60px; height: 60px; bottom: 22px; }
  .machine-lever { display: none; }
  .jackpot-tag { font-size: 0.68rem; padding: 4px 14px; }
  
}


/* ── Phone wrapper & float ── */
.mobile-phone-wrap {
  position: relative;
  display: inline-block;
  animation: phoneFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(255,107,0,0.3))
          drop-shadow(0 0 60px rgba(255,140,0,0.15));
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0px)   rotate(-0.8deg); }
  30%      { transform: translateY(-14px) rotate( 0.6deg); }
  60%      { transform: translateY(-20px) rotate( 1.2deg); }
  80%      { transform: translateY(-8px)  rotate(-0.4deg); }
}

/* ── Base image ── */
.mobile-phone-wrap .mobile {
  display: block;
  height: auto;
  border-radius: 28px;
  position: relative;
  z-index: 1;
}




