@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&family=Cinzel:wght@600;700&display=swap');

:root {
  --bg-dark: #050608;
  --bg-card: rgba(17, 20, 29, 0.4);
  --bg-card-hover: rgba(25, 30, 45, 0.6);
  --primary: #3b82f6; 
  --accent: #d4af37;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --nav-gold: #d4af37;
  --nav-gold-bright: #f0d078;
  --gold-gradient: linear-gradient(90deg, #d4af37, #f0d078, #d4af37);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.3px;
  padding-top: 70px; /* Space for fixed navbar */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #ffffff;
}

p {
  color: var(--text-muted);
  font-size: 14px;
}

label {
  font-size: 13px;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark); 
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15); 
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 83, 0.5); 
}

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

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

/* =============================================
   NAVBAR — Cinematic AAA Game Interface
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.9rem 0;
  z-index: 2000;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: 
    linear-gradient(rgba(12, 15, 20, 0.8), rgba(5, 6, 8, 0.7)),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  transform: translateZ(0);
  will-change: transform;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  color: #ffcc00; /* Bright yellow/gold from screenshot */
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-center .nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-center .nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-center .nav-links a:hover {
  color: #ffcc00;
}

.btn-discord-nav {
  background: #5865f2;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-main);
  flex-shrink: 0;
}

.logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldReflex 3s infinite linear;
  background-size: 200% auto;
}

@keyframes goldReflex {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nav-gold);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.4);
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--nav-gold);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--nav-gold-bright);
  text-shadow: 0 0 10px rgba(212, 168, 83, 0.5);
}

/* Underline Effect */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nav-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Premium Buttons */
.btn-discord {
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--nav-gold);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-discord:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown Support */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8, 10, 15, 0.98);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 8px;
  min-width: 280px;
  padding: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: none;
}

.nav-dropdown-item:hover {
  background: rgba(212, 168, 83, 0.1);
}

.nav-dropdown-item i {
  font-size: 1.2rem;
  color: var(--nav-gold);
}

.nav-dropdown-item div strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.nav-dropdown-item div span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

/* HERO SECTION */
.hero-cinematic {
  background-size: cover;
  background-position: center bottom; /* Focus more on the ground/characters */
  background-repeat: no-repeat;
  /* Enhance the image itself */
  filter: brightness(0.85) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Multi-stop cinematic gradient: 
     - Dark at top for navbar
     - Clearer in middle for visual impact
     - Darker at bottom for transition to content
  */
  background: linear-gradient(
    to bottom, 
    rgba(5, 6, 8, 0.9) 0%, 
    rgba(5, 6, 8, 0.2) 20%, 
    rgba(5, 6, 8, 0) 50%, 
    rgba(5, 6, 8, 0.4) 80%, 
    rgba(5, 6, 8, 1) 100%
  );
  z-index: 2;
}

/* Subtle focus effect / Peripheral dimming */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%, 
    transparent 0%, 
    rgba(0, 0, 0, 0.2) 60%, 
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 1.5rem;
  margin-top: 5rem; /* Space for navbar */
}

.hero-text-wrapper {
  max-width: 700px;
  text-align: left;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
  animation: titleGlow 5s ease-in-out infinite alternate;
  line-height: 1;
}

@keyframes titleGlow {
  from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.15)); text-shadow: 0 0 5px rgba(255, 215, 0, 0.1); }
  to { filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.45)); text-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-left: 3px solid var(--nav-gold);
  padding-left: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Premium Hero Buttons */
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stats-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding-bottom: 4rem;
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 768px) {
  .hero-cinematic { height: 70vh; min-height: 400px; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .stats-section { margin-top: -30px; }
}

.high-demand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #ff7a18, #ff3c00);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--glow-primary);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--glow-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* PAYMENT METHODS SECTION */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--glow-primary);
}

.payment-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.payment-card h3 svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1rem;
  background: rgba(17, 20, 29, 0.5);
  border-radius: 8px;
  transition: var(--transition);
}

.payment-method:hover {
  background: rgba(37, 99, 235, 0.15);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--glow-primary);
  border-color: var(--primary);
}

.payment-method svg,
.payment-method img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.payment-method span {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
}

/* PAGE SECTION */
.page-section {
  padding: 5rem 0;
}

/* CARDS */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .games-grid { grid-template-columns: 1fr; }
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px var(--glow-primary);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center center;
  opacity: 0.9;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s, transform 0.8s ease;
  z-index: 1;
}

