@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;600;700;800;900&display=swap');

:root {
  /* SociGet Inspired Aesthetic: Vibrant Orange & Clean White */
  --primary: #ff9d00;
  --primary-rgb: 255, 157, 0;
  --primary-hover: #e68a1d;
  --primary-glow: rgba(255, 157, 0, 0.2);
  --secondary: #2d3436;
  --accent: #ff7b00;
  --gradient: linear-gradient(135deg, #ff9d00, #ff7b00);
  
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-hover: #ffffff;
  --card-bg: #ffffff;
  
  --text: #2d3436;
  --text-muted: #636e72;
  --text-dim: #b2bec3;
  
  --danger: #ff7675;
  --success: #55efc4;
  --warning: #ffeaa7;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(255, 157, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.05);
  
  --header-height: 80px;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  border: 2px solid var(--bg);
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Hide scrollbars for specific containers where requested or where they look bad */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #000000;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-attachment: fixed;
}

/* Corporate Theme: Removed orbs and dark mesh */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}

.orb, .orb-1, .orb-2 {
  display: none !important;
}

/* --- NEXT-GEN LAYOUT ARCHITECTURE --- */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg);
  overflow-x: hidden;
}

/* --- APPLE-STYLE TOP NAVIGATION --- */
/* --- CORPORATE NAVIGATION --- */
header {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  transition: var(--transition);
}

header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

main {
  margin-top: 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 40px;
  gap: 3.5rem;
  /* Grouped gap for logo, links, and icons */
}

.logo {
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: #000000;
  letter-spacing: -0.02em;
  opacity: 1;
  transition: none;
  flex-shrink: 0;
}

.logo:hover {
  color: #000000;
}

.logo span {
  color: #000000;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-btn {
  color: #000000 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  opacity: 0.6;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
}

.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-btn:hover {
  opacity: 1;
}

.nav-btn.active {
  opacity: 1;
  font-weight: 700;
}

.nav-btn.active::after,
.nav-btn:hover::after {
  width: 100%;
}

.nav-btn i {
  display: none;
  /* Hide icons in main nav for Apple style */
}

.nav-right {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  position: relative;
  opacity: 1;
  transition: none;
  font-size: 1rem;
}

.nav-icon-btn:hover {
  color: #000000;
}

.avatar-box {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.login-btn-premium {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn-premium:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#hero-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 20%, rgba(0,0,0,0.8) 50%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, rgba(0,0,0,0.8) 50%, transparent 95%);
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

#hero-background-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.9) 80%, #ffffff 100%);
  z-index: 2;
}


.status-badge {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.nav-btn-highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  height: 250%;
  background: conic-gradient(transparent,
      rgba(255, 215, 0, 0.8),
      transparent 30%);
  animation: rotateBorder 3s linear infinite;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.nav-btn-highlight::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(10, 15, 25, 0.95);
  border-radius: 10px;
  z-index: -1;
}

@keyframes rotateBorder {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.nav-btn.dimmed {
  opacity: 0.3;
}

.badge-new {
  background: #10b981;
  color: #fff;
  font-size: 7px;
  padding: 1px 4px;
  border-radius: 3px;
  position: absolute;
  bottom: -4px;
}

/* Removed overriding nav-btn colors */

.nav-btn .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Holographic Avatar System */
.user-menu {
  position: relative;
  cursor: pointer;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  background: #000000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Outfit';
  border: 1px solid #000;
  transition: none;
}

.user-menu:hover .avatar-circle {
  background: #000000;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 260px;
  padding: 1rem;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #eeeeee;
  display: none;
  animation: holoReveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.dropdown-menu.active {
  display: block;
}

@keyframes holoReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.9rem 1.25rem;
  border-radius: 0;
  color: #000;
  text-decoration: none;
  transition: none;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #000;
}

/* --- BUTTONS 4.0 --- */
.btn {
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 157, 0, 0.3);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--text);
  border-radius: var(--radius-md);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary);
}

/* --- CARDS & GRIDS --- */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 5%;
  flex: 1;
}

.card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card:hover {
  border-color: #000;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.game-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: space-between;
}

.game-img-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.game-card:hover .game-img {
  opacity: 0.9;
}

/* --- BUNDLE PICKER SPECIFIC --- */
.game-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  margin: 1.5rem 0;
}

