/* ============================================================
   Royal X Casino — Premium Dark Theme
   Mobile-First Responsive CSS Architecture
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-main: #0B0117;
  --bg-card: #150A26;
  --bg-elevated: #28114A;
  
  --gold-primary: #FFD700;
  --gold-dark: #FFB800;
  --gold-light: #FFF0A8;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFB800 100%);
  
  --text-main: #FFFFFF;
  --text-muted: #A19BAD;
  
  --border-color: rgba(255, 215, 0, 0.15);
  --border-glow: rgba(255, 215, 0, 0.4);

  /* Status Colors */
  --success: #00E676;
  --danger: #FF3D00;
  --info: #00B0FF;

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --container-pad: 20px;
  --container-max: 1200px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 36px;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows - Optimized for Mobile */
  --shadow-gold: 0 4px 10px rgba(255, 215, 0, 0.15);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(40, 17, 74, 0.7) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(40, 17, 74, 0.5) 0%, transparent 50%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  text-shadow: 0 0 8px var(--border-glow);
}

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p { margin-bottom: 16px; }

/* Containers */
.rx-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Utilities */
.gold-text { color: var(--gold-primary); }
.green-text { color: var(--success); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0B0117;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
  color: #000;
  text-shadow: none;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}
.btn-gold-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-solid-blue {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-solid-blue:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* pulse-anim moved to desktop media query to save mobile performance */
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* ============================================================
   HEADER / NAVIGATION (Mobile First)
   ============================================================ */
.rx-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(11, 1, 23, 0.98); /* Solid background for smooth mobile scrolling */
  border-bottom: 0.5px solid var(--border-color);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #fff;
  font-weight: 500;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Navigation Links */
.rx-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.35s ease;
  z-index: 1000;
  overflow-y: auto;
}
.rx-nav.open { right: 0; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-links a {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 500;
}
.nav-links a.active, .nav-links a:hover {
  color: var(--gold-primary);
}

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-overlay.show {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
body.no-scroll { overflow: hidden; }

/* ============================================================
   HERO SECTION
   ============================================================ */
main { padding-top: 65px; } /* offset header */

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--bg-main);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 1, 23, 0.4), var(--bg-main));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-subtitle {
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  font-weight: 800;
  line-height: 1;
}