/* Specific fix for Throne and Liberty framing if needed */
.game-card-img img[alt*="Throne and Liberty"] {
  object-fit: cover;
  object-position: top center;
}

.game-card:hover .game-card-img img {
  filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  opacity: 1;
  transform: scale(1.05);
}

.game-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.game-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* PRICE SECTION TITLE */
.price-section-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nav-gold);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-shadow: 0 0 8px var(--nav-gold-glow);
}

/* PRICE LIST */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 0.2rem 0;
}

.price-label {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 58%;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.price-value {
  font-family: 'Courier New', monospace;
  color: #e8c547;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.price-unit {
  color: var(--text-muted);
  font-weight: 400;
}

.price-skeleton {
  height: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

.price-error {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.wa-contact {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Selects row — side by side on desktop */
.wa-selects-row {
  display: flex;
  gap: 0.5rem;
}

.wa-selects-row .wa-select-field {
  flex: 1;
  min-width: 0;
}

.wa-select-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.wa-select-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding-left: 2px;
}

.wa-amount-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.wa-amount-input::placeholder,
.wa-server-input::placeholder {
  color: var(--text-muted);
}

.wa-amount-input:focus,
.wa-server-input:focus {
  border-color: var(--primary);
}

.wa-server-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.wa-server-select,
.wa-faction-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.wa-server-select option,
.wa-faction-select option {
  background: #1a1e2b;
  color: var(--text-primary);
}

.wa-server-select:focus,
.wa-faction-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.wa-server-select:hover,
.wa-faction-select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .wa-selects-row {
    flex-direction: column;
  }
}

.input-error {
  border-color: #e53e3e !important;
  animation: shake 0.25s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

.price-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.price-wa-btn:hover {
  background: #1ebe5d;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* FLOATING WIDGETS COLUMN (RIGHT) */
.floating-widgets {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1100;
  padding: 0;
  pointer-events: none; /* Allow clicks through empty space */
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  pointer-events: auto;
  opacity: 0;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.float-btn:nth-child(1) { animation-delay: 0.1s; }
.float-btn:nth-child(2) { animation-delay: 0.2s; }
.float-btn:nth-child(3) { animation-delay: 0.3s; }
.float-btn:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Tooltips */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 15px);
  background: rgba(10, 12, 18, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.float-btn:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.float-btn:hover {
  transform: scale(1.15) rotate(8deg);
  filter: brightness(1.2);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.btn-facebook {
  background: #1877F2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

.btn-facebook:hover {
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.6);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.4);
}

.btn-instagram:hover {
  box-shadow: 0 0 30px rgba(220, 39, 67, 0.6);
}

.btn-discord-float {
  background: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, discordBreath 3s infinite ease-in-out;
}

@keyframes discordBreath {
  0% { box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }
  50% { box-shadow: 0 0 30px rgba(88, 101, 242, 0.8); }
  100% { box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }
}

.social-icon {
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}


/* CHAT WIDGET INTERNAL */
.chat-window {
  position: fixed;
  bottom: 6rem;
  right: 6rem;
  width: 350px;
  height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  padding: 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.chat-status {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.chat-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.chat-close:hover {
  color: white;
}

.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.chat-message.bot {
  align-self: flex-start;
  background: #1a1e2b;
  border-bottom-left-radius: 2px;
}

.chat-message.user {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 2px;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
}

.chat-input input {
  flex: 1;
  background: #1a1e2b;
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  color: white;
  outline: none;
  font-family: var(--font-body);
}

.chat-input input:focus {
  border-color: var(--primary);
}

.chat-input button {
  background: var(--primary);
  border: none;
  color: white;
  width: 45px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chat-input button:hover {
  background: var(--primary-hover);
}

/* FOOTER */
.footer {
  background: #050608;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FORMULARIOS (LOGIN/REGISTRO) */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #1a1e2b;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: white;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 500;
}

/* SCROLL FADE ANIMATIONS */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CAROUSEL SLIDER */
.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 2.5 / 1;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  visibility: hidden;
  background: var(--bg-card);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.carousel-img-pane {
  flex: 1;
  position: relative;
  background: radial-gradient(circle, var(--bg-card-hover), var(--bg-dark));
  overflow: hidden;
}

.carousel-img-pane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active .carousel-img-pane img {
  opacity: 1;
}

.carousel-content-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: rgba(11, 14, 23, 0.95);
}

.carousel-content-pane h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-content-pane p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.carousel-content-pane .badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* MOBILE HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  background: none;
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hamburger:hover {
  border-color: var(--nav-gold-glow);
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.15);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), var(--nav-gold));
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--nav-gold); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--nav-gold); }

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* STAGGERED FADE-IN FOR GRIDS */
.games-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.games-grid .fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.games-grid .fade-in-section:nth-child(3) { transition-delay: 0.2s; }
.games-grid .fade-in-section:nth-child(4) { transition-delay: 0.3s; }
.games-grid .fade-in-section:nth-child(5) { transition-delay: 0.4s; }
.games-grid .fade-in-section:nth-child(6) { transition-delay: 0.5s; }

.payments-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.payments-grid .fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.payments-grid .fade-in-section:nth-child(3) { transition-delay: 0.15s; }
.payments-grid .fade-in-section:nth-child(4) { transition-delay: 0.2s; }
.payments-grid .fade-in-section:nth-child(5) { transition-delay: 0.25s; }
.payments-grid .fade-in-section:nth-child(6) { transition-delay: 0.3s; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 6, 8, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1050;
    transform: none;
  }

  /* Gold vertical accent line in mobile menu */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 30%;
    bottom: 30%;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--nav-gold-glow), transparent);
    z-index: -1;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
  }

  .nav-links a::after {
    bottom: -4px;
  }

  .nav-auth { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 4.5rem) !important; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .payments-grid { grid-template-columns: 1fr; }
  
  .chat-window {
    width: calc(100% - 4rem);
    height: 60vh;
    right: 2rem;
    bottom: 6rem;
  }
  
  .carousel-wrapper { min-height: 500px; }
  .carousel-track { height: 500px; }
  .carousel-slide { flex-direction: column; }
  .carousel-img-pane { height: 50%; flex: none; }
  .carousel-content-pane { flex: 1; padding: 2rem; text-align: center; align-items: center; }
  .carousel-content-pane .badge { align-self: center; }

  .floating-widgets {
    bottom: 1rem;
    right: 1rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--nav-gold), var(--nav-gold-bright), var(--nav-gold));
  z-index: 9999;
  box-shadow: 0 0 10px var(--nav-gold-glow);
  pointer-events: none;
}

