/*===============================================
  PARAGONROCK DESIGN SYSTEM
  Premium Esports - Futuristic Glassmorphism
  Dark Mode with Neon Accents & Ambient Glows
===============================================*/

/*-----------------------------------
    0. CRITICAL OVERRIDES
-----------------------------------*/
* {
  box-sizing: border-box !important;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Override default margins */
.kv-hero,
.kv-games-section,
.kv-featured-section,
.kv-topup-section,
.kv-features-section {
  margin: 0 !important;
}

/*-----------------------------------
    1. CSS CUSTOM PROPERTIES (Design Tokens)
-----------------------------------*/
:root {
  /* === SURFACE COLORS === */
  --color-surface: #15121b;
  --color-surface-dim: #15121b;
  --color-surface-bright: #3c3742;
  --color-surface-container-lowest: #100d16;
  --color-surface-container-low: #1d1a24;
  --color-surface-container: #221e28;
  --color-surface-container-high: #2c2833;
  --color-surface-container-highest: #37333e;
  --color-on-surface: #e8dfee;
  --color-on-surface-variant: #ccc3d8;
  --color-surface-variant: #37333e;

  /* === PRIMARY COLOR (Neon Purple) === */
  --color-primary: #d2bbff;
  --color-primary-dim: #732ee4;
  --color-on-primary: #3f008e;
  --color-primary-container: #7c3aed;
  --color-on-primary-container: #ede0ff;
  --color-primary-fixed: #eaddff;
  --color-primary-fixed-dim: #d2bbff;

  /* === SECONDARY COLOR (Electric Blue) === */
  --color-secondary: #b4c5ff;
  --color-on-secondary: #002a78;
  --color-secondary-container: #0053db;
  --color-on-secondary-container: #cdd7ff;
  --color-secondary-fixed: #dbe1ff;
  --color-secondary-fixed-dim: #b4c5ff;

  /* === TERTIARY COLOR (Orange) === */
  --color-tertiary: #ffb784;
  --color-on-tertiary: #4f2500;
  --color-tertiary-container: #a15100;
  --color-on-tertiary-container: #ffe0cd;

  /* === ERROR STATE === */
  --color-error: #ffb4ab;
  --color-on-error: #690005;
  --color-error-container: #93000a;
  --color-on-error-container: #ffdad6;

  /* === BACKGROUND === */
  --color-background: #15121b;
  --color-on-background: #e8dfee;

  /* === OUTLINE === */
  --color-outline: #958da1;
  --color-outline-variant: #4a4455;
  --color-inverse-surface: #e8dfee;
  --color-inverse-on-surface: #332f39;

  /* === SURFACE TINT === */
  --color-surface-tint: #d2bbff;

  /* === TYPOGRAPHY === */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Space Grotesk', sans-serif;

  /* === FONT SIZES === */
  --font-size-display-xl: 72px;
  --font-size-headline-lg: 48px;
  --font-size-headline-md: 32px;
  --font-size-body-lg: 18px;
  --font-size-body-md: 16px;
  --font-size-label-caps: 14px;
  --font-size-button: 16px;

  /* === LINE HEIGHTS === */
  --line-height-display-xl: 1.1;
  --line-height-headline: 1.2;
  --line-height-body: 1.6;
  --line-height-button: 1;

  /* === LETTER SPACING === */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-label: 0.1em;
  --letter-spacing-button: 0.02em;

  /* === BORDER RADIUS === */
  --radius-sm: 0.25rem;
  --radius-default: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* === SPACING === */
  --spacing-unit: 8px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 64px;
  --spacing-3xl: 128px;

  /* === CONTAINER === */
  --container-max-width: 1440px;
  --gutter: 24px;
  --margin-mobile: 16px;
  --margin-desktop: 64px;
  --section-gap: 128px;

  /* === TRANSITIONS === */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* === BACKDROPS & GLOWS === */
  --backdrop-blur: blur(20px);
  --glow-primary-20: rgba(210, 187, 255, 0.2);
  --glow-primary-10: rgba(210, 187, 255, 0.1);
  --glow-secondary-20: rgba(180, 197, 255, 0.2);
  --glow-chip: rgba(124, 58, 237, 0.1);
  --border-chip: rgba(124, 58, 237, 0.4);
  --glass-border-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

/*-----------------------------------
    2. RESET & BASE STYLES
-----------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body-md);
  line-height: var(--line-height-body);
  color: var(--color-on-surface);
  background-color: var(--color-surface);
  background-attachment: fixed;
  overflow-x: hidden;
}

/*-----------------------------------
    3. TYPOGRAPHY
-----------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-on-surface);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

h1 {
  font-size: var(--font-size-display-xl);
  font-weight: 800;
  line-height: var(--line-height-display-xl);
  letter-spacing: var(--letter-spacing-tight);
}

h2 {
  font-size: var(--font-size-headline-lg);
  line-height: var(--line-height-headline);
}

h3 {
  font-size: var(--font-size-headline-md);
  line-height: var(--line-height-headline);
  font-weight: 600;
}

h4, h5, h6 {
  font-size: var(--font-size-body-lg);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-on-surface-variant);
  line-height: var(--line-height-body);
}

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

a:hover {
  color: var(--color-primary-fixed);
}

small {
  font-size: var(--font-size-label-caps);
  font-family: var(--font-label);
}

code {
  font-family: 'Courier New', monospace;
  background-color: var(--color-surface-container);
  padding: 2px 6px;
  border-radius: var(--radius-default);
  color: var(--color-secondary);
  font-size: 0.9em;
}

/*-----------------------------------
    4. BUTTONS
-----------------------------------*/
.btn, .cus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-display);
  font-size: var(--font-size-button);
  font-weight: 600;
  line-height: var(--line-height-button);
  letter-spacing: var(--letter-spacing-button);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled, .cus-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button - Gradient with Glow */
.btn-primary, .cus-btn.primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-on-primary);
  font-weight: 600;
  box-shadow: 0 0 20px var(--glow-primary-20);
}

.btn-primary:hover, .cus-btn.primary:hover {
  box-shadow: 0 0 40px var(--glow-primary-20), 0 0 60px var(--glow-secondary-20);
  transform: translateY(-2px);
}

.btn-primary:active, .cus-btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 0 20px var(--glow-primary-20);
}

/* Secondary Button - Ghost with Border */
.btn-secondary, .cus-btn.secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  transition: all var(--transition-base);
}

.btn-secondary:hover, .cus-btn.secondary:hover {
  background-color: rgba(210, 187, 255, 0.1);
  border-color: var(--color-primary-fixed);
  color: var(--color-primary-fixed);
  box-shadow: 0 0 20px var(--glow-primary-10);
}

/* Tertiary Button - Text Only */
.btn-tertiary, .cus-btn.tertiary {
  background-color: transparent;
  color: var(--color-primary);
  border: none;
  padding: 0;
  position: relative;
  font-family: var(--font-label);
}

.btn-tertiary::after, .cus-btn.tertiary::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.btn-tertiary:hover::after, .cus-btn.tertiary:hover::after {
  width: 100%;
}

/* Danger Button */
.btn-danger, .cus-btn.danger {
  background-color: var(--color-error-container);
  color: var(--color-on-error-container);
  box-shadow: 0 0 20px rgba(255, 180, 171, 0.2);
}

.btn-danger:hover, .cus-btn.danger:hover {
  background-color: var(--color-error);
  box-shadow: 0 0 30px rgba(255, 180, 171, 0.3);
}

/* KV Button Styles */
.kv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.kv-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.kv-btn-accent {
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(210, 187, 255, 0.5);
}

.kv-btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.kv-btn-accent:hover {
  box-shadow: 0 0 50px rgba(210, 187, 255, 0.8), 0 0 80px rgba(180, 197, 255, 0.5);
  transform: translateY(-3px) scale(1.05);
}

.kv-btn-accent:hover::before {
  transform: translateX(100%);
}

.kv-btn-accent:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 25px rgba(210, 187, 255, 0.5);
}

/*-----------------------------------
    5. GLASS CARDS & CONTAINERS
-----------------------------------*/
.card, .glass-card {
  background-color: rgba(60, 55, 66, 0.5);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid;
  border-image: var(--glass-border-gradient) 1;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
}

.card:hover, .glass-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 40px var(--glow-primary-20);
  transform: translateY(-4px);
  background-color: rgba(60, 55, 66, 0.7);
}

.card-hero {
  background-color: rgba(60, 55, 66, 0.5);
  backdrop-filter: var(--backdrop-blur);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 60px var(--glow-primary-20);
}

/*-----------------------------------
    6. INPUT FIELDS
-----------------------------------*/
input, textarea, select {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-body);
  font-size: var(--font-size-body-md);
  border: 1px solid var(--color-surface-container-high);
  border-radius: var(--radius-default);
  background-color: var(--color-surface-container-lowest);
  color: var(--color-on-surface);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: var(--color-surface-container-low);
  box-shadow: 0 0 15px rgba(180, 197, 255, 0.2);
}

input::placeholder, textarea::placeholder {
  color: var(--color-on-surface-variant);
}

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-label);
  font-size: var(--font-size-label-caps);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-on-surface);
  letter-spacing: var(--letter-spacing-label);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

/*-----------------------------------
    7. CHIPS & TAGS
-----------------------------------*/
.chip, .tag {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-family: var(--font-label);
  font-size: var(--font-size-label-caps);
  font-weight: 700;
  background-color: var(--glow-chip);
  border: 1px solid var(--border-chip);
  border-radius: var(--radius-default);
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.chip:hover, .tag:hover {
  background-color: rgba(210, 187, 255, 0.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--glow-primary-10);
}

/*-----------------------------------
    8. LAYOUT & SECTIONS
-----------------------------------*/
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-gap) 0;
}

section.hero {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--color-surface-container-low) 0%, var(--color-surface) 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: var(--font-size-body-lg);
  color: var(--color-on-surface-variant);
  max-width: 600px;
  margin: 0 auto;
}

/*-----------------------------------
    9. GRID & FLEXBOX
-----------------------------------*/
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.flex {
  display: flex;
  gap: var(--spacing-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

/*-----------------------------------
    10. NAVIGATION INDICATORS
-----------------------------------*/
.nav-indicator {
  position: relative;
  padding-bottom: 8px;
  color: var(--color-primary);
}

.nav-indicator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
}

/*-----------------------------------
    11. UTILITY CLASSES
-----------------------------------*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

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

.text-secondary {
  color: var(--color-secondary);
}

.text-tertiary {
  color: var(--color-tertiary);
}

.text-muted {
  color: var(--color-on-surface-variant);
}

.text-error {
  color: var(--color-error);
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

/*-----------------------------------
    12. VISIBILITY & DISPLAY
-----------------------------------*/
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

/*-----------------------------------
    13. ANIMATIONS
-----------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--glow-primary-20);
  }
  50% {
    box-shadow: 0 0 40px var(--glow-primary-20);
  }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.8;
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease-out;
}

.animate-slide-up {
  animation: slideInUp var(--transition-base) ease-out;
}

.animate-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

/*-----------------------------------
    14. SCROLLBAR STYLING
-----------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface-container);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-primary-fixed) 0%, var(--color-secondary-fixed) 100%);
}

/*-----------------------------------
    15. RESPONSIVE DESIGN
-----------------------------------*/
@media (max-width: 1024px) {
  :root {
    --font-size-display-xl: 56px;
    --font-size-headline-lg: 40px;
    --spacing-2xl: 48px;
  }

  section {
    padding: var(--spacing-2xl) 0;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-display-xl: 40px;
    --font-size-headline-lg: 32px;
    --font-size-headline-md: 24px;
    --spacing-2xl: 32px;
    --section-gap: 64px;
    --margin-desktop: 32px;
    --gutter: 16px;
  }

  body {
    font-size: var(--font-size-body-md);
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .flex {
    flex-direction: column;
  }

  .container {
    padding: 0 var(--margin-mobile);
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-display-xl: 32px;
    --font-size-headline-lg: 24px;
    --font-size-button: 14px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
  }

  .btn, .cus-btn {
    width: 100%;
  }
}

/*-----------------------------------
    16. DARK MODE ENHANCEMENTS
-----------------------------------*/
@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--color-surface);
    color: var(--color-on-surface);
  }
}

/*-----------------------------------
    17. REDUCED MOTION
-----------------------------------*/
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*===============================================
    20. HEADER REDESIGN - FRESH MODERN STYLE
