:root {
  /* Color Palette - Custom Dark Premium */
  --color-primary: #2E1A47;
  --color-secondary: #1C1C1C;
  --color-background: #0F0518;
  --color-footer-bg: #050208;
  --color-button: #FF8C00;
  --color-section-1: #140821;
  --color-section-2: #1C1C1C;
  --color-section-3: #0F0518;
  
  /* Extended Color Palette */
  --color-white: #FFFFFF;
  --color-light-gray: #E5E5E5;
  --color-gray: #999999;
  --color-dark-gray: #666666;
  --color-black: #000000;
  --color-accent: #FF8C00;
  --color-accent-light: #FFB347;
  --color-accent-dark: #CC7000;
  
  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  
  /* Neon Colors */
  --neon-purple: #8B5CF6;
  --neon-orange: #FF8C00;
  --neon-blue: #3B82F6;
  --neon-green: #10B981;
  
  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
  --shadow-glow-orange: 0 0 20px rgba(255, 140, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-background);
  color: var(--color-white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-lg) 0;
  color: var(--color-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

p {
  margin: 0 0 var(--space-md) 0;
  color: var(--color-light-gray);
  font-size: 1.1rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--color-accent-light);
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

/* Layout Components */
.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: var(--space-lg) !important;
  padding-right: var(--space-lg) !important;
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-dark {
  background: var(--color-section-1);
}

.section-darker {
  background: var(--color-section-2);
}

.section-darkest {
  background: var(--color-section-3);
}

/* Grid Layout */
.grid-layout {
  display: grid;
  gap: var(--space-xl);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow-orange);
  border-color: rgba(255, 140, 0, 0.3);
}

.glass-button {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-xl);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-orange);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--color-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Cards */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--neon-purple), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  border-color: rgba(139, 92, 246, 0.3);
}

/* Header Styles */
.header {
  background: rgba(15, 5, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(15, 5, 24, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-link {
  color: var(--color-light-gray);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-white), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-light-gray);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}

/* Age Restriction Badge */
.age-badge {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(220, 38, 38, 0.3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.age-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Compliance Elements */
.tc-text {
  color: var(--color-gray);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: var(--space-xs);
}

.disclaimer {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  color: var(--color-light-gray);
}

.responsible-gambling {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-4xl);
}

.responsible-gambling h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.help-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.help-resource {
  background: var(--glass-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all var(--transition-normal);
}

.help-resource:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* License Info */
.license-info {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.license-badge {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.75rem;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--glass-bg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  font-size: 0.875rem;
  color: var(--color-light-gray);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Neon Glow Effects */
.neon-text {
  color: var(--color-white);
  text-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 15px currentColor,
    0 0 20px var(--neon-purple),
    0 0 35px var(--neon-purple),
    0 0 40px var(--neon-purple);
}

.neon-border {
  border: 2px solid var(--neon-purple);
  box-shadow: 
    0 0 5px var(--neon-purple),
    inset 0 0 5px var(--neon-purple),
    0 0 10px var(--neon-purple);
}

.neon-glow {
  box-shadow: 
    0 0 5px var(--neon-purple),
    0 0 10px var(--neon-purple),
    0 0 15px var(--neon-purple),
    0 0 20px var(--neon-purple);
}

/* Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-light-gray);
}

.form-input {
  width: 100%;
  padding: var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 1rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1), var(--shadow-glow-orange);
}

.form-input::placeholder {
  color: var(--color-gray);
}

/* Footer */
.footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-4xl) 0 var(--space-2xl) 0;
  margin-top: var(--space-4xl);
}

.footer-section {
  margin-bottom: var(--space-2xl);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.footer-link {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-link:hover {
  color: var(--color-accent);
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-md) !important;
    padding-right: var(--space-md) !important;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 0 var(--space-md);
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .help-resources {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .glass-card,
  .card {
    padding: var(--space-lg);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
  }
}

/* Alpine.js Interactive States */
[x-cloak] {
  display: none !important;
}

[x-show] {
  opacity: 1;
  transition: opacity var(--transition-normal);
}

[x-cloak][x-show] {
  opacity: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-background);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-light);
}

/* Selection */
::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline-offset: 4px;
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Tippy Tooltip Overrides */
.tippy-box {
  background: var(--color-secondary) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--shadow-2xl) !important;
}

.tippy-arrow {
  color: var(--color-secondary) !important;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.bg-gradient-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.backdrop-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.border-gradient {
  border: 1px solid;
  border-image: linear-gradient(135deg, var(--color-accent), var(--neon-purple)) 1;
}

/* Premium Accents */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: var(--space-2xl) 0;
}

.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--neon-purple));
  border-radius: var(--radius-full);
  margin: var(--space-lg) 0;
}