/* =============================================
   FADE-IN VARIANTS
   ============================================= */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in-left.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in-right.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  visibility: hidden;
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.fade-in-scale.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* =============================================
   GAME CARD — corner gold accent
   ============================================= */
.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent var(--nav-gold) transparent transparent;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.game-card:hover::before {
  opacity: 0.55;
}

/* =============================================
   SECTION HEADER — Cinzel + gradient text
   ============================================= */
.section-header h2,
.section-header h1 {
  font-family: var(--font-nav);
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 20%, var(--nav-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

/* =============================================
   FOOTER REDESIGN
   ============================================= */
.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 6, 8, 1), rgba(5, 6, 8, 1)),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
  border-top: none;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold), transparent);
  opacity: 0.5;
}

.footer-col h4 {
  font-family: var(--font-nav);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nav-gold);
  font-size: 0.8rem;
}

.footer-links a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: translateX(-101%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  transform: translateX(0);
}

/* =============================================
   PAGE HERO (internal pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(8, 10, 16, 0.6) 0%, rgba(5, 6, 8, 0.98) 100%),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 168, 83, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold), transparent);
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero-content h1 {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-main);
  border-left: 4px solid var(--nav-gold);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.page-hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 2px;
  padding-left: calc(1.5rem + 4px);
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--nav-gold);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 0 15px 40px rgba(212, 168, 83, 0.1), 0 0 0 1px rgba(212, 168, 83, 0.08);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: var(--nav-gold);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 3px var(--nav-gold-glow));
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25);
}

.review-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.reviews-grid .fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .fade-in-section:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .fade-in-section:nth-child(4) { transition-delay: 0.3s; }
.reviews-grid .fade-in-section:nth-child(5) { transition-delay: 0.4s; }
.reviews-grid .fade-in-section:nth-child(6) { transition-delay: 0.5s; }

/* =============================================
   TIMELINE (sobre-mi)
   ============================================= */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 4rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--nav-gold), var(--nav-gold), transparent);
  transform: translateX(-50%);
  opacity: 0.35;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 3rem);
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 3rem);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.25rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nav-gold);
  box-shadow: 0 0 14px var(--nav-gold-glow), 0 0 4px var(--nav-gold-glow-strong);
  z-index: 1;
  border: 2px solid var(--bg-dark);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 230px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.08);
  transform: translateY(-3px);
}