===============================================*/
/*-----------------------------------
  MODERN HEADER REDESIGN
-----------------------------------*/
.kv-header-modern {
  background: linear-gradient(135deg, rgba(15, 12, 19, 0.99) 0%, rgba(21, 18, 27, 0.99) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

body {
  padding-top: 80px;
}

.kv-navbar-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  gap: 60px;
  height: 80px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

/* Logo */
.kv-logo-modern {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
  max-width: 200px;
}

.kv-logo-modern:hover {
  transform: translateY(-2px) scale(1.02);
}

.kv-logo-img-modern {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navigation Links */
.kv-nav-links-modern {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
}

.kv-nav-dropdown-modern {
  position: relative;
}

.kv-nav-link-modern {
  color: #cbd5e1;
  font-weight: 500;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 32px 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.kv-nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d2bbff, #b4c5ff);
  transition: width 0.3s ease;
}

.kv-nav-link-modern:hover,
.kv-nav-link-modern.active {
  color: #d2bbff;
}

.kv-nav-link-modern:hover::after,
.kv-nav-link-modern.active::after {
  width: 100%;
}

.kv-nav-link-modern svg {
  transition: transform 0.3s ease;
}

.kv-nav-link-modern:hover svg,
.kv-nav-link-modern.active svg {
  transform: rotate(180deg);
}

.kv-submenu-modern {
  display: none !important;
  position: absolute;
  top: 84%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 12, 19, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 12px;
  list-style: none;
  padding: 12px;
  margin-top: 16px;
  min-width: 250px;
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.kv-nav-dropdown-modern {
  position: relative;
}

.kv-nav-dropdown-modern:hover .kv-submenu-modern {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.kv-submenu-modern li a {
  display: block;
  padding: 10px 14px !important;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.kv-submenu-modern li a:hover {
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.08);
}

/* Header Right Section */
.kv-header-right-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

.kv-credits-badge-modern {
  background: rgba(180, 197, 255, 0.08);
  border: 1.5px solid rgba(180, 197, 255, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #b4c5ff;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.kv-credits-badge-modern:hover {
  background: rgba(180, 197, 255, 0.15);
  border-color: rgba(180, 197, 255, 0.5);
}

.kv-dropdown-modern {
  position: relative;
}

.kv-header-btn-modern {
  background: rgba(210, 187, 255, 0.06);
  border: 1px solid rgba(210, 187, 255, 0.15);
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-header-btn-modern:hover {
  border-color: rgba(210, 187, 255, 0.3);
  background: rgba(210, 187, 255, 0.12);
  color: #d2bbff;
}

.kv-lang-btn-modern {
  gap: 6px !important;
}

.kv-flag-icon {
  height: 14px;
  width: auto;
  object-fit: contain;
}

.kv-flag-icon-small {
  height: 12px;
  width: auto;
  object-fit: contain;
}

.kv-lang-option {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.kv-dropdown-menu-modern {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 12, 19, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 10px;
  list-style: none;
  padding: 10px 0;
  margin-top: 10px;
  min-width: 180px;
  z-index: 1001;
  pointer-events: none;
}

.kv-dropdown-modern:hover .kv-dropdown-menu-modern,
.kv-dropdown-modern.active .kv-dropdown-menu-modern {
  display: block;
  pointer-events: auto;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kv-dropdown-menu-modern li {
  list-style: none;
  pointer-events: auto;
}

.kv-dropdown-menu-modern li a {
  display: block;
  padding: 11px 16px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.kv-dropdown-menu-modern li a:hover {
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.08);
}

.kv-cart-btn-modern {
  position: relative;
  background: rgba(210, 187, 255, 0.06);
  border: 1px solid rgba(210, 187, 255, 0.15);
  color: #d2bbff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kv-cart-btn-modern:hover {
  border-color: rgba(210, 187, 255, 0.3);
  background: rgba(210, 187, 255, 0.12);
  transform: translateY(-2px);
}

.kv-cart-badge-modern {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #d2bbff, #b4c5ff);
  color: #0f0d13;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid rgba(15, 12, 19, 0.9);
}

.kv-user-dropdown-modern {
  position: relative;
}

.kv-user-btn-modern {
  background: rgba(210, 187, 255, 0.06);
  border: 1px solid rgba(210, 187, 255, 0.15);
  color: #d2bbff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kv-user-btn-modern:hover {
  border-color: rgba(210, 187, 255, 0.3);
  background: rgba(210, 187, 255, 0.12);
  transform: translateY(-2px);
}

.kv-user-dropdown-modern {
  position: relative;
}

.kv-user-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 12, 19, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 10px;
  min-width: 280px;
  z-index: 1001;
  margin-top: 10px;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.kv-user-dropdown-modern:hover .kv-user-menu {
  display: block !important;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.2s ease;
}

.kv-user-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-user-avatar {
  width: 40px;
  height: 40px;
  background: rgba(210, 187, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2bbff;
  flex-shrink: 0;
}

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

.kv-user-name {
  font-size: 13px;
  font-weight: 600;
  color: #d2bbff;
}

.kv-user-points {
  font-size: 11px;
  color: #8b7fa8;
}

.kv-user-divider {
  height: 1px;
  background: rgba(210, 187, 255, 0.1);
  margin: 12px 0;
}

.kv-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-bottom: 6px;
}

.kv-user-item:hover {
  background: rgba(210, 187, 255, 0.08);
  color: #d2bbff;
}

.kv-user-item-danger {
  color: #ffb4ab;
}

.kv-user-item-danger:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.kv-user-item-primary {
  background: rgba(180, 197, 255, 0.15);
  border: 1px solid rgba(180, 197, 255, 0.2);
  color: #b4c5ff;
  display: block;
  text-align: center;
  padding: 10px 12px;
}

.kv-user-item-primary:hover {
  background: rgba(180, 197, 255, 0.25);
  border-color: rgba(180, 197, 255, 0.4);
}

.kv-user-item-accent {
  background: transparent;
  border: 1.5px solid rgba(210, 187, 255, 0.4);
  color: #d2bbff;
  display: block;
  text-align: center;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.kv-user-item-accent:hover {
  border-color: rgba(210, 187, 255, 0.7);
  background: rgba(210, 187, 255, 0.08);
}

.kv-nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Hide Home link */
.kv-nav-links li:first-child {
  display: none;
}

.kv-nav-link {
  color: #cbd5e1;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kv-nav-link svg {
  transition: all 0.25s ease;
}

.kv-nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d2bbff, #b4c5ff);
  transition: all 0.25s ease;
}

.kv-nav-link:hover,
.kv-nav-link.active {
  color: #d2bbff;
}

.kv-nav-link:hover svg,
.kv-nav-link.active svg {
  transform: rotate(180deg);
  color: #d2bbff;
}

.kv-nav-link:hover::before,
.kv-nav-link.active::before {
  width: 100%;
}

.kv-nav-dropdown {
  position: relative;
}

.kv-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 12, 19, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 12px;
  list-style: none;
  padding: 12px;
  margin-top: 16px;
  min-width: 250px;
  z-index: 1001;
}

.kv-nav-dropdown:hover .kv-submenu {
  display: block;
}

.kv-submenu li {
  list-style: none;
}

.kv-submenu li a {
  display: block;
  padding: 10px 14px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.kv-submenu li a:hover {
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.08);
}

.kv-points-badge {
  background: transparent;
  border: 1.5px solid #b4c5ff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #b4c5ff;
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.kv-points-badge:hover {
  background: rgba(180, 197, 255, 0.05);
  border-color: #d2bbff;
  color: #d2bbff;
}

.kv-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.kv-dropdown {
  position: relative;
}

.kv-dropdown-btn {
  background: transparent;
  border: 1px solid rgba(210, 187, 255, 0.2);
  color: #cbd5e1;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-dropdown-btn svg {
  transition: transform 0.3s ease;
}

.kv-dropdown-btn:hover {
  border-color: #d2bbff;
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.08);
}

.kv-dropdown-btn:hover svg {
  transform: rotate(180deg);
}

.kv-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 12, 19, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 10px;
  list-style: none;
  padding: 10px 0;
  margin-top: 12px;
  min-width: 200px;
  z-index: 100;
  display: none;
}

.kv-dropdown:hover .kv-dropdown-menu {
  display: block;
}

.kv-dropdown-menu li a {
  display: block;
  padding: 11px 16px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
}

.kv-dropdown-menu li a:hover {
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.08);
}

/* Cart Icon */
.kv-icon-btn {
  color: #cbd5e1;
  background: transparent;
  border: 1px solid rgba(180, 197, 255, 0.25);
  padding: 8px 11px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
  text-decoration: none;
}

.kv-icon-btn:hover {
  border-color: #b4c5ff;
  color: #b4c5ff;
  background: rgba(180, 197, 255, 0.05);
}

.kv-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d2bbff;
  color: #3f008e;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* User Dropdown */
.kv-user-dropdown {
  position: relative;
}

.kv-user-btn {
  background: transparent;
  border: 1px solid rgba(180, 197, 255, 0.25);
  color: #cbd5e1;
  padding: 8px 11px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.kv-user-btn:hover {
  border-color: #b4c5ff;
  color: #b4c5ff;
  background: rgba(180, 197, 255, 0.05);
}

.kv-user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 12, 19, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 10px;
  min-width: 280px;
  margin-top: 12px;
  z-index: 100;
  display: none;
}

.kv-user-dropdown:hover .kv-user-menu {
  display: block;
}

.kv-user-header {
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.08);
}

.kv-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(210, 187, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b4c5ff;
  flex-shrink: 0;
}

.kv-user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kv-user-name {
  color: #e8dfee;
  font-weight: 600;
  font-size: 13px;
}

.kv-user-points {
  color: #958da1;
  font-size: 11px;
}

.kv-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
}

.kv-user-item:hover {
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.08);
}

.kv-user-item-danger:hover {
  color: #ff6b6b;
}

.kv-user-item-primary:hover {
  color: #d2bbff;
}

.kv-user-item-accent:hover {
  color: #ffb784;
}

.kv-user-divider {
  height: 1px;
  background: rgba(210, 187, 255, 0.08);
}

.kv-user-guest {
  display: none;
}

.kv-user-menu .kv-user-divider:first-of-type {
  display: none;
}

/* Mobile Header */
.kv-header.small-screen {
  display: none;
}

@media (max-width: 1024px) {
  .kv-nav-links {
    gap: 24px;
  }

  .kv-navbar {
    padding: 16px 0;
    gap: 24px;
  }

  .kv-nav-actions {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .kv-header.large-screens {
    display: none;
  }

  .kv-header.small-screen {
    display: block;
  }

  .kv-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }

  .kv-mobile-menu-btn {
    background: transparent;
    border: 1px solid rgba(210, 187, 255, 0.3);
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .kv-mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: #e8dfee;
    transition: all 0.2s ease;
  }

  .kv-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 18, 27, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(210, 187, 255, 0.1);
    padding: 20px;
  }

  .kv-mobile-nav.active {
    display: block;
  }

  .kv-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .kv-mobile-nav a {
    color: #e8dfee;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .kv-mobile-nav a:hover {
    color: #d2bbff;
  }
}

/*===============================================
    21. PAGE BREADCRUMB & CONTENT
===============================================*/
.kv-page-breadcrumb-section {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-bottom: 60px;
}

.kv-page-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 18, 27, 0.75) 0%, rgba(124, 58, 237, 0.1) 100%);
  backdrop-filter: blur(2px);
}

.kv-page-breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.kv-page-breadcrumb-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #e8dfee;
  margin: 0 0 16px 0;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.kv-breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.kv-breadcrumb-link {
  color: #b4c5ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kv-breadcrumb-link:hover {
  color: #d2bbff;
}

.kv-breadcrumb-divider {
  color: #cbd5e1;
}

.kv-breadcrumb-current {
  color: #cbd5e1;
}

.kv-page-content-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  min-height: 600px;
}

.kv-page-content-card {
  background: rgba(34, 30, 40, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 16px;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.kv-page-content-body {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 15px;
}

.kv-page-content-body h2 {
  color: #e8dfee;
  font-size: 28px;
  font-weight: 700;
  margin: 32px 0 16px 0;
  margin-top: 40px;
}

.kv-page-content-body h3 {
  color: #d2bbff;
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px 0;
}

.kv-page-content-body p {
  margin: 16px 0;
}

.kv-page-content-body a {
  color: #b4c5ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kv-page-content-body a:hover {
  color: #d2bbff;
}

.kv-page-content-body ul,
.kv-page-content-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.kv-page-content-body li {
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .kv-page-breadcrumb-section {
    min-height: 240px;
  }

  .kv-page-breadcrumb-title {
    font-size: 36px;
  }

  .kv-page-content-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .kv-page-breadcrumb-section {
    min-height: 200px;
    margin-bottom: 40px;
  }

  .kv-page-breadcrumb-title {
    font-size: 28px;
  }

  .kv-page-content-section {
    padding: 40px 0;
  }

  .kv-page-content-card {
    padding: 24px;
  }

  .kv-page-content-body {
    font-size: 14px;
  }
}

/*===============================================
    22. FOOTER - CLEAN MINIMAL DESIGN
===============================================*/
.kv-footer {
  background: #15121b;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  padding: 50px 0 0;
}

.kv-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 !important;
  grid-template-areas:
    "brand brand brand"
    "company links legal";
}

/* Logo & Newsletter - centered at top */
.kv-footer-brand-col {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
}

/* Company Info - first column */
.kv-footer-widget:nth-child(4) {
  grid-area: company;
}

/* Quick Links - second column */
.kv-footer-widget:nth-child(2) {
  grid-area: links;
}

/* Utility/Legal Pages - third column */
.kv-footer-widget:nth-child(3) {
  grid-area: legal;
}

.kv-footer-logo {
  display: inline-block;
  margin-bottom: 8px;
}

.kv-footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #e8dfee;
  margin-bottom: 12px;
}

.kv-subscribe-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.kv-subscribe-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(60, 55, 66, 0.5);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 6px;
  color: #e8dfee;
  font-size: 13px;
}

.kv-subscribe-form input::placeholder {
  color: rgba(232, 223, 238, 0.5);
}

.kv-subscribe-form input:focus {
  outline: none;
  border-color: #d2bbff;
  background: rgba(60, 55, 66, 0.8);
}

.kv-subscribe-form button {
  padding: 10px 16px;
  background: #7c3aed;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}

.kv-subscribe-form button svg {
  stroke: #fff;
  width: 18px;
  height: 18px;
}

.kv-footer-success {
  color: #10b981;
  font-size: 12px;
  padding: 10px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 6px;
  display: none;
}

/* Quick Links and Utility Pages - normal grid items */
.kv-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kv-footer-link {
  color: #ccc3d8;
  text-decoration: none;
  font-size: 13px;
}

.kv-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.kv-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #ccc3d8;
}

.kv-footer-contact li svg {
  color: #d2bbff;
  flex-shrink: 0;
  margin-top: 2px;
}