/* Casino-specific premium elements */
.casino-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--neon-purple), var(--neon-blue), var(--color-accent));
  background-size: 300% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.casino-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-2xl), var(--shadow-glow-orange);
  border-color: rgba(255, 140, 0, 0.4);
}

.promo-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.rating-stars {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.star {
  color: var(--color-accent);
  filter: drop-shadow(0 0 3px rgba(255, 140, 0, 0.5));
}

.star.empty {
  color: var(--color-gray);
}

/* Enhanced mobile experience */
@media (max-width: 480px) {
  .casino-card {
    padding: var(--space-lg);
  }
  
  .promo-badge {
    font-size: 0.625rem;
    padding: 2px var(--space-xs);
  }
  
  .rating-stars {
    gap: 2px;
  }
  
  .star {
    font-size: 0.875rem;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}

.premium-nav-header {
    background: linear-gradient(135deg, rgba(46, 26, 71, 0.98) 0%, rgba(28, 28, 28, 0.98) 50%, rgba(46, 26, 71, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.premium-nav-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 140, 0, 0.8) 25%, 
        rgba(139, 92, 246, 0.8) 50%, 
        rgba(255, 140, 0, 0.8) 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: premiumNavBorderGlow 3s ease infinite;
}

@keyframes premiumNavBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.premium-nav-background {
    background: radial-gradient(circle at top center, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.premium-nav-gradient {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

.premium-top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.premium-top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.5), transparent);
}

.premium-contact-item {
    transition: all 0.3s ease;
}

.premium-contact-item:hover {
    color: #FF8C00;
    transform: translateX(3px);
}

.premium-icon {
    transition: all 0.3s ease;
}

.premium-contact-item:hover .premium-icon {
    color: #FF8C00;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.6));
}

.premium-age-badge-small {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.premium-age-badge-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: premiumBadgeShine 2s infinite;
}

@keyframes premiumBadgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.premium-badge-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.premium-logo-container {
    position: relative;
}

.premium-logo-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.premium-logo-image {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 140, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.premium-logo-wrapper:hover .premium-logo-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5), 0 0 20px rgba(255, 140, 0, 0.4);
}

.premium-logo-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.6), rgba(139, 92, 246, 0.6));
    border-radius: 0.75rem;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.premium-logo-wrapper:hover .premium-logo-glow {
    opacity: 1;
    animation: premiumLogoPulse 2s ease infinite;
}

@keyframes premiumLogoPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.premium-logo-text {
    background: linear-gradient(135deg, #FFFFFF, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.premium-logo-subtext {
    transition: all 0.3s ease;
}

.premium-logo-container:hover .premium-logo-text {
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-age-badge-inline {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: #1C1C1C;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    transition: all 0.3s ease;
}

.premium-age-badge-inline:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.8);
}

.premium-nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.premium-nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #8B5CF6);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.premium-nav-link:hover {
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.premium-nav-link:hover .premium-nav-link-underline {
    width: 80%;
}

.premium-dropdown {
    position: relative;
}

.premium-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 140, 0, 0.2),
                inset 0 0 20px rgba(255, 140, 0, 0.05);
    padding: 0.5rem;
    z-index: 1000;
    overflow: hidden;
}