.picker-item {
  position: relative;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition);
}

.picker-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: 0.4s;
}

.picker-item.selected {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.picker-item.selected img {
  filter: grayscale(0);
}

.picker-item .check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.picker-item.selected .check {
  display: flex;
}

/* --- REVEAL ANIMATIONS (3D & SMOOTH) --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-3d {
  opacity: 0;
  transform: perspective(1200px) rotateX(25deg) translateY(60px) scale(0.9);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
}

.reveal-3d.revealed {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
}

/* Cinematic Dark Cards Refinement */
.step-card,
.feature-card,
.testimonial-card-v2,
.card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

.step-num {
  background: var(--holographic) !important;
  color: #000 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px var(--primary-glow);
}

.step-card:hover,
.feature-card:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-10px) scale(1.02);
}

/* TOASTS REDESIGNED (Premium Centered Glassmorphism) */
#toast-container {
  position: fixed !important;
  top: 90px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 99999 !important;
  pointer-events: none !important;
  width: 100% !important;
  max-width: 500px !important;
}

.toast {
  pointer-events: auto !important;
  background: rgba(15, 23, 42, 0.95) !important; /* Dark Premium */
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1rem 1.75rem !important;
  border-radius: 16px !important;
  color: #ffffff !important; /* Forced White for readability */
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  transform-origin: top center !important;
  animation: premiumToastIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.toast span {
  color: #ffffff !important;
}

.toast i {
  font-size: 1.25rem !important;
  flex-shrink: 0 !important;
}

.toast.success i { color: #10b981 !important; }
.toast.error i { color: #ef4444 !important; }
.toast.info i { color: #3b82f6 !important; }

.toast::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes premiumToastIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes premiumToastOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
}

/* Auth Split Layout */
.auth-split-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: var(--bg);
  overflow: hidden;
}

.auth-showcase {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 10% 4rem 15%;
  /* Added more left padding, reduced right padding effect */
  background: #f8f9fa;
  border-right: 1px solid var(--glass-border);
}

.auth-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.auth-showcase-content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.auth-features {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Reduced gap */
}

.auth-feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  padding: 1rem;
  /* Reduced padding */
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.auth-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
  border-color: var(--primary);
}

.auth-feature-icon {
  width: 44px;
  /* Slightly smaller */
  height: 44px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}

.auth-form-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Align closer to the middle */
  padding: 2rem 5%;
  position: relative;
}

@media (max-width: 1024px) {
  .auth-showcase {
    display: none;
  }
}


/* Status Badge v3.2 */
.status-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}

.pulse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #000000 !important;
  font-weight: 700;
  transition: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active,
nav a:visited,
nav a:link {
  color: #000000 !important;
}

/* User Avatar System */
.user-menu {
  position: relative;
  cursor: pointer;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit';
  border: 2px solid var(--glass-border);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.user-menu:hover .avatar-circle {
  transform: scale(1.1);
  border-color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  right: 0;
  width: 260px;
  padding: 0.5rem;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0;
  display: none;
  animation: slideDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.dropdown-menu.active {
  display: block;
}

.dd-header,
.dd-profile {
  padding: 0.8rem;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 0.4rem;
}

.dd-header,
.dd-profile strong {
  display: block;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 600;
}

.dd-profile span {
  color: #444444;
  font-size: 0.75rem;
}

.dd-body {
  max-height: 300px;
  overflow-y: auto;
}

.dd-item {
  padding: 0.8rem;
}

.dd-item p {
  color: #000000;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.dd-item span {
  color: #444444;
  font-size: 0.7rem;
}

.dd-empty {
  padding: 2rem;
  text-align: center;
  color: #444444;
  font-size: 0.85rem;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 1rem;
  border-radius: 0;
  font-size: 0.85rem;
  color: #000000 !important;
  text-decoration: none;
  transition: none;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #000000 !important;
}

/* --- BUTTONS --- */
.btn-glow:hover {
  box-shadow: 0 0 20px var(--primary-glow);
}

/* --- MAIN LAYOUT v3.2 --- */
main {
  width: 100%;
  max-width: 1400px;
  /* Expansive layout */
  margin: 0 auto;
  padding: 4rem 5%;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  visibility: visible !important;
  /* Forces visibility once JS kicks in */
}

.reveal-on-scroll.revealed {
  opacity: 1 !important;
  transform: translateY(0);
}

/* --- MODAL SYSTEM --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 2.5rem;
  border-radius: 0;
  width: 90%;
  max-width: 450px;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* --- ANIMATIONS & REVEAL --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #000;
  font-size: 0.95rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
  transform: translateY(-2px);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

/* Sizes */
.btn-sm {
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: 12px;
}

.btn-md {
  height: 44px;
  padding: 0 20px;
  font-size: 15px;
}

.btn-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 17px;
  border-radius: 18px;
}

/* Variants */

/* Primary: Main Actions */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-text);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: var(--glow-blue);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1);
}

