/* ============================================
   ROOPOKIES - Modern Premium Casino Design
   Mobile-First, Responsive, Performance-Optimized
   ============================================ */

/* CSS Variables - Color Scheme */
:root {
  --bg-main: #060714;
  --bg-section: #0e1024;
  --bg-card: #171a36;
  --accent-primary: #f5a623;
  --accent-secondary: #b24bff;
  --accent-cta: #ff4b6e;
  --text-main: #ffffff;
  --text-muted: #a0a3b1;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-glow: rgba(245, 166, 35, 0.3);
  --shadow-glow-secondary: rgba(178, 75, 255, 0.3);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Ubuntu', 'Roboto', 'Oxygen', 'Cantarell', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: rgba(14, 16, 36, 0.8);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-item:last-child {
  color: var(--accent-primary);
}

/* Inline Links */
.inline-link {
  color: var(--accent-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger-menu span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: absolute;
}

.hamburger-menu span:nth-child(1) {
  top: 12px;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  bottom: 12px;
}

.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.hamburger-menu.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.logo {
  justify-self: center;
  grid-column: 2;
}

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

.navbar-spacer {
  display: none;
}

.navbar-menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Show menu when active on all screen sizes */
.navbar-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(6, 7, 20, 0.98);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.navbar-menu.active li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-soft);
}

.navbar-menu.active li:last-child {
  border-bottom: none;
}

.navbar-menu.active li a {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1.25rem 1rem;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
}

.navbar-menu li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
  color: var(--accent-primary);
  background: rgba(245, 166, 35, 0.1);
}

/* Auth buttons removed from navbar - now in TOC section */

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-soft);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-login {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-register {
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
}

.btn-register:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-main) 100%);
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(178, 75, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-intro {
  font-size: 1.2rem !important;
  color: var(--text-main) !important;
  font-weight: 500;
  margin-bottom: 1.5rem !important;
}

.hero-intro strong {
  color: var(--accent-primary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}

.feature-card-header h3 {
  font-size: 1.2rem;
  color: var(--accent-primary);
}

.balance {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.slot-preview {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.slot-reel {
  width: 60px;
  height: 60px;
  background: var(--bg-section);
  border: 2px solid var(--border-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.spin-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-cta), #ff6b8a);
  color: var(--text-main);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 75, 110, 0.4);
}

.spin-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.spin-btn.spinning {
  background: linear-gradient(135deg, var(--accent-secondary), #9333ea);
  animation: pulse-btn 0.5s ease-in-out infinite;
}

/* Slot Reel Animations */
.slot-reel.spinning {
  animation: spin-reel 0.1s linear infinite;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px var(--shadow-glow);
}

.slot-reel.stopped {
  animation: bounce-stop 0.3s ease-out;
  border-color: var(--accent-primary);
}

.slot-reel.winner {
  animation: winner-glow 0.5s ease-in-out infinite;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

@keyframes spin-reel {
  0% { transform: scale(1) rotateX(0deg); }
  25% { transform: scale(1.05) rotateX(90deg); }
  50% { transform: scale(1) rotateX(180deg); }
  75% { transform: scale(1.05) rotateX(270deg); }
  100% { transform: scale(1) rotateX(360deg); }
}

@keyframes bounce-stop {
  0% { transform: scale(1.1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes winner-glow {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.9);
  }
}

@keyframes pulse-btn {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ============================================
   TABLE OF CONTENTS SECTION
   ============================================ */

.toc-section {
  padding: 3rem 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.toc-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.toc-navigation h3,
.toc-actions h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-weight: 600;
}

.toc-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-main);
}

.toc-link:hover,
.toc-link:focus {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  background: rgba(245, 166, 35, 0.05);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.15);
}

.toc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 8px;
}

.toc-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.toc-actions {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
}

.toc-actions p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.toc-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toc-auth-buttons .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   NEW SECTION STYLES
   ============================================ */

/* Intro Section - What Is Roopokies */
.intro-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  line-height: 1.3;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.intro-text strong {
  color: var(--accent-primary);
}

/* Games Intro Section */
.games-intro-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

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

.game-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.game-type-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2);
}

.game-type-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.game-type-card h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: var(--text-main);
  padding: 0 1rem;
}

.game-type-card p {
  color: var(--text-muted);
  padding: 0 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.games-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2rem;
}