.hero-desc {
  color: var(--text-muted);
  max-width: 500px;
  font-size: 0.95rem;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section {
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.02);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-subtitle {
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   NEW SEO CONTENT STYLES
   ============================================================ */
.content-box {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
  border: none;
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.content-box h3 {
  color: var(--gold-primary);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.content-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Styled Table */
.styled-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
.styled-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.styled-table tr:last-child {
  border-bottom: none;
}
.styled-table td {
  padding: 12px 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  word-break: break-word; /* Allows text to break on tight 320px screens */
}
.styled-table td:first-child {
  font-weight: 600;
  color: var(--gold-light);
  width: 45%;
  background: rgba(255,255,255,0.02);
}

/* Feature & Detail Grids */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  position: relative;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; width: 40px; height: 1px;
  background: var(--gold-primary);
  transition: var(--transition);
}
.feature-box:hover {
  background: rgba(255, 215, 0, 0.04);
  transform: translateY(-2px);
}
.feature-box:hover::before {
  width: 100%;
}
.feature-box h4 {
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-box h4::before {
  content: '✦';
  color: var(--gold-dark);
}
.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Premium Feature List (replaces boxes for a cleaner look) */
.premium-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-radius: 8px;
}
.pf-item:hover {
  background: rgba(255, 215, 0, 0.03);
  border-bottom-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(5px);
}
.pf-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}
.pf-item:hover .pf-icon {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.1) rotate(5deg);
}
.pf-content h4 {
  margin: 0 0 4px 0;
  color: var(--gold-light);
  font-size: 1.1rem;
}
.pf-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Guides / Ordered Lists */
.guide-list {
  counter-reset: custom-counter;
  list-style: none;
  padding: 0;
}
.guide-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.guide-list li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Tips List */
.tips-list {
  list-style: none;
  padding: 0;
}
.tips-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.tips-list li::before {
  content: '🛡️';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
}

/* Pros and Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pc-card {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
}
.pc-card.pros {
  background: linear-gradient(90deg, rgba(0, 230, 118, 0.08) 0%, transparent 100%);
  border: none;
  border-left: 3px solid var(--success);
}
.pc-card.cons {
  background: linear-gradient(90deg, rgba(255, 61, 0, 0.08) 0%, transparent 100%);
  border: none;
  border-left: 3px solid var(--danger);
}
.pc-card h4 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.pc-card.pros h4 { color: var(--success); }
.pc-card.cons h4 { color: var(--danger); }
.pc-list {
  list-style: none;
}
.pc-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.pc-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}
.pc-card.pros .pc-list li::before { content: '✅'; }
.pc-card.cons .pc-list li::before { content: '❌'; }

/* Updated Features Tags */
.update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.update-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.update-tags span::before {
  content: '✨';
}

/* ============================================================
   ANALYTICS SECTION
   ============================================================ */
.analytics-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold-gradient); }
.stat-info { display: flex; flex-direction: column; gap: 4px; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.stat-value { font-size: 1.4rem; font-family: var(--font-heading); display: flex; align-items: center; gap: 8px; }

.trend { font-size: 0.7rem; font-family: var(--font-body); padding: 2px 6px; border-radius: 4px; }
.trend.up { background: rgba(0, 230, 118, 0.1); color: var(--success); }
.trend.down { background: rgba(255, 61, 0, 0.1); color: var(--danger); }

.live-status-bar { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ============================================================
   GAMES SECTION
   ============================================================ */
/* Carousel Pagination Utilities (Minimal) */
.carousel-dots { display: flex; gap: 8px; align-items: center; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--gold-primary); transform: scale(1.5); }


/* ============================================================
   LATEST WINNERS
   ============================================================ */
.winners-carousel { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.winner-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  padding: 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; position: relative; overflow: hidden;
}
.winner-card.main-winner { background: linear-gradient(to right, rgba(255, 215, 0, 0.1), rgba(255,255,255,0.02)); border-color: var(--gold-primary); }
.winner-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold-primary); border: 1px solid rgba(255,215,0,0.3); }
.winner-name { font-size: 1rem; color: #fff; margin-bottom: 2px; }
.winner-game { font-size: 0.75rem; color: var(--text-muted); }
.winner-amount { font-family: var(--font-heading); font-size: 1.1rem; display: block; }
.winner-time { font-size: 0.7rem; color: var(--text-muted); display: block; text-align: right; margin-top: 4px; }
.winner-badge { display: none; } /* Mobile hide */


/* ============================================================
   HOW TO PLAY
   ============================================================ */
.steps-grid { display: flex; flex-direction: column; gap: 20px; position: relative; }
.step-card { background: var(--bg-card); padding: 30px 20px; border-radius: var(--radius-md); text-align: center; border: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 2; }
.step-icon { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 1px solid var(--border-color); position: relative; color: #fff; }
.step-num { position: absolute; top: -5px; right: -5px; background: var(--gold-gradient); color: #000; width: 22px; height: 22px; border-radius: 50%; font-size: 0.65rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--gold-primary); }
.step-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }
.step-connector { width: 2px; height: 30px; background: rgba(255,215,0,0.3); margin: 0 auto; }

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.modern-pay-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 1;
}

.modern-pay-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.card-bg-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.modern-pay-card:hover .card-bg-glow {
  opacity: 1;
}

.easypaisa-card:hover {
  border-color: #00C853;
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.15);
}
.easypaisa-card .card-bg-glow {
  background: radial-gradient(circle at center, rgba(0, 200, 83, 0.1) 0%, transparent 60%);
}