.kv-footer-contact a {
  color: #ccc3d8;
  text-decoration: none;
}

.kv-copyright {
  background: #15121b;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  padding: 20px 0;
  margin-top: 0;
}

.kv-copyright-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.kv-copyright-text {
  color: #958da1;
  font-size: 13px;
  margin: 0;
  text-align: center;
  text-transform: none !important;
}
.kv-footer-grid::before, .kv-footer-grid::after{
  display: none !important;
}
.kv-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv-payment-icons img {
  max-height: 24px;
  opacity: 0.6;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  border: none;
  border-radius: 8px;
  color: #3f008e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
  box-shadow: 0 4px 15px rgba(210, 187, 255, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 1024px) {
  .kv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-template-areas:
      "brand brand"
      "company links"
      "legal legal";
  }

  .kv-subscribe-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .kv-footer {
    padding: 40px 0;
  }

  .kv-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-template-areas:
      "brand"
      "company"
      "links"
      "legal";
  }

  .kv-subscribe-form {
    flex-direction: column;
    gap: 8px;
  }

  .kv-subscribe-form input,
  .kv-subscribe-form button {
    width: 100%;
    min-width: unset;
  }

  .kv-footer-title {
    font-size: 16px;
  }

  .kv-footer-link {
    font-size: 13px;
  }

  .kv-footer-contact li {
    font-size: 13px;
  }

  .kv-nav-links {
    display: none;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
}

/*===============================================
    18. HOMEPAGE SECTIONS
===============================================*/

/* HERO SECTION */
.kv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1d1a24 0%, #15121b 50%, #15121b 100%);
}

.kv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kv-hero-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
}

.kv-hero-glow-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #d2bbff, #b4c5ff);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.kv-hero-glow-2 {
  width: 300px;
  height: 300px;
  background: #d2bbff;
  bottom: 50px;
  right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.kv-hero-glow-3 {
  width: 250px;
  height: 250px;
  background: #b4c5ff;
  top: 50%;
  right: 5%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.kv-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.kv-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(210, 187, 255, 0.05) 25%, rgba(210, 187, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(210, 187, 255, 0.05) 75%, rgba(210, 187, 255, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(210, 187, 255, 0.05) 25%, rgba(210, 187, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(210, 187, 255, 0.05) 75%, rgba(210, 187, 255, 0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  z-index: 1;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

.kv-hero-light-sweep {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(210, 187, 255, 0.1) 50%, transparent 70%);
  animation: sweep 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes sweep {
  0% { transform: rotate(0deg) translateX(-100%); }
  100% { transform: rotate(0deg) translateX(100%); }
}

.kv-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.kv-particle {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 2px;
  background: #d2bbff;
  border-radius: 50%;
  opacity: 0.3;
  animation: particle-rise 10s ease-in infinite;
}

@keyframes particle-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

.kv-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  animation: slideInUp 0.8s ease-out;
}

.kv-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 24px;
  color: #d2bbff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kv-status-dot {
  width: 6px;
  height: 6px;
  background: #d2bbff;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.kv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--color-on-surface);
}

.kv-title-line {
  display: block;
}

.kv-title-gradient {
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kv-hero-subtitle {
  font-size: 18px;
  color: var(--color-on-surface-variant);
  margin-bottom: 40px;
  line-height: 1.6;
}

.kv-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* SECTION HEADERS */
.kv-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.kv-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.kv-section-subtitle {
  font-size: 16px;
  color: var(--color-on-surface-variant);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* GAMES SECTION */
.kv-games-section {
  padding: 128px 0;
  background: linear-gradient(180deg, #15121b 0%, #1d1a24 100%);
}

.kv-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.kv-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kv-game-card:hover {
  transform: translateY(-8px);
}

.kv-game-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.kv-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kv-game-card:hover .kv-game-image img {
  transform: scale(1.1);
}

.kv-game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 18, 27, 0.8) 100%);
  z-index: 2;
}

.kv-game-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(210, 187, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border: 2px solid transparent;
  border-radius: 16px;
}

.kv-game-card:hover .kv-game-glow {
  opacity: 1;
  border-color: rgba(210, 187, 255, 0.5);
  box-shadow: 0 0 40px rgba(210, 187, 255, 0.3);
}

.kv-game-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
}

.kv-game-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.kv-game-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-on-surface-variant);
}

/* FEATURED SECTION */
.kv-featured-section {
  padding: 128px 0;
  background: #15121b;
}

.kv-featured-carousel {
  position: relative;
  margin-bottom: 40px;
}

.kv-featured-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.kv-featured-track::-webkit-scrollbar {
  height: 4px;
}

.kv-featured-track::-webkit-scrollbar-thumb {
  background: #d2bbff;
  border-radius: 2px;
}

.kv-service-card {
  flex: 0 0 340px;
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kv-service-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.kv-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-service-card:hover .kv-service-image img {
  transform: scale(1.1);
}

.kv-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 18, 27, 0.9) 100%);
  z-index: 2;
}

.kv-service-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border: 2px solid transparent;
  border-radius: 16px;
}

.kv-service-card:hover .kv-service-glow {
  opacity: 1;
  border-color: #d2bbff;
  box-shadow: 0 0 50px rgba(210, 187, 255, 0.4);
}

.kv-service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}

.kv-service-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.kv-service-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.kv-service-points {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  color: #d2bbff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kv-service-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-on-surface-variant);
}

.kv-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 8px;
  color: #d2bbff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.kv-carousel-btn:hover {
  background: rgba(210, 187, 255, 0.2);
  border-color: #d2bbff;
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.3);
}

.kv-carousel-prev {
  left: -60px;
}

.kv-carousel-next {
  right: -60px;
}

.kv-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.kv-dot {
  width: 8px;
  height: 8px;
  background: rgba(210, 187, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(210, 187, 255, 0.2);
}

.kv-dot.active {
  background: #d2bbff;
  border-color: #d2bbff;
  width: 24px;
  border-radius: 4px;
}

/* TOPUP SECTION */
.kv-topup-section {
  padding: 128px 0;
  background: linear-gradient(180deg, #15121b 0%, #1d1a24 100%);
}

.kv-card {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kv-card:hover {
  border-color: #d2bbff;
  box-shadow: 0 0 40px rgba(210, 187, 255, 0.2);
  background: rgba(60, 55, 66, 0.7);
}

.kv-card-highlight {
  border: 2px solid rgba(210, 187, 255, 0.3);
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.15);
}

.kv-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.kv-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.kv-bonus-tier {
  padding: 20px;
  background: rgba(34, 30, 40, 0.8);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.kv-bonus-tier:hover {
  border-color: #d2bbff;
  background: rgba(34, 30, 40, 1);
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.2);
}

.kv-bonus-multiplier {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #d2bbff;
  margin-bottom: 8px;
}

.kv-bonus-range {
  display: block;
  font-size: 13px;
  color: var(--color-on-surface-variant);
  margin-bottom: 4px;
}

.kv-bonus-benefit {
  display: block;
  font-size: 12px;
  color: var(--color-outline);
}

.kv-note {
  font-size: 12px;
  color: var(--color-outline);
  text-align: center;
  margin: 0;
}

.kv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.kv-step {
  text-align: center;
}

.kv-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.kv-step p {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
}

.kv-recharge-card {
  max-width: 700px;
  margin: 0 auto;
}

.kv-recharge-header {
  margin-bottom: 40px;
  text-align: center;
}

.kv-recharge-header h4 {
  font-size: 24px;
  color: var(--color-on-surface);
  margin-bottom: 8px;
}

.kv-recharge-header p {
  font-size: 14px;
  color: var(--color-on-surface-variant);
}

.kv-form {
  margin-bottom: 24px;
}

.kv-form-group {
  margin-bottom: 20px;
}

.kv-label {
  display: block;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-on-surface);
  margin-bottom: 8px;
}

.kv-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  background: rgba(16, 13, 22, 0.6);
  border: 1px solid rgba(147, 141, 161, 0.3);
  border-radius: 8px;
  color: var(--color-on-surface);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.kv-input:focus {
  outline: none;
  border-color: #b4c5ff;
  background: rgba(16, 13, 22, 0.9);
  box-shadow: 0 0 15px rgba(180, 197, 255, 0.2);
}

.kv-input::placeholder {
  color: var(--color-outline);
}

.kv-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.kv-form-row-3 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* POINTS SUMMARY */
.points-summary {
  background: rgba(34, 30, 40, 0.8);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.summary-row.total {
  border-top: 2px solid rgba(210, 187, 255, 0.3);
  padding-top: 16px;
  margin-top: 8px;
}

.summary-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ccc3d8;
}

.summary-value {
  background: transparent;
  border: none;
  color: #b4c5ff;
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  padding: 0;
  font-family: 'Monaco', monospace;
}

.summary-value.bonus {
  color: #ffb784;
}

.summary-value.total-val {
  color: #d2bbff;
  font-size: 22px;
}

.summary-divider {
  height: 1px;
  background: rgba(210, 187, 255, 0.15);
  margin: 8px 0;
}

.summary-separator {
  height: 2px;
  background: linear-gradient(90deg, rgba(210, 187, 255, 0.1), rgba(210, 187, 255, 0.3), rgba(210, 187, 255, 0.1));
  margin: 16px 0;
}

.kv-form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px;
  background: rgba(210, 187, 255, 0.05);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 8px;
  font-size: 12px;
  color: #ccc3d8;
}

.form-disclaimer svg {
  color: #d2bbff;
  flex-shrink: 0;
}

.kv-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(210, 187, 255, 0.05);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--color-on-surface-variant);
}

.kv-disclaimer svg {
  flex-shrink: 0;
  color: #d2bbff;
}

/* FEATURES SECTION */
.kv-features-section {
  padding: 128px 0;
  background: linear-gradient(180deg, #1d1a24 0%, #15121b 100%);
}

.kv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.kv-feature-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(60, 55, 66, 0.3);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kv-feature-card:hover {
  border-color: #d2bbff;
  background: rgba(60, 55, 66, 0.5);
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.2);
  transform: translateY(-4px);
}

.kv-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.2), rgba(180, 197, 255, 0.1));
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2bbff;
}

.kv-feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 12px;
}

.kv-feature-desc {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
}

.container-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container-main {
    padding: 0 16px;
  }

  .kv-hero {
    min-height: 80vh;
    padding: 40px 0;
  }

  .kv-hero-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .kv-section-title {
    font-size: 1.5rem;
  }

  .kv-games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .kv-game-card {
    height: 200px;
  }

  .kv-service-card {
    flex: 0 0 260px;
    height: 260px;
  }

  .kv-card {
    padding: 24px;
  }

  .kv-bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kv-carousel-prev,
  .kv-carousel-next {
    display: none;
  }

  .kv-form-row-3 {
    grid-template-columns: 1fr;
  }

  .kv-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kv-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .kv-recharge-header h4 {
    font-size: 18px;
  }
}

/*===============================================
    19. NEW HOMEPAGE REDESIGN
===============================================*/

/* HOME BANNER SECTION */
.home-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #15121b;
}

.home-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.home-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 18, 27, 0.4) 0%, rgba(21, 18, 27, 0.6) 100%);
  z-index: 1;
}