.premium-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #8B5CF6, #FF8C00);
    background-size: 200% 100%;
    animation: premiumDropdownBorderGlow 2s ease infinite;
}

@keyframes premiumDropdownBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.premium-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.2), transparent);
    transition: width 0.3s ease;
}

.premium-dropdown-item:hover {
    color: white;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(139, 92, 246, 0.2));
    padding-left: 1.5rem;
    transform: translateX(5px);
}

.premium-dropdown-item:hover::before {
    width: 100%;
}

.premium-license-info {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.premium-license-name {
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
    transition: all 0.3s ease;
}

.premium-license-name:hover {
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
    transform: scale(1.05);
}

.premium-age-badge-large {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-age-badge-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.premium-age-badge-large:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}

.premium-age-badge-large:hover::before {
    left: 100%;
}

.premium-mobile-toggle {
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.premium-mobile-toggle:hover {
    background: rgba(255, 140, 0, 0.2);
}

.premium-mobile-toggle svg {
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
}

.premium-mobile-menu {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.premium-mobile-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.premium-mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.2), transparent);
    transition: width 0.3s ease;
}

.premium-mobile-link:hover {
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
    border-left-color: #FF8C00;
    padding-left: 2rem;
}

.premium-mobile-link:hover::before {
    width: 100%;
}

.premium-mobile-section-title {
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.premium-mobile-sublink {
    display: block;
    padding: 0.5rem 1rem 0.5rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.premium-mobile-sublink:hover {
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.05);
    padding-left: 2.5rem;
}

.premium-mobile-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.premium-mobile-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.5), transparent);
}

.premium-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-hero-background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.premium-hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    animation: premiumHeroBackgroundZoom 20s ease infinite alternate;
}

@keyframes premiumHeroBackgroundZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.premium-hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(46, 26, 71, 0.6) 30%,
        rgba(139, 92, 246, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.premium-hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.2) 0%, transparent 50%);
    z-index: 2;
    animation: premiumHeroOverlayPulse 4s ease infinite;
}

@keyframes premiumHeroOverlayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.premium-hero-overlay-3 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    z-index: 3;
    animation: premiumHeroOverlayPulse 5s ease infinite reverse;
}

.premium-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 140, 0, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(139, 92, 246, 0.2) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 180px 180px, 170px 170px;
    background-position: 0 0, 100px 100px, 50px 150px, 150px 50px;
    animation: premiumHeroParticlesMove 30s linear infinite;
    opacity: 0.6;
}

@keyframes premiumHeroParticlesMove {
    0% { background-position: 0 0, 100px 100px, 50px 150px, 150px 50px; }
    100% { background-position: 200px 200px, 300px 300px, 250px 350px, 350px 250px; }
}

.premium-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 5;
    background-image: 
        linear-gradient(rgba(255, 140, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.premium-hero-content {
    position: relative;
    z-index: 10;
}

.premium-hero-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-hero-badge {
    position: relative;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.premium-hero-badge-text {
    position: relative;
    z-index: 2;
}

.premium-hero-badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-hero-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
}

.premium-hero-badge:hover .premium-hero-badge-glow {
    opacity: 1;
    animation: premiumBadgeGlow 1.5s ease infinite;
}

@keyframes premiumBadgeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.premium-hero-layout {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.premium-hero-badge-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.premium-hero-text-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    margin: 2rem 0;
}

.premium-hero-left-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.premium-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 140, 0, 0.8);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.premium-hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, transparent);
}

.premium-hero-title-main {
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
}

.premium-hero-title-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.premium-hero-title-line-1 {
    font-size: clamp(3rem, 10vw, 7rem);
}

.premium-hero-title-line-2 {
    font-size: clamp(2.5rem, 8vw, 6rem);
}

.premium-hero-title-decoration {
    width: 4rem;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #8B5CF6);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
    animation: premiumHeroTitleDecorationPulse 2s ease infinite;
}