/* Secondary / Outline: Details, View */
.btn-secondary {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}


.btn-box {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.nav-btn:hover .btn-box,
.nav-btn.active .btn-box {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.nav-btn span {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.2px;
  color: #000000 !important;
}

.nav-btn:hover span,
.nav-btn.active span {
  color: #000000 !important;
}

/* Ghost: Quiet Actions */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

/* Danger: Delete, Cancel */
.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

/* v5.0 Credit & Library Styles */
.credit-badge {
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.75rem 1.75rem;
  border-radius: 15px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1px;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 20px var(--primary-glow);
  transform: translateY(-2px);
}

.owned-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--success);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 5px 15px rgba(0, 255, 100, 0.3);
  z-index: 5;
  backdrop-filter: blur(5px);
}

.game-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.game-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.2);
}

.game-image-wrapper img {
  transition: transform 0.8s ease;
}

.game-card:hover .game-image-wrapper img {
  transform: scale(1.1);
}

.btn-danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.25);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
  transform: translateY(-1px);
}

/* Success: Confirm */
.btn-success {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.btn-success:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.24);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
  transform: translateY(-1px);
}

/* Icon Button */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  border-radius: 14px;
}

.btn-icon:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: var(--glow-blue-soft);
}

/* Pill / Chip */
.pill {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.pill:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
}

.pill.active {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(59, 130, 246, 0.45);
  color: var(--text);
}

/* Text Link */
.btn-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
  filter: brightness(1.2);
}

/* --- Layout & Components --- */


main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

input,
textarea,
select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
}

input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Game Cards */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.game-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1rem;
}

/* Notifications/Alerts */
.alert {
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert-danger {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* --- DASHBOARD SECTIONS & CONTENT --- */
.stats-banner {
  background: #ffffff;
  border-radius: 0;
  padding: 3rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 5;
  margin-top: -4rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Outfit';
  background: linear-gradient(135deg, #0f172a, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 3rem 2.5rem;
  border-radius: 0;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 15px currentColor);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-family: 'Outfit';
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 0;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
  background: #ffffff;
  border-color: var(--primary);
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  border: 4px solid var(--bg);
  box-shadow: 0 5px 15px var(--primary-glow);
}

.step-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.step-card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card-v2 {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.testimonial-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent);
  z-index: 0;
}

.testimonial-card-v2:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
}

.t-user {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  display: flex;
  flex-direction: column;
}

.t-verified {
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.t-stars {
  color: #f59e0b;
  font-size: 0.7rem;
}

.testimonial-card-v2 p {
  color: #475569;
  line-height: 1.6;
  font-style: italic;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.t-game-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.05);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(59, 130, 246, 0.1);
  margin-top: 0.5rem;
  width: fit-content;
}

.t-user {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {

  .features-grid,
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .features-grid,
  .steps-container,
  .stats-banner {
    grid-template-columns: 1fr;
  }

  .stat-divider {
    display: none;
  }

  .stats-banner {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Badge Owned / Library Pulse Animation */
.badge-owned {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.45rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
  animation: pulse-green 2s infinite ease-in-out;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
  text-transform: uppercase;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    text-shadow: 0 0 3px rgba(16, 185, 129, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  }
}

/* Gold Premium Button (Long & Thin) */
.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%) !important;
  color: #000 !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  border: none !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulse-gold 2.5s infinite ease-in-out;
}

/* Premium Special Game Badge (Özel Oyun) */
.special-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(236, 72, 153, 0.4);
  color: #fbcfe8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25), inset 0 0 10px rgba(236, 72, 153, 0.1);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  animation: float-badge 3s ease-in-out infinite;
}