.home-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.banner-text-container {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 50%, #ffb784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-word {
  display: block;
  animation: slideInDown 0.8s ease-out backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BANNER SIDE TEXT */
.banner-side-text {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 20%;
  top: 0;
}

.banner-left {
  left: 0;
  animation: slideInLeft 1s ease-out 0.4s backwards;
}

.banner-right {
  right: 0;
  animation: slideInRight 1s ease-out 0.4s backwards;
  text-align: right;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.side-text-content {
  padding: 40px 30px;
  background: rgba(210, 187, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
}

.banner-left .side-text-content {
  border-left: 3px solid rgba(210, 187, 255, 0.3);
}

.banner-right .side-text-content {
  border-right: 3px solid rgba(210, 187, 255, 0.3);
}

.side-title {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.side-subtitle {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 500;
}

/* BANNER SIDE CONTENT */
.banner-side-content {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  width: auto;
  padding: 40px 30px;
}

.banner-left-content {
  left: 40px;
  animation: slideInLeft 1s ease-out 0.4s backwards;
  align-items: flex-start;
  text-align: left;
}

.banner-right-content {
  right: 40px;
  animation: slideInRight 1s ease-out 0.4s backwards;
  align-items: flex-end;
  text-align: right;
}

.banner-side-heading {
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.banner-side-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #e8dfee;
  text-decoration: none;
  padding: 12px 20px;
  background: rgba(210, 187, 255, 0.1);
  border: 1.5px solid rgba(210, 187, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.banner-side-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(210, 187, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.banner-side-link:hover {
  background: rgba(210, 187, 255, 0.15);
  border-color: rgba(210, 187, 255, 0.5);
  color: #d2bbff;
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.3);
}

.banner-side-link:hover::before {
  transform: translateX(100%);
}

.banner-side-link i {
  font-size: 16px;
}

/* RESPONSIVE BANNER */
@media (max-width: 1024px) {
  .banner-side-text {
    width: 15%;
  }

  .side-text-content {
    padding: 30px 20px;
  }

  .side-title {
    font-size: 24px;
  }

  .side-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .banner-side-heading {
    font-size: 16px;
  }

  .banner-side-link {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .banner-side-text {
    display: none;
  }

  .banner-side-content {
    display: none;
  }

  .banner-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
}
}

.banner-subtitle {
  font-size: 20px;
  color: var(--color-on-surface-variant);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.banner-cta {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary-glow {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary-glow:hover {
  box-shadow: 0 0 60px rgba(210, 187, 255, 0.8), 0 0 100px rgba(180, 197, 255, 0.5);
  transform: translateY(-3px);
}

.btn-primary-glow:hover::before {
  transform: translateX(100%);
}

.banner-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* FEATURED GAMES SLIDER */
.featured-games-section {
  padding: 128px 0;
  background: linear-gradient(180deg, #15121b 0%, #1d1a24 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--color-on-surface);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-on-surface-variant);
  max-width: 600px;
  margin: 0 auto;
}

.games-slider-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.games-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.games-slider::-webkit-scrollbar {
  height: 6px;
}

.games-slider::-webkit-scrollbar-track {
  background: rgba(210, 187, 255, 0.1);
  border-radius: 3px;
}

.games-slider::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d2bbff 0%, #b4c5ff 100%);
  border-radius: 3px;
}

.game-slide {
  flex: 0 0 360px;
  scroll-snap-align: start;
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.game-card-featured {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.game-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 18, 27, 0.7) 60%, rgba(21, 18, 27, 0.95) 100%);
}

.game-card-featured:hover .game-image {
  transform: scale(1.1) rotate(2deg);
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #e8dfee;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.game-summary {
  font-size: 13px;
  color: #ccc3d8;
  margin-bottom: 12px;
  line-height: 1.5;
  max-height: 40px;
  overflow: hidden;
}

.game-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d2bbff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.game-card-featured:hover .game-link {
  color: #b4c5ff;
  gap: 12px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(210, 187, 255, 0.15);
  border: 1px solid rgba(210, 187, 255, 0.4);
  border-radius: 8px;
  color: #d2bbff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(210, 187, 255, 0.3);
  border-color: #d2bbff;
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: -60px;
}

.slider-next {
  right: -60px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(210, 187, 255, 0.3);
  border: 1px solid rgba(210, 187, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, #d2bbff, #b4c5ff);
  border-color: #d2bbff;
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(210, 187, 255, 0.5);
}

/* SERVICES & POINTS SECTION */
.services-points-section {
  padding: 128px 0;
  background: #15121b;
  position: relative;
}

.points-system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.services-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-left {
  animation: slideInLeft 0.8s ease-out;
}

.services-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* BONUS TABLE WRAPPER */
.points-system-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.bonus-table-wrapper {
  animation: slideInUp 0.8s ease-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 100px;
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #e8dfee;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-align: left;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.bonus-table thead {
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.15) 0%, rgba(180, 197, 255, 0.1) 100%);
  border-bottom: 2px solid rgba(210, 187, 255, 0.3);
}

.bonus-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d2bbff;
}

.bonus-table th:last-child {
  text-align: right;
}

.bonus-table tbody tr {
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
  transition: all 0.3s ease;
}

.bonus-table tbody tr:hover {
  background: rgba(210, 187, 255, 0.05);
}

.bonus-table tbody tr:last-child {
  border-bottom: none;
}

.bonus-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: #e8dfee;
}

.range-cell {
  color: #ccc3d8;
  font-weight: 500;
}

.multiplier-cell {
  color: #d2bbff;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

.benefit-cell {
  text-align: right;
  color: #ccc3d8;
}

/* POINTS FORM WRAPPER */
.points-form-wrapper {
  background: linear-gradient(135deg, rgba(60, 55, 66, 0.8) 0%, rgba(34, 30, 40, 0.6) 100%);
  backdrop-filter: var(--backdrop-blur);
  border: 2px solid rgba(210, 187, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  animation: slideInUp 0.8s ease-out 0.2s backwards;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #e8dfee;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-align: left;
}

.form-subtitle {
  font-size: 13px;
  color: var(--color-on-surface-variant);
  margin-bottom: 16px;
  text-align: left;
}

.form-actions-center {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.form-actions-center .kv-btn {
  min-width: 280px;
}

/* FORM ROW 2-COLUMN LAYOUT */
.kv-form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

/* TOTAL POINTS FULL-WIDTH CENTERED */
.kv-total-points-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 20px;
}

.kv-total-points-group .kv-label {
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  color: #d2bbff;
}

.kv-total-points-group .kv-input {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px !important;
  min-height: 44px;
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.08) 0%, rgba(180, 197, 255, 0.08) 100%) !important;
  border: 1.5px solid rgba(210, 187, 255, 0.3) !important;
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #e8dfee;
  margin-bottom: 8px;
}

.bonus-subtitle {
  font-size: 13px;
  color: var(--color-on-surface-variant);
  margin-bottom: 24px;
}

.bonus-table {
  overflow-x: auto;
}

.bonus-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bonus-table thead {
  border-bottom: 2px solid rgba(210, 187, 255, 0.3);
}

.bonus-table th {
  padding: 12px 8px;
  text-align: left;
  font-weight: 700;
  color: #d2bbff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

.bonus-table td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
  color: #ccc3d8;
}

.bonus-row {
  transition: all 0.3s ease;
}

.bonus-row:hover {
  background: rgba(210, 187, 255, 0.05);
}

.tier-range {
  font-weight: 600;
  color: #e8dfee;
}

.tier-multiplier {
  color: #d2bbff;
  font-weight: 700;
  font-size: 14px;
}

.tier-benefit {
  font-size: 12px;
}

/* RECHARGE FORM WRAPPER */
.recharge-form-wrapper {
  animation: slideInRight 0.8s ease-out;
}

.recharge-form-card {
  background: linear-gradient(135deg, rgba(60, 55, 66, 0.8) 0%, rgba(34, 30, 40, 0.6) 100%);
  backdrop-filter: var(--backdrop-blur);
  border: 2px solid rgba(210, 187, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.15);
  transition: all 0.3s ease;
}

.recharge-form-card:hover {
  border-color: #d2bbff;
  box-shadow: 0 0 50px rgba(210, 187, 255, 0.25);
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #e8dfee;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-subtitle {
  font-size: 13px;
  color: var(--color-on-surface-variant);
  margin-bottom: 32px;
}

.points-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e8dfee;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: rgba(16, 13, 22, 0.8);
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 8px;
  color: #e8dfee;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #b4c5ff;
  background: rgba(16, 13, 22, 1);
  box-shadow: 0 0 20px rgba(180, 197, 255, 0.2);
}

.currency-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: #d2bbff;
  font-size: 12px;
}

.points-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: rgba(210, 187, 255, 0.05);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 8px;
}

.points-item {
  text-align: center;
  padding: 12px;
  background: rgba(34, 30, 40, 0.5);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.points-item.bonus {
  background: rgba(255, 183, 132, 0.1);
  border: 1px solid rgba(255, 183, 132, 0.3);
}

.points-item.total {
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.3);
}

.points-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-on-surface-variant);
  margin-bottom: 6px;
}

.points-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #b4c5ff;
  font-family: 'Monaco', monospace;
}

.bonus-value {
  color: #ffb784;
}

.total-value {
  color: #d2bbff;
}

.btn-submit {
  padding: 14px 24px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.3);
  width: 100%;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-submit:hover {
  box-shadow: 0 0 40px rgba(210, 187, 255, 0.6);
  transform: translateY(-2px);
}

.btn-submit:hover::before {
  transform: translateX(100%);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.disclaimer-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(210, 187, 255, 0.05);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--color-on-surface-variant);
}

.disclaimer-box svg {
  color: #d2bbff;
  flex-shrink: 0;
}

/* INFO BANNER SECTION */
.info-banner-section {
  padding: 128px 0;
  background: linear-gradient(180deg, #1d1a24 0%, #15121b 100%);
}

.info-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-content {
  max-width: 500px;
}

.info-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #e8dfee;
  letter-spacing: -0.01em;
}

.info-highlight {
  background: linear-gradient(135deg, #d2bbff, #b4c5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-description {
  font-size: 16px;
  color: #ccc3d8;
  line-height: 1.8;
  margin-bottom: 24px;
}

.info-features {
  list-style: none;
  margin-bottom: 32px;
}

.info-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #ccc3d8;
  font-size: 14px;
}

.feature-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #d2bbff;
  color: #d2bbff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(210, 187, 255, 0.15);
  border-color: #b4c5ff;
  color: #b4c5ff;
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.2);
}

.info-visual {
  position: relative;
  height: 400px;
}

.animated-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.animated-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(210, 187, 255, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateZ(0deg); }
  50% { transform: translateY(-20px) rotateZ(2deg); }
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 187, 255, 0.4) 0%, transparent 70%);
  filter: blur(30px);
}

.element-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation: pulse-glow 4s ease-in-out infinite;
}

.element-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  background: radial-gradient(circle, rgba(180, 197, 255, 0.3) 0%, transparent 70%);
  animation: pulse-glow 5s ease-in-out infinite 0.5s;
}

.element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: -20px;
  background: radial-gradient(circle, rgba(255, 183, 132, 0.3) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite 1s;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* SERVICES SHOWCASE */
.services-showcase-section {
  padding: 128px 0;
  background: #15121b;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-showcase-card {
  position: relative;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 18, 27, 0.8) 70%, rgba(21, 18, 27, 0.95) 100%);
  z-index: 2;
}

.service-showcase-card:hover .service-image img {
  transform: scale(1.08) rotate(-2deg);
}

.service-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}

.service-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #e8dfee;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.service-price {
  font-family: var(--font-label);
  font-size: 13px;
  color: #d2bbff;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-status {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  border-radius: 4px;
  color: #10b981;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-load-more {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  animation: fadeInUp 0.6s ease-out;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-load-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-load-more:hover {
  box-shadow: 0 0 40px rgba(210, 187, 255, 0.6);
  transform: translateY(-2px);
}

.btn-load-more:hover::before {
  transform: translateX(100%);
}

.btn-load-more:active {
  transform: translateY(0);
}

.btn-load-more.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-load-more svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .services-grid-container,
  .points-system-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-banner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-visual {
    height: 300px;
  }

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