.jazzcash-card:hover {
  border-color: #E20000;
  box-shadow: 0 10px 30px rgba(226, 0, 0, 0.15);
}
.jazzcash-card .card-bg-glow {
  background: radial-gradient(circle at center, rgba(226, 0, 0, 0.1) 0%, transparent 60%);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pay-logo {
  height: 40px;
  width: 150px;
}
.pay-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pay-badge {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.easypaisa-card .pay-badge {
  background: rgba(0, 200, 83, 0.1);
  color: #00C853;
  border-color: rgba(0, 200, 83, 0.3);
}

.jazzcash-card .pay-badge {
  background: rgba(226, 0, 0, 0.1);
  color: #ff6b6b;
  border-color: rgba(226, 0, 0, 0.3);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pay-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pay-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pay-name {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.pay-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.modern-pay-card:hover .pay-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(-10deg);
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ratings-overview { text-align: center; margin-bottom: 30px; }
.main-rating strong { font-size: 3rem; color: var(--gold-primary); font-family: var(--font-heading); display: block; line-height: 1; margin-bottom: 4px; }
.main-rating .stars { color: var(--gold-primary); font-size: 1.2rem; margin-bottom: 4px; }
.main-rating span { font-size: 0.8rem; color: var(--text-muted); }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: rgba(255,255,255,0.02); border: none; border-left: 2px solid rgba(255,215,0,0.3); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; transition: var(--transition); }
.review-card:hover { border-left-color: var(--gold-primary); background: rgba(255,215,0,0.03); transform: translateX(4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--gold-primary); }
.rev-meta h4 { font-family: var(--font-body); font-size: 1rem; color: #fff; margin:0; }
.rev-meta span { font-size: 0.7rem; color: var(--success); }
.review-card .stars { color: var(--gold-primary); font-size: 1rem; margin-bottom: 12px; }
.review-card h5 { font-family: var(--font-body); font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.review-card p { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.faq-filters button { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.8rem; cursor:pointer; }
.faq-filters button.active { border-color: var(--gold-primary); color: var(--gold-primary); }

.faq-accordion { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.faq-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); }
.faq-item summary { padding: 16px 20px; font-weight: 600; font-size: 0.9rem; cursor: pointer; color: #fff; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold-primary); font-size: 1.5rem; transition: 0.3s; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--gold-primary); }
.faq-body { padding: 16px 20px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.faq-support { text-align: center; margin-top: 30px; padding: 24px; background: rgba(255,215,0,0.03); border-radius: var(--radius-md); border: 1px dashed rgba(255,215,0,0.2); }
.faq-support p { font-size: 0.85rem; margin-bottom: 16px; color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.rx-footer { background: #06000D; padding: 60px 0 20px; border-top: 1px solid rgba(255,215,0,0.1); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }

.brand-col .logo { font-size: 1.6rem; margin-bottom: 16px; }
.brand-col p { font-size: 0.85rem; color: var(--text-muted); }

.links-col h4, .download-col h4 { font-family: var(--font-body); font-size: 0.9rem; color: #fff; margin-bottom: 16px; letter-spacing: 1px; }
.links-col a { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.links-col a:hover { color: var(--gold-primary); padding-left: 4px; }

.app-btn { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 12px; transition: 0.3s; }
.app-btn:hover { background: rgba(255,215,0,0.1); border-color: var(--gold-primary); }
.app-btn .icon { font-size: 1.5rem; }
.app-btn span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.2; }
.app-btn strong { color: #fff; font-size: 0.9rem; display: block; }

.footer-newsletter { background: var(--bg-card); border: 1px solid rgba(255,215,0,0.2); border-radius: var(--radius-lg); padding: 30px 20px; display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.nl-text h4 { font-size: 1.1rem; color: var(--gold-primary); margin-bottom: 4px; }
.nl-text p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }
.nl-form { display: flex; width: 100%; border-radius: var(--radius-full); overflow: hidden; background: #000; padding: 4px; border: 1px solid rgba(255,255,255,0.1); }
.nl-form input { flex: 1; background: transparent; border: none; padding: 10px 16px; color: #fff; outline: none; font-size: 0.85rem; }
.nl-form .btn { padding: 10px 20px; font-size: 0.85rem; }

.footer-bottom { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #fff; }
.social-links a:hover { background: var(--gold-primary); color: #000; }

/* ============================================================
   ARCHIVES (APKs, Softwares, Blog)
   ============================================================ */
.page-header {
  padding: 40px 0 20px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.search-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto 30px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 6px;
}
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  padding: 10px 20px;
  font-family: var(--font-body);
}
.search-bar button {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.search-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: var(--transition);
}
.filter-pill.active, .filter-pill:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.app-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.app-card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.app-card-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.app-card-name a {
  color: var(--gold-primary);
}
.app-card-dev {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.app-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.app-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.featured-badge {
  background: var(--success);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.6rem;
  margin-left: 8px;
  font-weight: bold;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.blog-card-body h3 a {
  color: var(--gold-primary);
}
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}
.pagination a {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-main);
  transition: var(--transition);
}
.pagination a:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}
.current-page {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.placeholder-img, .placeholder-icon {
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: bold;
}
.placeholder-img { height: 180px; width: 100%; border-bottom: 1px solid var(--border-color); }
.placeholder-icon { width: 50px; height: 50px; border-radius: 12px; border: 1px solid var(--border-color); font-size: 0.75rem; }

/* ============================================================
   AUTH FORMS (LOGIN / REGISTER)
   ============================================================ */
.form-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 400px);
  padding: 60px var(--container-pad);
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-card);
}
.form-card h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--gold-primary);
}
.auth-form table {
  width: 100%;
  margin-bottom: 24px;
}
.auth-form th {
  text-align: left;
  padding-bottom: 8px;
}
.auth-form label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
}
.auth-form input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}
.form-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-footer a {
  color: var(--gold-primary);
  font-weight: 600;
}
.form-footer a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE (Tablet / Desktop)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  
  .pulse-anim { animation: pulseGold 2s infinite; }

  .rx-header {
    background: rgba(11, 1, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .styled-table td { padding: 16px 24px; font-size: 0.95rem; }

  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-heading h2 { font-size: 2.2rem; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .premium-feature-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
  
  .analytics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  
  .winners-carousel { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .winner-card { width: calc(50% - 8px); grid-template-columns: auto 1fr auto; }
  
  .steps-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .step-card { width: calc(50% - 10px); }
  .step-connector { display: none; }

  .payment-grid.updated-payment-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-newsletter { flex-direction: row; align-items: center; justify-content: space-between; padding: 30px; }
  .nl-form { max-width: 400px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .btn-gold:hover { transform: translateY(-3px); }
  
  .menu-toggle { display: none; }
  .rx-header { padding: 16px 0; }
  .rx-nav { position: static; display: flex; flex-direction: row; align-items: center; justify-content: flex-end; width: auto; height: auto; background: transparent; border: none; padding: 0; overflow: visible; gap: 32px; }
  .nav-links { flex-direction: row; gap: 24px; }
  .nav-links a { font-size: 0.9rem; }
  .nav-actions { flex-direction: row; padding: 0; border: none; align-items: center; }

  .hero-section { min-height: 90vh; padding: 100px 0; }
  .hero-title { font-size: 2.5rem; max-width: 900px; }
  
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .premium-feature-list { grid-template-columns: repeat(2, 1fr); }

  .analytics-grid { grid-template-columns: repeat(4, 1fr); }
  
  .winners-carousel { display: grid; grid-template-columns: repeat(4, 1fr); }
  .winner-card { width: 100%; display: flex; flex-direction: column; text-align: center; }
  .winner-avatar { margin: 0 auto 8px; width: 60px; height: 60px; font-size: 1.2rem; }
  .winner-time { text-align: center; margin-top: 8px; }
  .winner-badge { display: block; position: absolute; top: -10px; right: -10px; background: var(--gold-primary); color: #000; font-size: 0.6rem; padding: 4px 8px; border-radius: 4px; transform: rotate(15deg); font-weight: bold; }
  .winners-summary { flex-direction: row; justify-content: space-around; padding: 30px; }

  .steps-grid { flex-wrap: nowrap; align-items: flex-start; }
  .step-card { width: 100%; }
  .step-connector { display: block; width: 50px; height: 2px; margin: 50px 0 0 0; flex-shrink: 0; }
  
  .payment-grid.updated-payment-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .faq-accordion { max-width: 800px; margin: 0 auto; }
  
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
}

/* ============================================================
   PREMIUM AUTH PAGES — CENTERED CARD
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}
.pagination a {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-main);
  transition: var(--transition);
}
.pagination a:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}
.current-page {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.placeholder-img, .placeholder-icon {
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: bold;
}
.placeholder-img { height: 180px; width: 100%; border-bottom: 1px solid var(--border-color); }
.placeholder-icon { width: 50px; height: 50px; border-radius: 12px; border: 1px solid var(--border-color); font-size: 0.75rem; }

/* ============================================================
   AUTH FORMS (LOGIN / REGISTER)
   ============================================================ */
.form-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 400px);
  padding: 60px var(--container-pad);
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-card);
}
.form-card h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--gold-primary);
}
.auth-form table {
  width: 100%;
  margin-bottom: 24px;
}
.auth-form th {
  text-align: left;
  padding-bottom: 8px;
}
.auth-form label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
}
.auth-form input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}
.form-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-footer a {
  color: var(--gold-primary);
  font-weight: 600;
}
.form-footer a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE (Tablet / Desktop)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  
  .pulse-anim { animation: pulseGold 2s infinite; }

  .rx-header {
    background: rgba(11, 1, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .styled-table td { padding: 16px 24px; font-size: 0.95rem; }

  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-heading h2 { font-size: 2.2rem; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .premium-feature-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
  
  .analytics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  
  .winners-carousel { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .winner-card { width: calc(50% - 8px); grid-template-columns: auto 1fr auto; }
  
  .steps-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .step-card { width: calc(50% - 10px); }
  .step-connector { display: none; }

  .payment-grid.updated-payment-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-newsletter { flex-direction: row; align-items: center; justify-content: space-between; padding: 30px; }
  .nl-form { max-width: 400px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .btn-gold:hover { transform: translateY(-3px); }
  
  .menu-toggle { display: none; }
  .rx-header { padding: 16px 0; }
  .rx-nav { position: static; display: flex; flex-direction: row; align-items: center; justify-content: flex-end; width: auto; height: auto; background: transparent; border: none; padding: 0; overflow: visible; gap: 32px; }
  .nav-links { flex-direction: row; gap: 24px; }
  .nav-links a { font-size: 0.9rem; }
  .nav-actions { flex-direction: row; padding: 0; border: none; align-items: center; }

  .hero-section { min-height: 90vh; padding: 100px 0; }
  .hero-title { font-size: 2.5rem; max-width: 900px; }
  
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .premium-feature-list { grid-template-columns: repeat(2, 1fr); }

  .analytics-grid { grid-template-columns: repeat(4, 1fr); }
  
  .winners-carousel { display: grid; grid-template-columns: repeat(4, 1fr); }
  .winner-card { width: 100%; display: flex; flex-direction: column; text-align: center; }
  .winner-avatar { margin: 0 auto 8px; width: 60px; height: 60px; font-size: 1.2rem; }
  .winner-time { text-align: center; margin-top: 8px; }
  .winner-badge { display: block; position: absolute; top: -10px; right: -10px; background: var(--gold-primary); color: #000; font-size: 0.6rem; padding: 4px 8px; border-radius: 4px; transform: rotate(15deg); font-weight: bold; }
  .winners-summary { flex-direction: row; justify-content: space-around; padding: 30px; }

  .steps-grid { flex-wrap: nowrap; align-items: flex-start; }
  .step-card { width: 100%; }
  .step-connector { display: block; width: 50px; height: 2px; margin: 50px 0 0 0; flex-shrink: 0; }
  
  .payment-grid.updated-payment-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .faq-accordion { max-width: 800px; margin: 0 auto; }
  
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
}

/* ============================================================
   PREMIUM AUTH PAGES — CENTERED CARD
   ============================================================ */

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px); /* Adjust for header */
  padding: 40px var(--container-pad);
  background: radial-gradient(circle at center, rgba(40, 17, 74, 0.4) 0%, transparent 70%);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(21, 10, 38, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              0 0 15px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: cardScaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cardScaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold-gradient);
}

.auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.auth-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Custom Field Styling for Premium Feel */
.auth-field-row {
  margin-bottom: 20px;
}

.auth-field-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  padding-left: 2px;
}

.auth-field-row input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.auth-field-row input::placeholder {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.auth-field-row input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

.auth-action-btn {
  width: 100%;
  margin-top: 5px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--gold-primary);
  font-weight: 700;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

/* Status Icons */
.auth-status-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  color: var(--gold-primary);
}

/* Responsive Overrides */
@media (max-width: 480px) {
  .auth-card {
    padding: 30px 20px;
    border-radius: var(--radius-md);
  }
}

/* Global Responsive Fixes */
html, body {
  overflow-x: hidden;
  width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* End of style.css */