.special-ribbon i {
  color: #f472b6;
  font-size: 0.8rem;
  filter: drop-shadow(0 0 5px rgba(244, 114, 182, 0.8));
  animation: pulse-icon 2s infinite alternate;
}

.special-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 4s infinite;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes shine-sweep {
  0% {
    left: -150%;
  }

  30% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.5);
    filter: brightness(1.2);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
  }
}

.badge-text-anim {
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: color-pulse 2s infinite alternate;
}

@keyframes bg-shift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes color-pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.btn-long {
  width: 100%;
  padding: 0.6rem 2rem;
  border-radius: 12px;
}

.btn-gold:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
  filter: brightness(1.1);
}

.btn-gold:active:not(:disabled) {
  transform: translateY(0);
}

.btn-gold:disabled {
  background: #1e293b !important;
  color: #64748b !important;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

/* Custom Dialog Styling */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dialog-overlay.active {
  display: flex;
  opacity: 1;
}

.dialog-card {
  background: #111827;
  border: 1px solid rgba(255, 157, 0, 0.4);
  border-radius: 32px;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 157, 0, 0.1);
}

.dialog-overlay.active .dialog-card {
  transform: scale(1);
}

.dialog-title {
  font-family: 'Outfit';
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.dialog-message {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.dialog-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-green {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(255, 157, 0, 0.3) !important;
}

.btn-red {
  background: #ef4444 !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

/* Dark Premium Footer Styling */
footer {
  padding: 2rem 2rem;
  margin-top: auto;
  background: #0b0e14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 100%, rgba(255, 157, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-slim-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-brand-mini {
  font-family: 'Outfit';
  font-weight: 900;
  font-size: 1.3rem;
  color: #ffffff;
  flex-shrink: 0;
}

.footer-brand-mini span {
  color: var(--primary);
}

.footer-nav-mini {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-mini a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-nav-mini a:hover {
  color: var(--primary);
}

.footer-info-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-info-mini span {
  opacity: 0.4;
}

.footer-disclaimer-mini {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 800px;
}

@media (max-width: 900px) {
  .footer-slim-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-nav-mini {
    justify-content: center;
    gap: 1rem;
  }
}

/* Ultimate Final CTA Redesign */
.cta-premium-wrapper {
  margin: 12rem 0;
  padding: 0 5%;
}

.cta-glass-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0;
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
  animation: rotateGlow 10s linear infinite;
  opacity: 0.1;
  pointer-events: none;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-content-inner {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-transform: uppercase;
}

.cta-title-v2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: 'Outfit';
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.cta-title-v2 span {
  color: #000;
}

.cta-desc-v2 {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.cta-actions-v2 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-btn-nitro {
  padding: 1.5rem 4rem;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: none;
}

.cta-btn-nitro.primary {
  background: #0f172a;
  color: #fff;
}

.cta-btn-nitro.primary:hover {
  background: #000;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-btn-nitro.outline {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

.cta-btn-nitro.outline:hover {
  background: #f8fafc;
  border-color: #0f172a;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .cta-glass-card {
    padding: 4rem 2rem;
    border-radius: 30px;
  }

  .cta-btn-nitro {
    width: 100%;
  }
}

/* Dialog Animated Icons */
.dialog-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dialog-icon-wrapper svg {
  width: 72px;
  height: 72px;
}

/* SUCCESS CHECKMARK */
.dialog-checkmark-circle {
  stroke: #10b981;
  stroke-width: 2.5;
  stroke-dasharray: 150.72;
  stroke-dashoffset: 150.72;
  animation: dialogCircleDraw 0.6s ease-in-out forwards;
}

.dialog-checkmark-check {
  stroke: #10b981;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: dialogCheckDraw 0.4s 0.4s ease-in-out forwards;
}

@keyframes dialogCircleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dialogCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.dialog-icon-wrapper.success svg {
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

/* ERROR CROSSMARK */
.dialog-crossmark-circle {
  stroke: #ef4444;
  stroke-width: 2.5;
  stroke-dasharray: 150.72;
  stroke-dashoffset: 150.72;
  animation: dialogCircleDraw 0.6s ease-in-out forwards;
}

.dialog-crossmark-x {
  stroke: #ef4444;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: dialogXDraw 0.35s 0.45s ease-in-out forwards;
}

@keyframes dialogXDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.dialog-icon-wrapper.error svg {
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.4));
}

/* INFO ICON */
.dialog-info-circle {
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-dasharray: 150.72;
  stroke-dashoffset: 150.72;
  animation: dialogCircleDraw 0.6s ease-in-out forwards;
}

.dialog-info-line {
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  animation: dialogInfoDraw 0.3s 0.5s ease-in-out forwards;
}

.dialog-info-dot {
  fill: var(--primary);
  opacity: 0;
  animation: dialogDotIn 0.2s 0.7s ease-in-out forwards;
}

@keyframes dialogInfoDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dialogDotIn {
  to {
    opacity: 1;
  }
}

.dialog-icon-wrapper.info svg {
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
  animation: dialogHoloFloat 3s infinite ease-in-out;
}

@keyframes dialogHoloFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

/* Redirection Modal Styles */
.redirect-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.redirect-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.redirect-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  padding: 4rem 3rem;
  border-radius: 40px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.redirect-overlay.active .redirect-card {
  transform: scale(1) translateY(0);
}

.redirect-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 157, 0, 0.1);
  border-radius: 22px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
  font-size: 2.5rem;
  transform: rotate(-5deg);
}

.redirect-title {
  font-family: "Outfit";
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.redirect-message {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Progress bar removed for manual corporate mode */
.redirect-progress-container, .redirect-progress-bar { display: none; }

.redirect-footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.redirect-footer-text i {
  color: var(--primary);
  animation: moveX 1s infinite alternate;
}

@keyframes moveX {
  from { transform: translateX(0); }
  to { transform: translateX(5px); }
}


/* --- BANNER & HEADER FIX --- */
.premium-banner {
  z-index: 10000 !important;
  position: sticky !important;
  top: 0;
  box-shadow: none !important;
  /* Remove shadow to fix line issue */
}

.top-info-banner {
  display: none !important;
}




@keyframes notificationPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #0a0a0b;
  font-size: 0.8rem;
  color: white;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  animation: notificationPulse 1.5s infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonials-container {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  position: relative;
  /* Premium Transparent Fade */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-container::before,
.testimonials-container::after {
  display: none;
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
}

.testimonials-slider.animate {
  animation: marquee 40s linear infinite;
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

.testimonial-card-v2 {
  flex-shrink: 0;
  width: 320px;
}

/* ========================================
   NUCLEAR OVERRIDE: NAV LINK COLORS
   This block MUST stay at the very end of the file.
   It guarantees nav links are always pure black.
   ======================================== */
header a,
header a:link,
header a:visited,
header a:hover,
header a:active,
header a:focus,
header .nav-btn,
header .nav-btn:link,
header .nav-btn:visited,
header .nav-btn:hover,
header .nav-btn:active,
header .nav-btn:focus,
header .nav-btn.active,
nav a.nav-btn,
nav a.nav-btn:link,
nav a.nav-btn:visited,
nav a.nav-btn:hover,
nav a.nav-btn:active,
nav a.nav-btn.active,
.nav-container a,
.nav-container a:link,
.nav-container a:visited,
.nav-container a:hover,
.nav-container a:active,
.nav-container a.active,
.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active,
.nav-links a.active {
  color: #000000 !important;
  text-decoration: none !important;
  transition: none !important;
  opacity: 1 !important;
}
/* Premium FAQ Section */
.hp-faq-section {
  padding: 8rem 2rem;
  background: #fdfdfd;
  overflow: hidden;
}

.hp-faq-title-wrapper {
  text-align: center;
  margin-bottom: 5rem;
}

.hp-faq-title-wrapper h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hp-faq-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  position: relative;
  justify-content: center;
  min-height: 100px;
}

.hp-faq-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hp-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--primary);
}

.hp-faq-card.active {
  border-color: var(--primary);
  background: #fff;
}

.hp-faq-icon {
  width: 42px;
  height: 42px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.hp-faq-card.active .hp-faq-icon {
  background: var(--primary);
  color: #fff;
}

.hp-faq-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #1e293b;
  line-height: 1.4;
}

.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 4.1rem;
}

.hp-faq-card.active .hp-faq-answer {
  max-height: 500px;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

.hp-faq-mascot-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.hp-faq-mascot-card {
  width: 100%;
  background: var(--gradient);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 157, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  text-align: center;
  border: 10px solid #fff;
}

.hp-faq-mascot-img {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hp-faq-mascot-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-top: auto;
}

.hp-faq-mascot-overlay h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #fff !important;
}

.hp-faq-mascot-overlay span {
  font-size: 1.3rem;
  font-weight: 800;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .hp-faq-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
  .hp-faq-mascot-wrapper {
    order: -1;
    margin-bottom: 3rem;
  }
  .hp-faq-mascot-card {
      aspect-ratio: 4/5;
  }
}

/* Refined 2-Col FAQ Layout */
.hp-faq-2-col {
  grid-template-columns: 450px 1fr !important;
  align-items: flex-start !important;
}

.hp-faq-card {
  border-width: 2px !important;
  padding: 2.5rem !important;
}

.hp-faq-card.active {
  border-color: var(--primary) !important;
  box-shadow: 0 15px 40px rgba(255, 157, 0, 0.1) !important;
}

.hp-faq-icon {
  background: #fff !important;
  border: 1px solid #f1f5f9 !important;
  color: #94a3b8 !important;
}

.hp-faq-card.active .hp-faq-icon {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.hp-faq-mascot-card {
  aspect-ratio: auto !important;
  height: 600px !important;
}

@media (max-width: 1000px) {
  .hp-faq-2-col {
    grid-template-columns: 1fr !important;
  }
}

/* Minimalist 3-Col FAQ Layout */
.hp-faq-3-col {
  grid-template-columns: 1fr 350px 1fr !important;
  align-items: center !important;
  gap: 3rem !important;
}

.hp-faq-mascot-minimal {
  height: 450px !important;
  border-radius: 30px !important;
  border-width: 6px !important;
}

.hp-faq-mascot-minimal .hp-faq-mascot-img {
  top: 40% !important;
  width: 110% !important;
}

.hp-faq-mascot-minimal .hp-faq-mascot-overlay h2 {
  font-size: 2.2rem !important;
}

.hp-faq-mascot-minimal .hp-faq-mascot-overlay span {
  font-size: 1.1rem !important;
}

@media (max-width: 1300px) {
  .hp-faq-3-col {
    grid-template-columns: 1fr 1fr !important;
  }
  .hp-faq-mascot-minimal {
    grid-column: span 2 !important;
    order: -1 !important;
    height: 400px !important;
    width: 350px !important;
    margin: 0 auto 3rem !important;
  }
}

@media (max-width: 800px) {
  .hp-faq-3-col {
    grid-template-columns: 1fr !important;
  }
  .hp-faq-mascot-minimal {
    grid-column: span 1 !important;
  }
}


/* Premium Profile Dropdown Overhaul */
.nav-right .dropdown-menu {
  top: 50px !important;
  width: 260px !important;
  background: #1e222d !important;
  border: 2px solid var(--primary) !important;
  border-radius: 18px !important;
  padding: 0.8rem !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 157, 0, 0.1) !important;
  overflow: hidden !important;
}

.dropdown-menu .dd-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.dropdown-menu .dd-links a {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  padding: 0.8rem 1rem !important;
  border-radius: 14px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  background: transparent !important;
}

.dropdown-menu .dd-links a i {
  width: 20px !important;
  text-align: center !important;
  font-size: 1.1rem !important;
  opacity: 0.7 !important;
}

.dropdown-menu .dd-links a:hover,
.dropdown-menu .dd-links a.active {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
}

.dropdown-menu .dd-links a:hover i {
  opacity: 1 !important;
}

.dropdown-menu .divider {
  display: block !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  margin: 0.6rem 0.5rem !important;
}

.dropdown-menu .admin-link {
  color: #60a5fa !important;
}

.dropdown-menu .admin-link:hover {
  background: rgba(96, 165, 250, 0.1) !important;
}

.dropdown-menu .logout-link {
  color: #f87171 !important;
}

.dropdown-menu .logout-link:hover {
  background: rgba(248, 113, 113, 0.12) !important;
  color: #f87171 !important;
}

/* Premium Profile Dropdown - Light Theme Refinement */
.nav-right .dropdown-menu {
  background: #ffffff !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 15px 40px rgba(255, 157, 0, 0.12) !important;
}

.dropdown-menu .dd-links a {
  color: #475569 !important;
}

.dropdown-menu .dd-links a:hover,
.dropdown-menu .dd-links a.active {
  background: #f8fafc !important;
  color: var(--primary) !important;
}

.dropdown-menu .dd-links a i {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

.dropdown-menu .dd-links a:hover i,
.dropdown-menu .dd-links a.active i {
  color: var(--primary) !important;
}

.dropdown-menu .divider {
  background: #f1f5f9 !important;
}

.dropdown-menu .admin-link {
  color: #3b82f6 !important;
}

.dropdown-menu .admin-link:hover {
  background: rgba(59, 130, 246, 0.05) !important;
}

.dropdown-menu .logout-link {
  color: #ef4444 !important;
}

.dropdown-menu .logout-link:hover {
  background: rgba(239, 68, 68, 0.05) !important;
  color: #ef4444 !important;
}

/* --- GLOBAL BUTTON CONTRAST INSURANCE --- */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Ensure text doesn't turn white on light hover backgrounds */
.btn-primary:hover, 
.btn-purchase-premium:hover,
.btn-active-key:hover,
.btn-gold:hover {
  color: #fff !important;
  background: var(--gradient) !important; /* Keep the gradient on hover but brighter */
}

.btn-secondary:hover,
.btn-cancel-key:hover,
.btn-ghost:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border-color: #e2e8f0 !important;
}

/* Fix for vanishing text in games grid and other areas */
[onmouseover]:hover {
  color: inherit !important;
}

/* Specific fix for purchase buttons */
.btn-purchase-premium {
  background: var(--gradient) !important;
  color: #fff !important;
  box-shadow: 0 8px 15px rgba(251, 191, 36, 0.2) !important;
}

.btn-purchase-premium:hover {
  background: var(--gradient) !important;
  filter: brightness(1.1);
  box-shadow: 0 12px 25px rgba(251, 191, 36, 0.3) !important;
  color: #fff !important;
}

/* --- ROTATING GOLD BEAM BUTTON --- */
.btn-glow-gold {
  position: relative !important;
  background: #ffffff !important;
  color: #0f172a !important; /* solid dark text */
  border: none !important;
  z-index: 1 !important;
  overflow: hidden !important;
  box-shadow: 0 0 20px rgba(255, 157, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  font-weight: 800 !important;
}

.btn-glow-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 30%,
    rgba(255, 157, 0, 0.8) 50%,
    transparent 70%
  );
  animation: rotate-beam 3s linear infinite;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.btn-glow-gold::after {
  content: '';
  position: absolute;
  inset: 3px; /* border thickness */
  background: #ffffff;
  border-radius: 10px; /* adjusted for inset */
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-glow-gold:hover {
  box-shadow: 0 0 35px rgba(255, 157, 0, 0.4) !important;
  transform: translateY(-3px) scale(1.02) !important;
}

.btn-glow-gold:hover::after {
  background: #fff9f0;
}

@keyframes rotate-beam {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.header-logo-glow {
  transition: all 0.3s ease;
}
.header-logo-glow:hover img {
  filter: drop-shadow(0 0 15px rgba(255, 157, 0, 0.6)) drop-shadow(0 0 30px rgba(255, 157, 0, 0.3));
}

/* ===================== PREMIUM FOOTER ===================== */
footer {
  background: linear-gradient(135deg, #0a0d14 0%, #111827 60%, #0f1721 100%);
  border-top: 1px solid rgba(255, 157, 0, 0.15);
  margin-top: 0;
}

.footer-premium-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}

.footer-premium-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-img {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: rgba(255, 157, 0, 0.15);
  border-color: rgba(255, 157, 0, 0.4);
  color: #ff9d00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 157, 0, 0.2);
}

/* Nav Columns */
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9d00;
  margin-bottom: 1.25rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-list li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-link-list li a i {
  font-size: 0.6rem;
  color: #ff9d00;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.footer-link-list li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-link-list li a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Trust Items */
.footer-trust-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.footer-trust-item i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,157,0,0.1);
  border: 1px solid rgba(255,157,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9d00;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Divider */
.footer-premium-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0 -2rem;
}

/* Bottom Bar */
.footer-premium-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-copyright strong {
  color: rgba(255,255,255,0.65);
}

.footer-disclaimer {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-align: right;
  max-width: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-premium-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-premium-top {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-premium-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}
/* ===================== END FOOTER ===================== */