@keyframes premiumHeroTitleDecorationPulse {
    0%, 100% { width: 4rem; opacity: 0.8; }
    50% { width: 6rem; opacity: 1; }
}

.premium-hero-title-gradient {
    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        #FF8C00 30%,
        #FFB347 50%,
        #8B5CF6 70%,
        #FFFFFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premiumHeroTitleShimmer 4s ease infinite;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.3));
}

@keyframes premiumHeroTitleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.premium-hero-title-accent {
    background: linear-gradient(135deg, 
        #FF8C00 0%, 
        #FFB347 30%,
        #8B5CF6 60%,
        #FF8C00 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premiumHeroTitleShimmer 4s ease infinite reverse;
}

.premium-hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.premium-hero-location-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
}

.premium-hero-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    justify-content: center;
}

.premium-hero-divider-line {
    width: 2px;
    height: 4rem;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 140, 0, 0.6) 50%,
        transparent 100%);
    animation: premiumHeroDividerGlow 2s ease infinite;
}

@keyframes premiumHeroDividerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.premium-hero-divider-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FF8C00, #8B5CF6);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
    animation: premiumHeroDividerDotPulse 2s ease infinite;
}

@keyframes premiumHeroDividerDotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.premium-hero-right-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.premium-hero-description-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-hero-description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #8B5CF6);
    animation: premiumHeroDescriptionBorderGlow 3s ease infinite;
}

@keyframes premiumHeroDescriptionBorderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.premium-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.premium-hero-description-secondary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.premium-hero-highlight {
    color: #FF8C00;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    position: relative;
}

.premium-hero-location-name {
    color: #FFB347;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.5);
}

.premium-hero-features-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.premium-hero-feature-item-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.premium-hero-feature-item-compact:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.premium-hero-feature-icon-compact {
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.3));
    border: 1.5px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.premium-hero-actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.premium-hero-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.5), 
                0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.premium-hero-button-text {
    position: relative;
    z-index: 2;
}

.premium-hero-button-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #FF8C00, #8B5CF6, #FF8C00);
    border-radius: 0.875rem;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: 1;
    animation: premiumHeroButtonGlow 3s ease infinite;
}

@keyframes premiumHeroButtonGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.premium-hero-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 3;
}

.premium-hero-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 60px rgba(255, 140, 0, 0.8), 
                0 15px 40px rgba(0, 0, 0, 0.4);
}

.premium-hero-button:hover .premium-hero-button-glow {
    opacity: 1;
}

.premium-hero-button:hover .premium-hero-button-shine {
    left: 100%;
}

.premium-hero-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.premium-hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.premium-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.premium-hero-feature-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.3));
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.premium-hero-feature-item:hover .premium-hero-feature-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.premium-hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.7;
    animation: premiumHeroScrollBounce 2s ease infinite;
}

@keyframes premiumHeroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.premium-hero-scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid rgba(255, 140, 0, 0.8);
    border-bottom: 3px solid rgba(255, 140, 0, 0.8);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
}

@media (max-width: 1024px) {
    .premium-hero-text-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .premium-hero-divider {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }
    
    .premium-hero-divider-line {
        width: 4rem;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%,
            rgba(255, 140, 0, 0.6) 50%,
            transparent 100%);
    }
    
    .premium-hero-left-section,
    .premium-hero-right-section {
        text-align: center;
    }
    
    .premium-hero-badge-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .premium-hero-layout {
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .premium-hero-title-line-1 {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .premium-hero-title-line-2 {
        font-size: clamp(1.75rem, 8vw, 3.5rem);
    }
    
    .premium-hero-title-decoration {
        width: 2rem;
        height: 3px;
    }
    
    .premium-hero-description-box {
        padding: 1.5rem;
    }
    
    .premium-hero-description {
        font-size: 1rem;
    }
    
    .premium-hero-description-secondary {
        font-size: 0.875rem;
    }
    
    .premium-hero-features-inline {
        justify-content: center;
        gap: 1rem;
    }
    
    .premium-hero-feature-item-compact {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}