@media (max-width: 768px) {
  .home-banner {
    min-height: 80vh;
  }

  .banner-title {
    font-size: 2rem;
  }

  .game-slide {
    flex: 0 0 280px;
  }

  .slider-prev,
  .slider-next {
    display: none;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .bonus-info-card,
  .recharge-form-card {
    padding: 24px;
  }

  .points-display {
    grid-template-columns: 1fr;
  }

  .info-title {
    font-size: 1.75rem;
  }

  .services-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  /* RESPONSIVE TABLE */
  .bonus-table {
    font-size: 12px;
  }

  .bonus-table th,
  .bonus-table td {
    padding: 12px 16px;
  }

  .range-cell,
  .benefit-cell {
    font-size: 12px;
  }

  .multiplier-cell {
    font-size: 14px;
  }

  /* RESPONSIVE FORM */
  .points-system-container {
    grid-template-columns: 1fr;
  }

  .points-form-wrapper {
    padding: 32px 24px;
  }

  .kv-form-row-3 {
    grid-template-columns: 1fr;
  }

  .kv-form-row-2 {
    grid-template-columns: 1fr;
  }

  .form-actions-center .kv-btn {
    width: 100%;
    min-width: unset;
  }

  .kv-footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/*===============================================
    23. DASHBOARD MODERN DESIGN
===============================================*/
.kv-dashboard-section {
  padding: 60px 0;
  background: #15121b;
}

.kv-dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar */
.kv-sidebar-card {
  background: linear-gradient(135deg, rgba(60, 55, 66, 0.8) 0%, rgba(34, 30, 40, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.kv-sidebar-header {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
  margin-bottom: 20px;
}

.kv-sidebar-header i {
  font-size: 28px;
  color: #d2bbff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 187, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.kv-sidebar-user h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0 0 4px 0;
}

.kv-sidebar-user p {
  font-size: 12px;
  color: #d5cde0;
  margin: 0;
}

.kv-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kv-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #d5cde0;
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: none;
}

.kv-sidebar-link i {
  font-size: 14px;
}

.kv-sidebar-link.active {
  background: rgba(210, 187, 255, 0.2);
  color: #e8dfee;
  border-left: 3px solid #d2bbff;
  padding-left: 13px;
  font-weight: 600;
}

.kv-sidebar-logout {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  color: #ff8787;
}

/* Main Content */
.kv-dashboard-main {
  display: flex;
  flex-direction: column;
}

.kv-dashboard-tab {
  display: none;
}

.kv-dashboard-tab.active {
  display: block;
}

.kv-dashboard-card {
  background: linear-gradient(135deg, rgba(60, 55, 66, 0.8) 0%, rgba(34, 30, 40, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
}

.kv-dashboard-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kv-dashboard-card-title i {
  color: #b4c5ff;
  font-size: 20px;
}

/* Table */
.kv-dashboard-table-wrapper {
  overflow-x: auto;
}

.kv-dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.kv-dashboard-table thead {
  background: rgba(210, 187, 255, 0.12);
  border-bottom: 2px solid rgba(210, 187, 255, 0.3);
}

.kv-dashboard-table th {
  padding: 14px;
  text-align: left;
  color: #e8dfee;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.kv-dashboard-table tbody tr {
  border-bottom: 1px solid rgba(210, 187, 255, 0.15);
}

.kv-dashboard-table tbody tr:hover {
  background: rgba(210, 187, 255, 0.05);
}

.kv-dashboard-table td {
  padding: 16px 14px;
  color: #e8dfee;
}

.kv-order-number {
  font-weight: 600;
  color: #e8dfee;
  display: block;
}

.kv-order-date {
  font-size: 11px;
  color: #b8a8c9;
}

.kv-order-price {
  color: #10b981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kv-order-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.kv-order-status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.kv-order-status-confirmed {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.kv-order-status-completed {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.kv-order-status-cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.kv-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(210, 187, 255, 0.15);
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 6px;
  color: #b4c5ff;
  text-decoration: none;
  font-size: 14px;
}

/* Empty State */
.kv-dashboard-empty {
  text-align: center;
  padding: 60px 40px;
}

.kv-dashboard-empty i {
  font-size: 48px;
  color: #b4c5ff;
  opacity: 0.6;
  display: block;
  margin-bottom: 20px;
}

.kv-dashboard-empty h4 {
  font-size: 16px;
  color: #e8dfee;
  margin: 0 0 24px 0;
}

/* Alerts */
.kv-alert {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.kv-alert i {
  font-size: 16px;
  flex-shrink: 0;
}

.kv-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.kv-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Responsive */
@media (max-width: 1024px) {
  .kv-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .kv-sidebar-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .kv-dashboard-section {
    padding: 40px 0;
  }

  .kv-dashboard-card {
    padding: 20px;
  }

  .kv-dashboard-table {
    font-size: 12px;
  }

  .kv-dashboard-table th,
  .kv-dashboard-table td {
    padding: 10px 8px;
  }

  .kv-sidebar-header {
    flex-direction: column;
    text-align: center;
  }

  .kv-sidebar-header i {
    width: 40px;
    height: 40px;
  }
}

/*===============================================
    24. ABOUT US MODERN SECTION
===============================================*/
.kv-about-modern-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
  overflow: hidden;
}

.kv-about-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images Side */
.kv-about-modern-images {
  position: relative;
}

.kv-about-image-container {
  position: relative;
  height: 500px;
}

.kv-about-image-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.15), 0 0 80px rgba(210, 187, 255, 0.05);
  border: 1px solid rgba(210, 187, 255, 0.2);
}

.kv-about-image-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.kv-about-modern-images:hover .kv-about-image-primary img {
  transform: scale(1.02);
}

.kv-about-image-secondary {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(34, 30, 40, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.25);
  box-shadow: 0 10px 40px rgba(210, 187, 255, 0.1), 0 0 60px rgba(124, 58, 237, 0.08);
  z-index: 2;
  transition: all 0.3s ease;
}

.kv-about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-about-modern-images:hover .kv-about-image-secondary {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(210, 187, 255, 0.15), 0 0 80px rgba(124, 58, 237, 0.1);
}

.kv-about-image-tertiary {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(34, 30, 40, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.25);
  box-shadow: 0 10px 40px rgba(210, 187, 255, 0.1), 0 0 60px rgba(124, 58, 237, 0.08);
  z-index: 3;
  transition: all 0.3s ease;
}

.kv-about-image-tertiary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-about-modern-images:hover .kv-about-image-tertiary {
  transform: translateY(4px);
  box-shadow: 0 15px 50px rgba(210, 187, 255, 0.15), 0 0 80px rgba(124, 58, 237, 0.1);
}

/* Content Side */
.kv-about-modern-content {
  padding: 20px;
}

.kv-about-modern-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  background: rgba(180, 197, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 20px;
}

.kv-about-modern-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #e8dfee;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.kv-about-modern-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #d2bbff;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.kv-about-modern-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.kv-about-modern-text:last-of-type {
  margin-bottom: 28px;
}

/*-----------------------------------
  FEATURES MODERN SECTION
-----------------------------------*/
.kv-features-modern-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0d13 0%, #15121b 100%);
  position: relative;
}

.kv-features-modern-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.kv-features-modern-grid {
  position: relative;
  z-index: 1;
}

.kv-features-modern-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.kv-features-modern-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #e8dfee;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.kv-features-modern-subtitle {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.kv-features-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.kv-feature-modern-card {
  background: rgba(34, 30, 40, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(124, 58, 237, 0.05);
}

.kv-feature-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.1) 0%, rgba(180, 197, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.kv-feature-modern-card:hover {
  border-color: rgba(210, 187, 255, 0.3);
  background: rgba(34, 30, 40, 0.7);
  box-shadow: 0 10px 40px rgba(210, 187, 255, 0.15), 0 0 60px rgba(124, 58, 237, 0.1);
  transform: translateY(-4px);
}

.kv-feature-modern-card:hover::before {
  opacity: 1;
}

.kv-feature-modern-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(180, 197, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(180, 197, 255, 0.2);
}

.kv-feature-modern-card:hover .kv-feature-modern-icon-wrapper {
  background: rgba(180, 197, 255, 0.15);
  border-color: rgba(180, 197, 255, 0.4);
  transform: translateY(-6px);
}

.kv-feature-modern-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.kv-feature-modern-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e8dfee;
  margin: 0 0 16px 0;
}

.kv-feature-modern-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

/*-----------------------------------
  ABOUT SPLIT MODERN SECTION
-----------------------------------*/
.kv-about-split-modern {
  padding: 80px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-about-split-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.kv-split-modern-content {
  padding: 20px;
}

.kv-split-modern-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  background: rgba(180, 197, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 16px;
}

.kv-split-modern-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #e8dfee;
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.kv-split-modern-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.kv-split-modern-image {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(210, 187, 255, 0.2);
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.12), 0 0 80px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.kv-split-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kv-split-modern-image:hover img {
  transform: scale(1.02);
}

.kv-split-modern-image:hover {
  box-shadow: 0 30px 60px rgba(210, 187, 255, 0.15), 0 0 100px rgba(124, 58, 237, 0.12);
}

/*-----------------------------------
  MODERN BUTTON STYLES
-----------------------------------*/
.kv-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.kv-btn-modern-primary {
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  box-shadow: 0 4px 20px rgba(210, 187, 255, 0.2);
}

.kv-btn-modern-primary:hover {
  box-shadow: 0 12px 40px rgba(210, 187, 255, 0.4), 0 0 30px rgba(180, 197, 255, 0.2);
  transform: translateY(-3px);
}

.kv-btn-modern-secondary {
  background: transparent;
  color: #b4c5ff;
  border: 1.5px solid #b4c5ff;
  box-shadow: 0 0 20px rgba(180, 197, 255, 0.1);
}

.kv-btn-modern-secondary:hover {
  background: rgba(180, 197, 255, 0.1);
  border-color: #d2bbff;
  color: #d2bbff;
  box-shadow: 0 0 40px rgba(210, 187, 255, 0.2), 0 0 60px rgba(180, 197, 255, 0.15);
  transform: translateY(-2px);
}

/*-----------------------------------
  CONTACT MODERN SECTION
-----------------------------------*/
.kv-contact-modern-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.kv-contact-form-side {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.08);
}

.kv-contact-form-header {
  margin-bottom: 30px;
}

.kv-contact-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.kv-contact-form-desc {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.kv-contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kv-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #d2bbff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-form-input {
  background-color: rgba(21, 18, 27, 0.6);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #e8dfee;
  transition: all 0.3s ease;
}

.kv-form-input::placeholder {
  color: #8b7fa8;
}

.kv-form-input:focus {
  outline: none;
  border-color: #b4c5ff;
  background-color: rgba(21, 18, 27, 0.8);
  box-shadow: 0 0 20px rgba(180, 197, 255, 0.2);
}

.kv-form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}

.kv-form-error {
  font-size: 12px;
  color: #ffb4ab;
  margin-top: 4px;
}

.kv-captcha-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

label.error {
  color: #ec1c24;
  margin-left: 10px;
  text-transform: none;
  font-weight: 400;
}
.kv-contact-form-modern .kv-captcha-flex {
  grid-template-columns: 2fr 1fr;
}
.kv-contact-form-modern .kv-captcha-flex .kv-captcha-code img{
  height: 46px !important;
}
.kv-captcha-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kv-captcha-code {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  min-height: 48px;
}

.kv-captcha-code img {
  height: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.kv-form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.kv-form-alert-error {
  background-color: rgba(147, 0, 10, 0.1);
  border: 1px solid rgba(255, 180, 171, 0.3);
  color: #ffb4ab;
}

.kv-form-alert ul {
  margin: 0;
  padding-left: 20px;
}

.kv-form-alert li {
  margin-bottom: 4px;
}

.kv-contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
}

.kv-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.kv-contact-info-item {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(210, 187, 255, 0.05);
}

.kv-contact-info-item:first-child {
  border-radius: 12px 12px 0 0;
}

.kv-contact-info-item:last-child {
  border-radius: 0 0 12px 12px;
  border-bottom: none;
}

.kv-contact-info-item:hover {
  background: rgba(60, 55, 66, 0.7);
  border-color: rgba(210, 187, 255, 0.2);
  box-shadow: 0 10px 30px rgba(210, 187, 255, 0.1);
}

.kv-info-icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.2), rgba(180, 197, 255, 0.1));
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 8px;
  color: #d2bbff;
}

.kv-info-icon svg {
  stroke: currentColor;
}

.kv-info-content {
  flex: 1;
}

.kv-info-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.kv-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #e8dfee;
  margin: 0;
  line-height: 1.5;
}

.kv-info-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #d2bbff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kv-info-link:hover {
  color: #b4c5ff;
}

/*-----------------------------------
  BREADCRUMB SECTION WITH VIDEO
-----------------------------------*/
.kv-page-breadcrumb-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  overflow: hidden;
}

.kv-page-breadcrumb-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.kv-page-breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 18, 27, 0.5) 0%, rgba(21, 18, 27, 0.7) 100%);
  z-index: 1;
}

.kv-page-breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.kv-page-breadcrumb-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.kv-breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.kv-breadcrumb-link {
  color: #d2bbff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.kv-breadcrumb-link:hover {
  color: #b4c5ff;
  text-decoration: underline;
}

.kv-breadcrumb-divider {
  color: #8b7fa8;
}

.kv-breadcrumb-current {
  color: #cbd5e1;
}

/*-----------------------------------
  CENTERED AUTH FORMS
-----------------------------------*/
.kv-contact-form-centered {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.08);
}