.timeline-year {
  font-family: var(--font-nav);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--nav-gold);
  text-shadow: 0 0 10px var(--nav-gold-glow);
  margin-bottom: 0.2rem;
}

.timeline-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .timeline::before { left: 18px; transform: none; }
  .timeline-item {
    justify-content: flex-start;
    padding-left: 3.5rem;
    padding-right: 0;
  }
  .timeline-item::after { left: 18px; transform: none; }
}

/* =============================================
   MODERN HERO SLIDER — Contained GamerHab Style
   ============================================= */
.hero-slider-section {
  padding: 2rem 0;
  background: var(--bg-dark);
}

.hero-slider-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  height: 480px; /* Slightly larger than GamerHab */
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 17, 21, 0.4) 0%, rgba(15, 17, 21, 0.9) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
  width: 100%;
  max-width: 800px;
}

.slide-info {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}

.slide.active .slide-info {
  opacity: 1;
  transform: scale(1);
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.slide-title span {
  color: var(--nav-gold);
}

/* SEARCH BAR — Slider Internal */
.slider-search {
  margin: 2rem auto;
  max-width: 500px;
  position: relative;
}

.slider-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem 1rem 3.5rem;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-search input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--nav-gold);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.2);
}

.slider-search i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* QUICK TAGS */
.slider-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.game-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.game-tag:hover {
  background: rgba(212, 168, 83, 0.15);
  color: var(--nav-gold-bright);
  border-color: var(--nav-gold);
  transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--nav-gold);
  box-shadow: 0 0 10px var(--nav-gold);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(212, 168, 83, 0.2);
  border-color: var(--nav-gold);
  color: var(--nav-gold);
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