/* Deposits Section */
.deposits-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.deposits-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.deposits-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deposit-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: start;
  transition: all 0.3s ease;
}

.deposit-feature:hover {
  transform: translateX(8px);
  border-color: var(--accent-primary);
}

.feature-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.deposit-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.deposit-feature p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.withdrawal-tips {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.withdrawal-tips h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.withdrawal-tips ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.withdrawal-tips li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  padding-left: 2rem;
  position: relative;
}

.withdrawal-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: 8px;
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-item p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.95rem;
}

.tips-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

/* Mobile Friendly Section */
.mobile-friendly-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.mobile-friendly-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mobile-friendly-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.mobile-friendly-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.mobile-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.benefit-icon {
  font-size: 1.25rem;
}

.mobile-friendly-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Transparency Box */
.transparency-box {
  background: var(--bg-card);
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.2);
}

.transparency-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.transparency-box p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.transparency-box ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.transparency-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
}

.transparency-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* Responsible Section */
.responsible-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.responsible-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.responsible-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.responsible-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.responsible-text > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.responsible-tools {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tool-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  transform: translateX(8px);
  border-color: var(--accent-secondary);
}

.tool-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tool-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.tool-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.responsible-note {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(245, 166, 35, 0.1);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
}

/* Home Screen Guide */
.home-screen-guide {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.home-screen-guide h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.home-screen-guide > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.guide-step {
  padding: 1.5rem;
  background: var(--bg-section);
  border-radius: 8px;
}

.guide-step h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.guide-step ol {
  list-style: decimal;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.guide-step li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.guide-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.guide-note strong {
  color: var(--text-main);
}

/* Login Content */
.login-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.login-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.login-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.login-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.login-card ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.login-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
}

.login-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.login-troubleshooting {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.login-troubleshooting h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.login-troubleshooting p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.login-troubleshooting ul {
  list-style: none;
  padding-left: 0;
}

.login-troubleshooting li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}

.login-troubleshooting li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 1.5rem;
  line-height: 1;
}

/* Banking Content */
.banking-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.banking-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.banking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.banking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.banking-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.banking-card ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.banking-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
}

.banking-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.banking-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 1rem;
}

.banking-tips {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.banking-tips h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

/* Support When */
.support-when {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.support-when h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.support-when p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.response-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.response-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.response-info p {
  color: var(--text-muted);
  margin: 0;
}

/* Promo Banner Section */
.promo-banner-section {
  padding: 3rem 0;
}

.promo-banner {
  border-radius: 12px;
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Final Thoughts Section */
.final-thoughts-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.final-thoughts-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-thoughts-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--text-main), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-thoughts-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1.1rem;
  text-align: justify;
  text-align-last: center;
}

.final-cta {
  margin-top: 3rem;
}

.final-cta .btn {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-main), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
  text-align-last: center;
}

/* Why Section */
.why-section {
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

/* Safety Section */
.safety-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.safety-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.safety-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.safety-highlight {
  background: var(--bg-card);
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.2);
}