.kv-auth-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-auth-link-group {
  display: flex;
  flex-direction: row;
  gap: 6px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.kv-auth-link-group span {
  font-size: 13px;
  color: #cbd5e1;
}

.kv-link-primary {
  color: #d2bbff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.kv-link-primary:hover {
  color: #b4c5ff;
  text-decoration: underline;
}

/*-----------------------------------
  MODERN ORDER PAGES
-----------------------------------*/
.kv-order-section-modern {
  padding: 60px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-order-section-failed {
  background: linear-gradient(180deg, rgba(147, 0, 10, 0.05) 0%, #0f0d13 100%);
}

.kv-order-wrapper-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.kv-order-icon-modern {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 187, 255, 0.1);
  border: 2px solid rgba(210, 187, 255, 0.2);
  border-radius: 50%;
  color: #d2bbff;
  animation: pulse 2s infinite;
}

.kv-order-icon-success {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.kv-order-icon-failed {
  background: rgba(255, 180, 171, 0.1);
  border-color: rgba(255, 180, 171, 0.3);
  color: #ffb4ab;
}

.kv-order-icon-modern svg {
  width: 60px;
  height: 60px;
  stroke: currentColor;
}

.kv-order-title-modern {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.kv-order-title-success {
  color: #e8dfee;
}

.kv-order-title-failed {
  color: #ffb4ab;
}

.kv-order-card-modern {
  width: 100%;
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.kv-order-card-header-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
  font-weight: 600;
  font-size: 14px;
  color: #e8dfee;
}

.kv-order-card-header-success {
  color: #4ade80;
}

.kv-order-card-header-failed {
  color: #ffb4ab;
}

.kv-order-card-header-modern svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.kv-order-card-body-modern {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kv-order-detail-row-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(210, 187, 255, 0.05);
}

.kv-order-detail-row-modern:last-child {
  border-bottom: none;
}

.kv-order-detail-label-modern {
  font-size: 13px;
  color: #cbd5e1;
}

.kv-order-detail-value-modern {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-order-status-success-modern {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.kv-order-status-failed-modern {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffb4ab;
  background: rgba(255, 180, 171, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.kv-order-status-success-modern svg,
.kv-order-status-failed-modern svg {
  width: 14px;
  height: 14px;
}

.kv-order-message-modern {
  width: 100%;
  padding: 24px;
  background: rgba(60, 55, 66, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-order-message-modern h2 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #e8dfee;
}

.kv-order-message-modern p {
  margin: 8px 0;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.kv-order-contact-modern {
  color: #8b7fa8;
  font-size: 13px;
  margin-top: 12px !important;
}

.kv-order-help-card-modern {
  width: 100%;
  padding: 24px;
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
}

.kv-order-help-header-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.kv-order-help-header-modern h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-order-help-header-modern svg {
  width: 20px;
  height: 20px;
  color: #d2bbff;
  stroke: currentColor;
}

.kv-order-help-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv-order-help-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(210, 187, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #d2bbff;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

.kv-order-help-list-modern svg {
  width: 18px;
  height: 18px;
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
}

.kv-order-contact-card-modern {
  margin-top: 16px;
}

.kv-order-contact-card-modern p {
  margin: 0;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

.kv-order-contact-card-modern a {
  color: #d2bbff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.kv-order-contact-card-modern a:hover {
  color: #b4c5ff;
  text-decoration: underline;
}

.kv-order-actions-modern {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv-order-actions-modern .kv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.kv-order-info-modern {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kv-order-info-item-modern {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(60, 55, 66, 0.3);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 8px;
  text-align: left;
}

.kv-order-info-icon-modern {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 8px;
  color: #d2bbff;
}

.kv-order-info-icon-modern svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.kv-order-info-item-modern h4 {
  margin: 0 0 6px 0;
  font-size: 13px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-order-info-item-modern p {
  margin: 0;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.4;
}

.kv-order-info-item-modern a {
  color: #d2bbff;
  text-decoration: none;
}

.kv-order-info-item-modern a:hover {
  text-decoration: underline;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(210, 187, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(210, 187, 255, 0);
  }
}

/*-----------------------------------
  MODERN CHECKOUT SECTION
-----------------------------------*/
.kv-checkout-section-modern {
  padding: 60px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-checkout-container-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.kv-checkout-column-modern {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kv-checkout-full-width {
  grid-column: 1 / -1;
}

.kv-checkout-column-centered-modern {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.kv-checkout-column-centered-modern > .kv-checkout-section-modern {
  width: 100%;
  max-width: 600px;
}

.kv-checkout-button-container-modern {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.kv-checkout-section-modern {
  padding: 24px;
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.08);
}

.kv-checkout-section-header-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(210, 187, 255, 0.2);
}

.kv-checkout-section-header-modern svg {
  width: 24px;
  height: 24px;
  color: #d2bbff;
  stroke: currentColor;
  flex-shrink: 0;
}

.kv-checkout-section-header-modern h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-checkout-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kv-checkout-card-modern {
  background: rgba(21, 18, 27, 0.4);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.kv-checkout-card-title-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-checkout-card-title-modern svg {
  width: 20px;
  height: 20px;
  color: #d2bbff;
  stroke: currentColor;
}

.kv-checkout-form-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kv-checkout-form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kv-checkout-form-group-modern-full {
  grid-column: 1 / -1;
}

.kv-label {
  font-size: 12px;
  font-weight: 600;
  color: #d2bbff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-input {
  background-color: rgba(21, 18, 27, 0.6);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #e8dfee;
  transition: all 0.3s ease;
}

.kv-input::placeholder {
  color: #8b7fa8;
}

.kv-input:focus {
  outline: none;
  border-color: #b4c5ff;
  background-color: rgba(21, 18, 27, 0.8);
  box-shadow: 0 0 20px rgba(180, 197, 255, 0.2);
}

.kv-select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23d2bbff" d="M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.kv-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Inter', sans-serif;
}

.kv-error {
  font-size: 12px;
  color: #ffb4ab;
  margin-top: 4px;
}

.kv-card-expiry {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-card-expiry input {
  flex: 1;
}

.kv-card-separator {
  color: #8b7fa8;
  font-weight: 600;
}

.kv-checkout-terms-modern {
  padding: 24px;
}

.kv-terms-group-modern {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(210, 187, 255, 0.05);
  border-radius: 8px;
}

.kv-terms-group-modern:last-of-type {
  margin-bottom: 0;
}

.kv-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: #d2bbff;
}

.kv-terms-group-modern label {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  cursor: pointer;
}

.kv-terms-group-modern a {
  color: #d2bbff;
  text-decoration: none;
  font-weight: 600;
}

.kv-terms-group-modern a:hover {
  text-decoration: underline;
  color: #b4c5ff;
}

.kv-terms-note-modern {
  gap: 10px;
  font-size: 14px;
  color: #e8dfee;
  font-weight: 600;
  margin: 16px 0 0 0;
  padding: 14px;
  background: rgba(210, 187, 255, 0.15);
  border: 1px solid rgba(210, 187, 255, 0.3);
  border-radius: 8px;
  line-height: 1.4;
}

.kv-terms-note-modern img {
  width: 103px;
  margin: 0;
  display: inline-block;
}

.kv-payment-icon-modern {
  width: 100%;
  max-width: 240px;
  margin: 16px auto 0;
  display: block;
  opacity: 1;
}

/* Order Summary */
.kv-checkout-order-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kv-checkout-order-table-modern {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  padding-top: 16px;
}

.kv-checkout-order-item-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(210, 187, 255, 0.05);
  font-size: 13px;
}

.kv-checkout-order-item-modern:last-child {
  border-bottom: none;
}

.kv-checkout-order-modern-points {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.kv-checkout-order-modern-points svg {
  color: #d2bbff;
  width: 14px;
  height: 14px;
}

.kv-checkout-order-modern-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #d2bbff;
}

.kv-checkout-order-modern-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-checkout-order-modern-total-value {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d2bbff;
}

.kv-checkout-order-modern-total-value svg {
  width: 16px;
  height: 16px;
}

/* Captcha */
.kv-checkout-captcha-modern {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 12px;
  padding: 16px;
  background: rgba(210, 187, 255, 0.05);
  border-radius: 8px;
  margin: 16px 0;
  align-items: center;
}

.kv-captcha-input-modern {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kv-captcha-image-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 8px 0;
  min-height: 48px;
}

.kv-captcha-image-modern img {
  height: 42px !important;
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.kv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.kv-btn-accent {
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  box-shadow: 0 8px 24px rgba(210, 187, 255, 0.2);
}

.kv-btn-accent:hover {
  box-shadow: 0 12px 32px rgba(210, 187, 255, 0.3);
}

.kv-btn-outline {
  background: transparent;
  border: 1px solid rgba(210, 187, 255, 0.3);
  color: #d2bbff;
}

.kv-btn-outline:hover {
  background: rgba(210, 187, 255, 0.1);
  border-color: rgba(210, 187, 255, 0.5);
  box-shadow: none;
}

.kv-btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.w-100 {
  width: 100%;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
  .kv-checkout-container-modern {
    grid-template-columns: 1fr;
  }

  .kv-checkout-form-grid-modern {
    grid-template-columns: 1fr;
  }

  .kv-checkout-column-modern {
    grid-column: 1 / -1;
  }

  .kv-checkout-full-width {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .kv-checkout-section-modern {
    padding: 40px 0;
  }

  .kv-checkout-container-modern {
    gap: 24px;
  }

  .kv-checkout-card-modern {
    padding: 16px;
  }

  .kv-checkout-section-header-modern {
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .kv-checkout-section-header-modern h2 {
    font-size: 18px;
  }

  .kv-checkout-captcha-modern {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/*-----------------------------------
  MODERN CART SECTION
-----------------------------------*/
.kv-cart-section-modern {
  padding: 60px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-cart-grid-modern {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.kv-cart-items-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kv-cart-table-wrapper-modern {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.kv-cart-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-cart-header-modern h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-cart-item-count {
  font-size: 12px;
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.kv-cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kv-cart-item-modern {
  display: grid;
  grid-template-columns: 1fr 120px 40px;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.05);
  align-items: center;
  transition: all 0.3s ease;
}

.kv-cart-item-modern:last-child {
  border-bottom: none;
}

.kv-cart-item-modern:hover {
  background: rgba(210, 187, 255, 0.05);
}

.kv-cart-item-points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #e8dfee;
}

.kv-cart-item-points svg {
  color: #d2bbff;
  width: 18px;
  height: 18px;
}

.kv-cart-item-price {
  text-align: right;
}

.kv-cart-price-modern {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-cart-item-action {
  display: flex;
  justify-content: flex-end;
}

.kv-cart-remove-modern {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 171, 0.1);
  border: 1px solid rgba(255, 180, 171, 0.2);
  border-radius: 8px;
  color: #ffb4ab;
  transition: all 0.3s ease;
  cursor: pointer;
}

.kv-cart-remove-modern:hover {
  background: rgba(255, 180, 171, 0.2);
  border-color: rgba(255, 180, 171, 0.4);
  transform: scale(1.05);
}

.kv-cart-remove-modern svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Game Cart Items */
.kv-cart-items-list-game {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kv-cart-item-game-modern {
  display: grid;
  grid-template-columns: 80px 1fr 100px 40px;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.05);
  align-items: center;
  transition: all 0.3s ease;
}

.kv-cart-item-game-modern:last-child {
  border-bottom: none;
}

.kv-cart-item-game-modern:hover {
  background: rgba(210, 187, 255, 0.05);
}

.kv-cart-product-thumb-modern {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(21, 18, 27, 0.6);
}

.kv-cart-product-thumb-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-cart-product-thumb-modern a {
  display: block;
  width: 100%;
  height: 100%;
}

.kv-cart-product-info-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kv-cart-product-title-modern {
  color: #e8dfee;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.kv-cart-product-title-modern:hover {
  color: #d2bbff;
}

.kv-cart-product-hours-modern {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.kv-hours-value-modern {
  color: #b4c5ff;
  font-weight: 600;
}

.kv-hours-price-modern {
  color: #8b7fa8;
  font-size: 11px;
}

/* Empty Cart */
.kv-cart-empty-modern {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.kv-cart-empty-icon-modern {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  color: #d2bbff;
}

.kv-cart-empty-icon-modern svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
}

.kv-cart-empty-modern h3 {
  margin: 0;
  font-size: 20px;
  color: #e8dfee;
}

/* Cart Summary */
.kv-cart-summary-modern {
  position: sticky;
  top: 100px;
}

.kv-cart-summary-card-modern {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.08);
}

.kv-cart-summary-title-modern {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-cart-summary-divider-modern {
  height: 1px;
  background: rgba(210, 187, 255, 0.1);
  margin: 0;
}

.kv-cart-summary-row-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kv-cart-summary-total-modern {
  padding: 16px 0;
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-cart-summary-label-modern {
  font-size: 14px;
  color: #cbd5e1;
}

.kv-cart-summary-value-modern {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-cart-summary-actions-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Credits Banner */
.kv-credits-banner-modern {
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.1), rgba(180, 197, 255, 0.05));
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #e8dfee;
  font-size: 14px;
}

.kv-credits-banner-modern svg {
  color: #d2bbff;
  width: 20px;
  height: 20px;
}

.kv-credits-value-modern {
  color: #d2bbff;
  font-weight: 700;
}

/* Redesigned Cart Layout */
.kv-cart-container-redesign {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.kv-cart-items-column-redesign {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.kv-cart-summary-column-redesign {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.kv-cart-card-redesign {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.08);
}

.kv-cart-header-redesign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.2);
}

.kv-cart-header-title-redesign {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.kv-cart-header-title-redesign h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-cart-header-title-redesign svg {
  color: #d2bbff;
  width: 24px;
  height: 24px;
}

.kv-cart-item-count-redesign {
  font-size: 12px;
  color: #d2bbff;
  background: rgba(210, 187, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.kv-cart-items-list-redesign {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kv-cart-items-header-redesign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(210, 187, 255, 0.25);
  font-size: 11px;
  font-weight: 700;
  color: #d2bbff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kv-cart-header-col-product {
  width: 60px;
  flex-shrink: 0;
}

.kv-cart-header-col-service {
  flex: 1;
  min-width: 150px;
}

.kv-cart-header-col-points {
  white-space: nowrap;
}

.kv-cart-header-col-price {
  text-align: center;
  justify-self: center;
  white-space: nowrap;
}

.kv-cart-header-col-action {
  text-align: center;
  justify-self: end;
  white-space: nowrap;
}

.kv-cart-item-row-redesign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px;
  background: rgba(210, 187, 255, 0.03);
  border: 1px solid rgba(210, 187, 255, 0.08);
  border-radius: 8px;
  gap: 20px;
}

.kv-cart-item-row-redesign:last-child {
  border-bottom: 1px solid rgba(210, 187, 255, 0.08);
}

.kv-cart-item-point-redesign {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-size: 13px;
  flex-shrink: 0;
}

.kv-cart-item-point-redesign svg {
  color: #d2bbff;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.kv-cart-item-price-redesign {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #d2bbff;
  font-size: 14px;
  text-align: center;
  justify-self: center;
}

.kv-cart-remove-btn-redesign {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 171, 0.1);
  border: 1px solid rgba(255, 180, 171, 0.2);
  border-radius: 6px;
  color: #ffb4ab;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.kv-cart-remove-btn-redesign:hover {
  background: rgba(255, 180, 171, 0.2);
  border-color: rgba(255, 180, 171, 0.4);
}

.kv-cart-remove-btn-redesign svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.kv-cart-item-game-redesign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px;
  background: rgba(210, 187, 255, 0.03);
  border: 1px solid rgba(210, 187, 255, 0.08);
  border-radius: 8px;
  gap: 16px;
}

.kv-game-product-column {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.kv-cart-item-game-redesign:last-child {
  border-bottom: 1px solid rgba(210, 187, 255, 0.08);
}

.kv-game-item-thumb-redesign {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(210, 187, 255, 0.1);
}

.kv-game-item-thumb-redesign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-game-item-thumb-redesign a {
  display: block;
  width: 100%;
  height: 100%;
}

.kv-game-item-info-redesign {
  flex: 1;
  min-width: 150px;
}

.kv-game-item-title-redesign {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #d2bbff;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.kv-game-item-title-redesign:hover {
  color: #b4c5ff;
}

.kv-game-item-hours-redesign {
  font-size: 11px;
  color: #8b7fa8;
  line-height: 1.3;
}

.kv-game-item-points-redesign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #d2bbff;
  font-size: 13px;
  white-space: nowrap;
}

.kv-game-item-points-redesign svg {
  width: 14px;
  height: 14px;
  color: #d2bbff;
  flex-shrink: 0;
}

.kv-cart-empty-redesign {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
}

.kv-cart-empty-icon-redesign {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 187, 255, 0.1);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 12px;
  color: #d2bbff;
}

.kv-cart-empty-icon-redesign svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
}

.kv-cart-empty-redesign h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  color: #e8dfee;
}

.kv-cart-summary-header-redesign {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.2);
}

.kv-cart-summary-header-redesign h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-cart-summary-header-redesign svg {
  color: #d2bbff;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.kv-cart-summary-divider-redesign {
  height: 1px;
  background: rgba(210, 187, 255, 0.1);
  margin: 0;
}

.kv-cart-summary-total-redesign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
  color: #e8dfee;
}

.kv-cart-summary-total-value-redesign {
  color: #d2bbff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
}

.kv-cart-checkout-btn-redesign {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  margin-top: 20px;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  border: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(210, 187, 255, 0.2);
}

.kv-cart-checkout-btn-redesign:hover {
  box-shadow: 0 12px 32px rgba(210, 187, 255, 0.3);
}

.kv-cart-checkout-btn-redesign svg {
  width: 18px;
  height: 18px;
}

.kv-cart-close-btn-redesign {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(210, 187, 255, 0.3);
  color: #d2bbff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.kv-cart-close-btn-redesign:hover {
  background: rgba(210, 187, 255, 0.1);
  border-color: rgba(210, 187, 255, 0.5);
}

.kv-cart-close-btn-redesign svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Responsive Cart */
@media (max-width: 1024px) {
  .kv-cart-container-redesign {
    gap: 40px;
  }

  .kv-cart-summary-column-redesign {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .kv-cart-container-redesign {
    gap: 32px;
  }

  .kv-cart-card-redesign {
    padding: 20px;
  }

  .kv-cart-item-game-redesign {
    grid-template-columns: auto 1fr auto;
    padding: 12px;
  }

  .kv-game-item-thumb-redesign {
    width: 50px;
    height: 50px;
  }

  .kv-game-item-title-redesign {
    font-size: 12px;
  }

  .kv-cart-items-header-redesign {
    font-size: 10px;
  }
}

/*-----------------------------------
  MINI SHOPPING CART SIDEBAR
-----------------------------------*/
.kv-mini-cart-wrapper {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(15, 12, 19, 0.98) 0%, rgba(21, 18, 27, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(210, 187, 255, 0.1);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.kv-mini-cart-wrapper.active {
  right: 0;
}

.kv-mini-cart-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.kv-mini-cart-close {
  align-self: flex-end;
  background: rgba(210, 187, 255, 0.08);
  border: 1px solid rgba(210, 187, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #d2bbff;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}

.kv-mini-cart-close:hover {
  background: rgba(210, 187, 255, 0.15);
  border-color: rgba(210, 187, 255, 0.3);
  color: #b4c5ff;
}

.kv-mini-cart-widget {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kv-mini-cart-title {
  font-size: 18px;
  font-weight: 700;
  color: #d2bbff;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kv-mini-cart-items-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.08);
}

.kv-mini-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kv-mini-cart-item {
  position: relative;
  background: rgba(210, 187, 255, 0.04);
  border: 1px solid rgba(210, 187, 255, 0.08);
  border-radius: 10px;
  padding: 14px;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.kv-mini-cart-item:hover {
  background: rgba(210, 187, 255, 0.08);
  border-color: rgba(210, 187, 255, 0.15);
}

.kv-mini-cart-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffb4ab;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 10;
  flex-shrink: 0;
}

.kv-mini-cart-remove:hover {
  background: rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.4);
  color: #ff6b6b;
}

.kv-mini-cart-product {
  display: flex;
  gap: 12px;
  text-decoration: none;
  margin-right: 24px;
}

.kv-mini-cart-product img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  background: rgba(210, 187, 255, 0.1);
}

.kv-mini-cart-product p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #d2bbff;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kv-mini-cart-product:hover p {
  color: #b4c5ff;
}

.kv-mini-cart-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
}

.kv-mini-cart-points {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.kv-mini-cart-price-value {
  font-size: 13px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-mini-cart-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: rgba(210, 187, 255, 0.06);
  border-radius: 6px;
  border-left: 2px solid rgba(180, 197, 255, 0.3);
}

.kv-mini-cart-hours-value {
  font-size: 12px;
  font-weight: 600;
  color: #b4c5ff;
}

.kv-mini-cart-remove-hours {
  align-self: flex-start;
  width: 22px;
  height: 22px;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffb4ab;
  transition: all 0.2s ease;
  padding: 0;
}

.kv-mini-cart-remove-hours:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.kv-mini-cart-calc {
  margin: 0;
  font-size: 10px;
  color: #8b7fa8;
}

.kv-mini-cart-total {
  font-size: 12px;
  color: #cbd5e1;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(210, 187, 255, 0.06);
}

.kv-mini-cart-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
}

.kv-mini-cart-points {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
}

.kv-mini-cart-price-display {
  margin: 0;
  font-size: 12px;
  color: #8b7fa8;
}

.kv-mini-cart-total-section {
  background: rgba(210, 187, 255, 0.06);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.kv-mini-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.kv-mini-cart-total-label {
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-mini-cart-total-amount {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #d2bbff, #b4c5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}

.kv-mini-cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
}

.kv-mini-cart-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-mini-cart-btn-primary {
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #0f0d13;
}

.kv-mini-cart-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(210, 187, 255, 0.2);
}

.kv-mini-cart-btn-accent {
  background: rgba(180, 197, 255, 0.15);
  border: 1.5px solid rgba(180, 197, 255, 0.4);
  color: #b4c5ff;
}

.kv-mini-cart-btn-accent:hover {
  background: rgba(180, 197, 255, 0.25);
  border-color: rgba(180, 197, 255, 0.6);
}

.kv-mini-cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #8b7fa8;
  font-size: 14px;
  text-align: center;
  padding: 40px;
}

/* Mini Cart Responsive */
@media (max-width: 768px) {
  .kv-mini-cart-wrapper {
    width: 100%;
    right: -100%;
  }

  .kv-mini-cart-item {
    padding: 12px;
  }

  .kv-mini-cart-buttons {
    gap: 10px;
  }

  .kv-mini-cart-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/*-----------------------------------
  DATABASE/PRODUCTS SECTION
-----------------------------------*/
.kv-database-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kv-product-card {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kv-product-card:hover {
  background: rgba(60, 55, 66, 0.7);
  border-color: rgba(210, 187, 255, 0.2);
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.12);
  transform: translateY(-4px);
}

.kv-product-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: rgba(21, 18, 27, 0.6);
}

.kv-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kv-product-card:hover .kv-product-image {
  transform: scale(1.05);
}

.kv-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kv-product-card:hover .kv-product-overlay {
  opacity: 1;
}

.kv-product-view-btn {
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  color: #3f008e;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(210, 187, 255, 0.5);
}

.kv-product-view-btn:hover {
  box-shadow: 0 0 40px rgba(210, 187, 255, 0.8);
  transform: scale(1.05);
}

.kv-product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.kv-product-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0;
  line-height: 1.3;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kv-product-summary {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
  min-height: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kv-product-price {
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.kv-points-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-points-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-add-to-cart-form {
  margin-top: auto;
}

.w-100 {
  width: 100%;
}

.kv-no-products {
  text-align: center;
  padding: 80px 40px;
}

.kv-no-products-text {
  font-size: 18px;
  color: #cbd5e1;
  margin: 0;
}

/*-----------------------------------
  CATEGORY HEADER SECTION
-----------------------------------*/
.kv-category-header-section {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(21, 18, 27, 0.8) 0%, rgba(15, 13, 19, 0.6) 100%);
  position: relative;
}

.kv-category-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.kv-category-header-image {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(210, 187, 255, 0.15);
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.1);
  transition: all 0.3s ease;
}

.kv-category-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kv-category-header-image:hover {
  box-shadow: 0 30px 70px rgba(210, 187, 255, 0.15);
  border-color: rgba(210, 187, 255, 0.25);
}

.kv-category-header-image:hover img {
  transform: scale(1.05);
}

.kv-category-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.kv-category-header-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kv-category-header-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.kv-category-header-summary {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.8;
}

/*-----------------------------------
  PRODUCT LIST PAGE
-----------------------------------*/
.kv-products-list-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-products-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kv-product-list-item {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kv-product-list-item:hover {
  background: rgba(60, 55, 66, 0.7);
  border-color: rgba(210, 187, 255, 0.2);
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.12);
  transform: translateY(-4px);
}

.kv-product-list-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: rgba(21, 18, 27, 0.6);
}

.kv-product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kv-product-list-item:hover .kv-product-list-image img {
  transform: scale(1.05);
}

.kv-product-list-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.kv-product-list-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0;
  line-height: 1.3;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kv-product-list-summary {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
 
}

.kv-product-list-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kv-product-list-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.kv-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-product-list-form {
  flex: 1;
}

.kv-product-list-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.kv-btn-secondary {
  background: transparent;
  border: 1px solid rgba(210, 187, 255, 0.3);
  color: #d2bbff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.kv-btn-secondary:hover {
  background: rgba(210, 187, 255, 0.1);
  border-color: rgba(210, 187, 255, 0.6);
  color: #b4c5ff;
  box-shadow: 0 0 15px rgba(210, 187, 255, 0.2);
}

/*-----------------------------------
  RELATED PRODUCTS SECTION
-----------------------------------*/
.kv-related-products-section {
  padding: 80px 0;
  background: rgba(21, 18, 27, 0.5);
  position: relative;
}

.kv-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.kv-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.kv-section-subtitle {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
}

.kv-related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kv-related-product-card {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.kv-related-product-card:hover {
  background: rgba(60, 55, 66, 0.7);
  border-color: rgba(210, 187, 255, 0.2);
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.12);
  transform: translateY(-4px);
}

.kv-related-product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(21, 18, 27, 0.6);
}

.kv-related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kv-related-product-card:hover .kv-related-product-image img {
  transform: scale(1.05);
}

.kv-related-product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.kv-related-product-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.kv-related-product-title a {
  color: #e8dfee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kv-related-product-title a:hover {
  color: #d2bbff;
}

.kv-related-product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 12px;
}

.kv-related-product-price span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-related-product-price small {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.kv-btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 6px;
  gap: 4px;
}

.kv-products-empty {
  text-align: center;
  padding: 80px 40px;
}

/*-----------------------------------
  RESPONSIVE - ABOUT US
-----------------------------------*/
@media (max-width: 1024px) {
  .kv-about-modern-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .kv-about-modern-section {
    padding: 60px 0;
  }

  .kv-about-modern-title {
    font-size: 32px;
  }

  .kv-about-modern-subtitle {
    font-size: 20px;
  }

  .kv-about-image-container {
    height: 400px;
  }

  .kv-about-image-secondary {
    width: 150px;
    height: 150px;
  }

  .kv-about-image-tertiary {
    width: 140px;
    height: 140px;
  }

  .kv-features-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .kv-about-split-modern-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kv-split-modern-image {
    height: 300px;
  }

  .kv-features-modern-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .kv-about-modern-section {
    padding: 40px 0;
  }

  .kv-about-modern-grid {
    gap: 30px;
  }

  .kv-about-modern-title {
    font-size: 24px;
  }

  .kv-about-modern-subtitle {
    font-size: 16px;
  }

  .kv-about-modern-content {
    padding: 0;
  }

  .kv-about-image-container {
    height: 300px;
  }

  .kv-about-image-secondary {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -20px;
  }

  .kv-about-image-tertiary {
    width: 110px;
    height: 110px;
    top: 20px;
    right: -15px;
  }

  .kv-features-modern-section {
    padding: 40px 0;
  }

  .kv-features-modern-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .kv-feature-modern-card {
    padding: 32px 20px;
  }

  .kv-features-modern-title {
    font-size: 24px;
  }

  .kv-feature-modern-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }

  .kv-feature-modern-icon {
    width: 48px;
    height: 48px;
  }

  .kv-feature-modern-title {
    font-size: 16px;
  }

  .kv-about-split-modern {
    padding: 40px 0;
  }

  .kv-split-modern-title {
    font-size: 20px;
  }

  .kv-split-modern-text {
    font-size: 13px;
  }

  .kv-split-modern-image {
    height: 250px;
  }

  .kv-btn-modern {
    padding: 12px 24px;
    font-size: 13px;
  }

  .kv-contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kv-contact-form-side {
    padding: 30px;
  }

  .kv-contact-form-title {
    font-size: 20px;
  }

  .kv-captcha-flex {
    grid-template-columns: 1fr 1fr;
  }

  .kv-contact-info-side {
    align-items: flex-start;
  }

  .kv-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .kv-product-image-wrapper {
    height: 200px;
  }

  .kv-product-title {
    font-size: 14px;
    min-height: 42px;
  }

  .kv-points-number {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .kv-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kv-product-card {
    border-radius: 8px;
  }

  .kv-product-image-wrapper {
    height: 180px;
  }

  .kv-product-content {
    padding: 16px;
  }

  .kv-product-title {
    font-size: 13px;
    min-height: 39px;
  }

  .kv-product-summary {
    font-size: 12px;
    min-height: 36px;
  }

  .kv-points-number {
    font-size: 18px;
  }

  .kv-contact-modern-grid {
    grid-template-columns: 1fr;
  }

  .kv-contact-form-side {
    padding: 20px;
  }

  .kv-products-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .kv-product-list-image {
    height: 220px;
  }

  .kv-product-list-content {
    padding: 16px;
  }

  .kv-product-list-title {
    font-size: 14px;
    min-height: 42px;
  }

  .kv-related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .kv-section-title {
    font-size: 24px;
  }

  .kv-category-header-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kv-category-header-image {
    height: 280px;
  }

  .kv-category-header-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .kv-products-list-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kv-product-list-item {
    border-radius: 8px;
  }

  .kv-product-list-image {
    height: 200px;
  }

  .kv-product-list-content {
    padding: 12px;
  }

  .kv-product-list-title {
    font-size: 13px;
    min-height: 39px;
  }

  .kv-product-list-summary {
    font-size: 12px;
    min-height: 36px;
  }

  .kv-related-products-section {
    padding: 60px 0;
  }

  .kv-related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .kv-related-product-card {
    border-radius: 8px;
  }

  .kv-related-product-image {
    height: 160px;
  }

  .kv-section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .kv-section-header {
    margin-bottom: 40px;
  }

  .kv-category-header-section {
    padding: 40px 0;
  }

  .kv-category-header-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kv-category-header-image {
    height: 240px;
  }

  .kv-category-header-title {
    font-size: 22px;
  }

  .kv-category-header-summary {
    font-size: 13px;
  }

  .kv-product-detail-modern-wrapper {
    gap: 32px;
  }

  .kv-product-detail-modern-image {
    height: 350px;
  }

  .kv-product-detail-modern-header,
  .kv-product-detail-modern-options,
  .kv-training-info-section {
    padding: 24px;
  }

  .kv-product-detail-modern-title {
    font-size: 24px;
  }

  .kv-price-number {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .kv-product-detail-modern-section {
    padding: 40px 0;
  }

  .kv-product-detail-modern-wrapper {
    gap: 20px;
  }

  .kv-product-detail-modern-image {
    height: 280px;
  }

  .kv-product-detail-modern-header,
  .kv-product-detail-modern-options,
  .kv-training-info-section {
    padding: 20px;
  }

  .kv-product-detail-modern-title {
    font-size: 20px;
  }

  .kv-price-number {
    font-size: 20px;
  }

  .kv-product-detail-modern-summary {
    font-size: 13px;
  }

  .kv-training-hours-slider {
    flex-direction: column;
    align-items: flex-start;
  }

  .kv-slider-value {
    width: 100%;
    text-align: left;
  }

  .kv-training-addon-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .kv-training-info-header h3 {
    font-size: 18px;
  }

  .kv-training-info-list li {
    gap: 10px;
    padding: 10px;
  }
}

/*-----------------------------------
  PRODUCT DETAIL PAGE - NEW LAYOUT
-----------------------------------*/
.kv-product-detail-section-new {
  padding: 80px 0;
  background: linear-gradient(180deg, #15121b 0%, #0f0d13 100%);
  position: relative;
}

.kv-product-title-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0 0 50px 0;
  text-align: center;
  letter-spacing: -0.5px;
}

.kv-product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

/* Left Side: Image */
.kv-product-detail-left {
  width: 100%;
}

.kv-product-detail-image-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(210, 187, 255, 0.15);
  box-shadow: 0 20px 50px rgba(210, 187, 255, 0.15);
  background: rgba(21, 18, 27, 0.6);
  transition: all 0.3s ease;
}

.kv-product-detail-image-wrapper:hover {
  border-color: rgba(210, 187, 255, 0.3);
  box-shadow: 0 30px 70px rgba(210, 187, 255, 0.25);
}

.kv-product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kv-product-detail-image-wrapper:hover .kv-product-detail-img {
  transform: scale(1.05);
}

/* Right Side: Form & Slider */
.kv-product-detail-right {
  width: 100%;
}

.kv-product-detail-card {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kv-product-price-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(210, 187, 255, 0.15) 0%, rgba(180, 197, 255, 0.1) 100%);
  border: 1px solid rgba(210, 187, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
}

.kv-product-price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.kv-product-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #d2bbff;
}

.kv-product-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #b4c5ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-training-addon-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
  border-bottom: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-training-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.kv-addon-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #d2bbff;
}

.kv-toggle-text {
  font-size: 14px;
  font-weight: 600;
  color: #e8dfee;
}

.kv-training-read-more {
  color: #b4c5ff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.kv-training-read-more:hover {
  color: #d2bbff;
}

.kv-training-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  background: rgba(21, 18, 27, 0.4);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-slider-title {
  font-size: 13px;
  font-weight: 600;
  color: #d2bbff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-training-hours-slider {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv-slider {
  width: 100%;
  height: 8px;
  cursor: pointer;
  appearance: none;
  background: linear-gradient(90deg, rgba(210, 187, 255, 0.2) 0%, rgba(180, 197, 255, 0.2) 100%);
  border-radius: 4px;
  outline: none;
}

.kv-slider::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.6);
  border: 2px solid #15121b;
  transition: all 0.2s ease;
}

.kv-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 30px rgba(210, 187, 255, 0.8);
  transform: scale(1.1);
}

.kv-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d2bbff 0%, #b4c5ff 100%);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(210, 187, 255, 0.6);
  border: 2px solid #15121b;
  transition: all 0.2s ease;
}

.kv-slider-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 8px;
}

.kv-slider-hours,
.kv-slider-price {
  text-align: center;
  padding: 8px;
  background: rgba(210, 187, 255, 0.05);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #d2bbff;
}

/* Content Below */
.kv-product-content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.kv-product-summary-box,
.kv-product-description-box {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}

.kv-product-summary-box:hover,
.kv-product-description-box:hover {
  background: rgba(60, 55, 66, 0.7);
  border-color: rgba(210, 187, 255, 0.2);
  box-shadow: 0 10px 30px rgba(210, 187, 255, 0.1);
  transition: all 0.3s ease;
}

.kv-content-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #d2bbff;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-product-summary-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.kv-product-description-content {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
}

.kv-product-description-content p {
  margin: 0 0 12px 0;
}

.kv-product-description-content h1,
.kv-product-description-content h2,
.kv-product-description-content h3,
.kv-product-description-content h4 {
  color: #e8dfee;
  font-weight: 600;
  margin: 16px 0 8px 0;
}

/* Training Section */
.kv-training-section-new {
  background: rgba(60, 55, 66, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 187, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
}

.kv-training-header-new {
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(210, 187, 255, 0.2);
  padding-bottom: 16px;
}

.kv-training-header-new h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e8dfee;
  margin: 0;
}

.kv-training-content-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kv-training-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv-training-intro p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.kv-training-features h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #d2bbff;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-training-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kv-training-features-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(210, 187, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #d2bbff;
  transition: all 0.3s ease;
}

.kv-training-features-list li:hover {
  background: rgba(210, 187, 255, 0.1);
  border-left-color: #b4c5ff;
  transform: translateX(4px);
}

.kv-training-features-list svg {
  color: #d2bbff;
  flex-shrink: 0;
  margin-top: 2px;
}

.kv-training-features-list strong {
  color: #e8dfee;
}

.kv-training-features-list div {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

.kv-training-pricing {
  padding-top: 16px;
  border-top: 1px solid rgba(210, 187, 255, 0.1);
}

.kv-training-pricing h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #d2bbff;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-training-pricing p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}
.kv-page-content-body section.section-terms.padding-tb-50 {
  padding: 0 0;
}

.kv-page-content-body section.section-terms.padding-tb-50 p img {
  display: inline-block;
  filter: none !important;
  width: 117px;
}
/* Responsive - Checkout */
@media (max-width: 1024px) {
  .kv-checkout-form-grid-modern {
    grid-template-columns: 1fr;
  }

  .kv-checkout-form-group-modern-full {
    grid-column: 1;
  }

  .kv-checkout-captcha-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kv-checkout-section-modern {
    padding: 16px;
    margin-bottom: 16px;
  }

  .kv-checkout-section-header-modern {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .kv-checkout-section-header-modern h2 {
    font-size: 16px;
  }

  .kv-checkout-section-header-modern svg {
    width: 20px;
    height: 20px;
  }

  .kv-checkout-card-modern {
    padding: 12px;
  }

  .kv-checkout-card-title-modern {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .kv-label {
    font-size: 11px;
  }

  .kv-input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .kv-checkbox {
    width: 16px;
    height: 16px;
  }

  .kv-terms-group-modern {
    padding: 10px;
    margin-bottom: 12px;
  }

  .kv-terms-group-modern label {
    font-size: 12px;
  }

  .kv-checkout-order-table-modern {
    padding-top: 12px;
  }

  .kv-checkout-order-item-modern {
    padding: 10px 0;
    font-size: 12px;
  }

  .kv-checkout-order-modern-total {
    padding: 12px;
    font-size: 13px;
  }

  .kv-checkout-captcha-modern {
    gap: 8px;
    padding: 12px;
    margin: 12px 0;
  }

  .kv-btn {
    padding: 11px 20px;
    font-size: 13px;
    gap: 6px;
  }

  .kv-btn-lg {
    padding: 12px 24px;
  }

  .kv-btn svg {
    width: 16px;
    height: 16px;
  }

  .kv-card-expiry {
    gap: 6px;
  }
}

/* Responsive - Order Pages */
@media (max-width: 1024px) {
  .kv-order-wrapper-modern {
    gap: 24px;
    max-width: 90%;
  }

  .kv-order-title-modern {
    font-size: 28px;
  }

  .kv-order-icon-modern {
    width: 100px;
    height: 100px;
  }

  .kv-order-icon-modern svg {
    width: 50px;
    height: 50px;
  }

  .kv-order-info-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kv-order-section-modern {
    padding: 40px 0;
  }

  .kv-order-wrapper-modern {
    gap: 20px;
    max-width: 100%;
  }

  .kv-order-title-modern {
    font-size: 24px;
  }

  .kv-order-icon-modern {
    width: 80px;
    height: 80px;
  }

  .kv-order-icon-modern svg {
    width: 40px;
    height: 40px;
  }

  .kv-order-card-modern,
  .kv-order-message-modern,
  .kv-order-help-card-modern {
    padding: 16px;
  }

  .kv-order-card-header-modern {
    padding: 16px;
    font-size: 13px;
  }

  .kv-order-card-body-modern {
    padding: 16px;
    gap: 12px;
  }

  .kv-order-message-modern h2 {
    font-size: 18px;
  }

  .kv-order-message-modern p {
    font-size: 13px;
  }

  .kv-order-help-header-modern h3 {
    font-size: 14px;
  }

  .kv-order-help-list-modern li {
    font-size: 12px;
    padding: 10px;
  }

  .kv-order-actions-modern {
    gap: 10px;
  }

  .kv-order-info-item-modern {
    padding: 12px;
    gap: 10px;
  }

  .kv-order-info-icon-modern {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .kv-order-info-icon-modern svg {
    width: 18px;
    height: 18px;
  }

  .kv-order-info-item-modern h4 {
    font-size: 12px;
  }

  .kv-order-info-item-modern p {
    font-size: 11px;
  }
}

/* Responsive - Breadcrumb Section */
@media (max-width: 1024px) {
  .kv-page-breadcrumb-section {
    padding: 80px 0;
  }

  .kv-page-breadcrumb-title {
    font-size: 36px;
  }

  .kv-breadcrumb-nav {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .kv-page-breadcrumb-section {
    padding: 60px 0;
  }

  .kv-page-breadcrumb-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .kv-breadcrumb-nav {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Responsive - Cart */
@media (max-width: 1024px) {
  .kv-cart-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .kv-cart-summary-modern {
    position: static;
  }

  .kv-cart-item-game-modern {
    grid-template-columns: 70px 1fr 80px 40px;
    gap: 16px;
  }

  .kv-cart-product-thumb-modern {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .kv-cart-section-modern {
    padding: 40px 0;
  }

  .kv-cart-header-modern {
    padding: 16px;
  }

  .kv-cart-header-modern h3 {
    font-size: 16px;
  }

  .kv-cart-item-modern {
    grid-template-columns: 1fr 100px 36px;
    gap: 16px;
    padding: 16px;
  }

  .kv-cart-item-game-modern {
    grid-template-columns: 60px 1fr 70px 36px;
    gap: 12px;
    padding: 12px;
  }

  .kv-cart-product-thumb-modern {
    width: 60px;
    height: 60px;
  }

  .kv-cart-product-title-modern {
    font-size: 13px;
  }

  .kv-cart-empty-modern {
    padding: 40px 20px;
  }

  .kv-cart-empty-icon-modern {
    width: 60px;
    height: 60px;
  }

  .kv-cart-empty-icon-modern svg {
    width: 30px;
    height: 30px;
  }

  .kv-cart-empty-modern h3 {
    font-size: 18px;
  }

  .kv-cart-summary-card-modern {
    padding: 20px;
    gap: 16px;
  }

  .kv-cart-summary-title-modern {
    font-size: 16px;
  }

  .kv-cart-summary-value-modern {
    font-size: 16px;
  }

  .kv-cart-summary-actions-modern {
    gap: 10px;
  }

  .kv-credits-banner-modern {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Responsive - Contact Form */
@media (max-width: 1024px) {
  .kv-contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kv-contact-form-centered {
    padding: 30px;
  }

  .kv-contact-form-title {
    font-size: 24px;
  }

  .kv-contact-form-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .kv-contact-modern-section {
    padding: 40px 0;
  }

  .kv-contact-form-centered {
    padding: 20px;
  }

  .kv-contact-form-title {
    font-size: 20px;
  }

  .kv-form-group {
    gap: 6px;
  }

  .kv-form-input {
    padding: 10px 14px;
    font-size: 13px;
  }

  .kv-captcha-flex {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kv-captcha-input-wrapper {
    gap: 3px;
  }

  .kv-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .kv-auth-links {
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .kv-auth-link-group {
    gap: 4px;
  }

  .kv-auth-link-group span {
    font-size: 12px;
  }

  .kv-link-primary {
    font-size: 12px;
  }
}

/* Responsive - Product Detail */
@media (max-width: 1024px) {
  .kv-product-title-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .kv-product-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kv-product-detail-image-wrapper {
    height: 380px;
  }

  .kv-product-content-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kv-product-detail-section-new {
    padding: 40px 0;
  }

  .kv-product-title-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .kv-product-detail-container {
    gap: 30px;
  }

  .kv-product-detail-image-wrapper {
    height: 300px;
  }

  .kv-product-detail-card {
    padding: 20px;
    gap: 16px;
  }

  .kv-product-price-amount {
    font-size: 28px;
  }

  .kv-product-content-section {
    gap: 16px;
    margin-bottom: 40px;
  }

  .kv-product-summary-box,
  .kv-product-description-box {
    padding: 20px;
  }

  .kv-content-section-title {
    font-size: 16px;
  }

  .kv-training-section-new {
    padding: 24px;
  }

  .kv-training-header-new h2 {
    font-size: 20px;
  }

  .kv-slider-hours,
  .kv-slider-price {
    font-size: 12px;
  }

  .kv-training-features-list li {
    gap: 12px;
    padding: 12px;
  }
}