@media (max-width: 768px) {
  .hero-slider-section { height: 70vh; }
  .slide-content { padding: 0 1.5rem; }
  .slider-arrow { display: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%),
              linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-main-title {
  font-size: 6rem;
  font-weight: 900;
  color: #ffcc00;
  letter-spacing: 5px;
  margin-bottom: 0.5rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-sub-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-pipe {
  color: #ffcc00;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-primary-v2 {
  background: #1e60d5;
  color: #fff;
  padding: 14px 35px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-v2:hover {
  background: #1546a1;
  transform: translateY(-2px);
}

.btn-outline-v2 {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 35px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.btn-outline-v2:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* FLOATING SOCIALS — Fixed & Premium */
.floating-social-stack {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1001;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: rgba(15, 17, 21, 0.6);
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.social-icon i {
  font-size: 1.4rem !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon.discord { border-left: 3px solid #5865f2; }
.social-icon.whatsapp { border-left: 3px solid #25d366; }
.social-icon.instagram { border-left: 3px solid #e1306c; }
.social-icon.facebook { border-left: 3px solid #1877f2; }

.social-icon:hover {
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.discord:hover i { color: #5865f2; }
.social-icon.whatsapp:hover i { color: #25d366; }
.social-icon.instagram:hover i { color: #e1306c; }
.social-icon.facebook:hover i { color: #1877f2; }

@media (max-width: 768px) {
  .floating-social-stack {
    right: 15px;
  }
  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

.footer-simple {
  background: #050608;
  padding: 2rem 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* =============================================
   GAMES GRID — Pre-GamerHab Cinematic
   ============================================= */
.games-grid-section {
  padding: 5rem 0;
  background: #050608;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

.btn-view-all {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-view-all:hover {
  color: #ffcc00;
}

.games-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card-v2 {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.game-card-v2:hover {
  transform: translateY(-10px);
  border-color: rgba(255,204,0,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.game-card-v2:hover .card-img img {
  transform: scale(1.1);
}

.card-body {
  padding: 1.5rem;
  text-align: center;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-body p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card-btn {
  display: inline-block;
  background: #1e60d5;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
}

.card-btn:hover {
  background: #ffcc00;
  color: #000;
}

/* =============================================
   APP LAYOUT — Sidebar + Main Content
   ============================================= */
.app-container {
  display: flex;
  min-height: calc(100vh - 70px);
}

/* LEFT SIDEBAR */
.sidebar {
  width: 240px;
  min-width: 240px;
  background: rgba(8, 10, 16, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.sidebar-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.sidebar-menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-menu li a.active {
  color: var(--nav-gold-bright, #f0d078);
  background: rgba(212, 168, 83, 0.06);
  border-left-color: var(--nav-gold, #d4af37);
}

.sidebar-menu li a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.sidebar-support {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8b93f7;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.2);
  transition: all 0.3s ease;
}

.sidebar-support:hover {
  background: rgba(88, 101, 242, 0.15);
  color: white;
}

/* MAIN CONTENT AREA */
.main-content {
  flex: 1;
  min-width: 0;
}

.services-wrapper {
  padding: 2rem 2.5rem 4rem;
  max-width: 1100px;
}

/* HOME HERO (Boosting pages internal hero) */
.home-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0.5) 0%,
    rgba(5, 6, 8, 0.85) 100%
  );
  z-index: 1;
}

.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold, #d4af37), transparent);
  opacity: 0.4;
  z-index: 2;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--nav-gold-bright, #f0d078);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.home-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.home-hero-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 1px;
  max-width: 500px;
}

/* RESPONSIVE: Sidebar collapse on mobile */
@media (max-width: 900px) {
  .app-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    min-width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0;
  }

  .sidebar-menu {
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 0 1rem;
  }

  .sidebar-menu li a {
    white-space: nowrap;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
  }

  .sidebar-menu li a.active {
    border-bottom-color: var(--nav-gold, #d4af37);
    border-left-color: transparent;
  }

  .sidebar-footer {
    display: none;
  }

  .services-wrapper {
    padding: 1.5rem 1rem 3rem;
  }

  .home-hero {
    height: 200px;
  }
}

/* NAV LAYOUT HELPERS */
.nav-left, .nav-right {
  display: flex;
  align-items: center;
}

.nav-right {
  gap: 1rem;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
  .nav-right {
    display: none;
  }
}

/* =============================================
   BOOSTING CARDS — Service Card System
   ============================================= */

/* Category Section */
.boost-category {
  margin-bottom: 3rem;
}

.boost-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.boost-category-header i {
  font-size: 1.3rem;
  color: var(--nav-gold, #d4af37);
  filter: drop-shadow(0 0 6px rgba(212, 168, 83, 0.3));
}

.boost-category-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* Grid Layout */
.boost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Individual Card */
.boost-card {
  background: var(--bg-card, rgba(17, 20, 29, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.boost-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 168, 83, 0.1);
}

/* Card Image */
.boost-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.boost-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.boost-card:hover .boost-card-image img {
  transform: scale(1.08);
}

/* Card Content */
.boost-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.boost-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

/* Card Features */
.boost-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.boost-card-features li {
  font-size: 0.78rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.boost-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--nav-gold, #d4af37);
  font-weight: 700;
  font-size: 0.7rem;
}

/* Badge */
.boost-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.boost-badge.hot {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.boost-badge.popular {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.boost-badge.gift {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.boost-badge.new {
  background: rgba(192, 132, 252, 0.12);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.3);
}

/* Price */
.boost-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1rem;
}

.boost-price-label {
  font-size: 0.72rem;
  color: var(--text-muted, #94a3b8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.boost-price-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--nav-gold-bright, #f0d078);
  letter-spacing: 1px;
}

.boost-price-value .currency {
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 2px;
}

.boost-price-unit {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted, #94a3b8);
  margin-left: 2px;
}

/* CTA Button */
.boost-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.7rem 1rem;
  background: #25d366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.boost-card-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.boost-card-cta i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 640px) {
  .boost-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   LANG DROPDOWN
   ============================================= */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(8, 10, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1100;
}

.lang-switcher {
  position: relative;
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.lang-option.active {
  color: var(--nav-gold, #d4af37);
  background: rgba(212, 168, 83, 0.08);
}

/* =========================================================
   GLOBAL UI SCALE REDUCTION (~8% zoom out effect)
   ========================================================= */

html {
  /* Reduces base rem size from 16px to 14.8px. 
     This globally scales down all rem-based typography, gaps, padding, and widths. */
  font-size: 14.8px !important; 
}

/* Adjustments for hardcoded px elements */
p {
  font-size: 13.2px !important; 
}

label {
  font-size: 12.2px !important;
}

/* Make service cards/galleries slightly more compact */
.boost-card, .game-card {
  padding: 1.1rem 0.9rem !important; 
}

.boost-card-image, .game-card-image {
  max-height: 145px !important; 
}

/* Adjust general container max-widths to fit more content */
.container {
  max-width: 1160px !important;
}

.container-wide {
  max-width: 1320px !important;
}

/* Allow services wrapper to expand fully on the right side */
/* =========================================================
   RESPONSIVE DESIGN (Tablet & Mobile)
   ========================================================= */

@media (max-width: 1024px) {
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .games-grid, .games-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .container-wide { padding: 0 1.5rem; }
}

@media (max-width: 768px) {
  html { font-size: 14px !important; }
  .hero-slider-section, .hero-cinematic { min-height: 50vh; height: auto; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); letter-spacing: 5px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; border-left: none; padding-left: 0; text-align: center; }
  .hero-text-wrapper { text-align: center; margin: 0 auto; }
  .hero-actions { justify-content: center; flex-direction: column; gap: 1rem; }
  .btn-large { width: 100%; text-align: center; }
  .hamburger { display: flex !important; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(8, 10, 15, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.active { left: 0; }
  .nav-center .nav-links { gap: 1.5rem; }
  .nav-center .nav-links a { font-size: 1.1rem; }
  .nav-auth { display: none; }
  .games-grid, .games-grid-v2, .boost-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-selects-row { flex-direction: column; }
  .floating-widgets { transform: scale(0.85); right: 0.25rem; }
}

@media (max-width: 480px) {
  html { font-size: 13px !important; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); letter-spacing: 2px; }
  .section-title { font-size: 1.8rem; }
  .slide-content { padding: 0 1rem; }
  .carousel-wrapper { aspect-ratio: 1/1; min-height: 500px; }
  .carousel-content-pane { padding: 1.5rem; }
  .carousel-content-pane h3 { font-size: 1.8rem; }
}

.services-wrapper {
  max-width: 1600px !important;
  padding-right: 2.5rem !important;
}

/* =============================================
   ORDER SUCCESS MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 16, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.modal-content {
  background: linear-gradient(145deg, #11141d, #0a0d14);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 162, 39, 0.1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(201, 162, 39, 0.2);
  color: #c9a227;
  transform: rotate(90deg);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: modal-check 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modal-check {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.modal-content h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.modal-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.order-code-container {
  background: rgba(201, 162, 39, 0.05);
  border: 2px dashed rgba(201, 162, 39, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.order-code-label {
  display: block;
  font-size: 0.75rem;
  color: #c9a227;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.order-code-value {
  display: block;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 4px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.modal-btn-wa {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.modal-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.modal-btn-dc {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.2);
}

.modal-btn-dc:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(88, 101, 242, 0.3);
}

/* =============================================
   DIGITAL STORE SECTION
   ============================================= */
.digital-store-section {
  padding: 6rem 0;
  background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.05), transparent 40%);
}

.digital-card {
  background: #11141d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.digital-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.digital-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.digital-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.digital-card:hover .digital-card-img img {
  transform: scale(1.1);
}

.digital-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #c9a227;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 2;
}

.digital-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.digital-card h3 {
  font-family: var(--font-nav);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.digital-card .desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.digital-options-title {
  font-size: 0.7rem;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.digital-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.digital-option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.digital-option-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.digital-option-item.active {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.4);
}

.digital-option-label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.digital-option-price {
  color: #c9a227;
  font-weight: 800;
  font-size: 1.1rem;
}

.digital-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.total-price {
  display: flex;
  flex-direction: column;
}

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

.total-price .value {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  color: #f0d078;
}

.digital-buy-btn {
  background: #c9a227;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.2);
  border: none;
  cursor: pointer;
}

.digital-buy-btn:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(201, 162, 39, 0.4);
}

/* Tooltip for (?) info */
.info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  margin-left: 8px;
  cursor: help;
  color: #c9a227;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.info-tooltip .tooltip-text {
  visibility: hidden;
  width: 250px;
  background-color: #0e1117;
  color: #e2e8f0;
  text-align: left;
  border-radius: 12px;
  padding: 15px;
  position: absolute;
  z-index: 100;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(201, 162, 39, 0.2);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  pointer-events: none;
}

.info-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

.info-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(201, 162, 39, 0.2) transparent transparent transparent;
}