.safety-highlight p {
  margin: 0;
  color: var(--text-main);
  font-size: 1.05rem;
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.safety-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.safety-feature-card:hover {
  transform: translateX(8px);
  border-color: var(--accent-secondary);
  box-shadow: 0 8px 24px rgba(178, 75, 255, 0.2);
}

.safety-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.safety-feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.safety-feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Bonuses Section */
.bonuses-section {
  background: var(--bg-section);
}

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

.bonus-perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.bonus-perk-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2);
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-perk-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.bonus-perk-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.bonus-link {
  color: var(--accent-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.bonus-link:hover {
  color: var(--accent-secondary);
  transform: translateX(4px);
}

.bonus-carousel-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.bonus-carousel {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.bonus-carousel-track a {
  flex-shrink: 0;
  width: 100%;
  display: block;
}

.bonus-carousel-track img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.bonus-banner {
  width: 100%;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: contain;
}

/* Mobile Section */
.mobile-section {
  background: var(--bg-section);
}

.mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mobile-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.mobile-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.phone-screen {
  width: 280px;
  height: 560px;
  background: var(--bg-card);
  border: 8px solid var(--bg-section);
  border-radius: 30px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-header {
  height: 30px;
  position: relative;
  margin-bottom: 1rem;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: var(--bg-section);
  border-radius: 0 0 15px 15px;
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phone-logo {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  padding: 1rem;
}

.phone-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.phone-game-item {
  aspect-ratio: 1;
  background: var(--bg-section);
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.phone-game-item.loading {
  animation: phone-item-pulse 0.5s ease-in-out infinite;
  border-color: var(--accent-primary);
}

.phone-game-item.loaded {
  animation: phone-item-pop 0.3s ease-out;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.4);
}

@keyframes phone-item-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes phone-item-pop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.phone-play-btn {
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.phone-play-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.phone-play-btn.loading {
  background: linear-gradient(135deg, var(--accent-secondary), #7c3aed);
  animation: btn-loading 0.6s ease-in-out infinite;
}

.phone-play-btn.ready {
  background: linear-gradient(135deg, #10b981, #059669);
  animation: btn-ready 0.5s ease-out;
}

@keyframes btn-loading {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes btn-ready {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.work-step span {
  color: var(--text-main);
  font-weight: 500;
}

/* Login Section */
.login-section {
  background: var(--bg-section);
}

.login-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.login-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.login-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.login-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-help {
  color: var(--accent-primary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.login-help:hover {
  color: var(--accent-secondary);
}

/* Banking Section */
.banking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.banking-step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.banking-step:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.banking-step h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.banking-step p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Support Section */
.support-section {
  background: var(--bg-section);
}

.support-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.support-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.support-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.support-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.support-method {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.support-method:hover {
  transform: translateX(8px);
  border-color: var(--accent-primary);
}

.method-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.support-method h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.support-method p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.quick-help {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.quick-help h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.help-list {
  list-style: none;
}

.help-list li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  padding-left: 1.5rem;
}

.help-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.help-list li:last-child {
  border-bottom: none;
}

/* Games Section */
.games-section {
  background: var(--bg-section);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2);
}

.game-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.game-card h4 {
  padding: 1.5rem;
  font-size: 1.3rem;
  color: var(--text-main);
  margin: 0;
}

/* About Banner */
.about-banner-section {
  padding: 3rem 0;
}

.about-banner {
  border-radius: 12px;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-section);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-item summary {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.age-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-cta), #ff6b8a);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gamble-responsibly {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }

  .safety-content,
  .mobile-content,
  .support-content,
  .intro-content,
  .mobile-friendly-content,
  .responsible-content,
  .deposits-content,
  .login-content,
  .banking-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bonus-carousel-section {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }

  .withdrawal-tips,
  .login-troubleshooting,
  .banking-tips {
    position: static;
  }
}

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

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    max-height: 100vh;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    display: flex !important;
    list-style: none;
    margin: 0;
  }

  .navbar-menu.active {
    transform: translateX(0);
    display: flex !important;
  }

  .navbar-menu li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }

  .toc-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .toc-actions {
    position: static;
  }

  .toc-links {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

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

  .navbar {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .toc-section {
    padding: 2rem 0;
  }

  .toc-links {
    grid-template-columns: 1fr;
  }

  .toc-link {
    padding: 1.25rem;
  }

  .toc-actions {
    padding: 1.5rem;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    max-height: 100vh;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  }

  .navbar-menu.active {
    transform: translateX(0);
    display: flex;
  }

  .navbar-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu li a {
    display: block;
    padding: 1.25rem 1rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3rem;
  }

  .navbar-menu li a::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }

  .navbar-menu li a:hover,
  .navbar-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(245, 166, 35, 0.05);
    padding-left: 3.5rem;
  }

  .navbar-menu li a:hover::before,
  .navbar-menu li a:focus::before {
    opacity: 1;
    transform: translateX(0);
  }

  /* Auth buttons removed from mobile menu - now in TOC section */

  .hero {
    padding: 3rem 0 4rem;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .why-grid,
  .bonuses-grid,
  .banking-steps,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .phone-screen {
    width: 240px;
    height: 480px;
  }

  .login-card {
    padding: 2rem;
  }

  .login-buttons {
    flex-direction: column;
  }

  .login-buttons .btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 3rem 0;
  }

  .why-card,
  .bonus-perk-card,
  .banking-step {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .login-card {
    padding: 1.5rem;
  }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Optimize images */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer {
    display: none;
  }
}
