/* SMMBOXD PANEL - Ultra Modern Dark Theme */
:root {
  /* Primary colors - Sophisticated teal */
  --primary: #10B981;
  --primary-dark: #059669;
  --primary-light: #34D399;
  --primary-gradient: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
  --primary-glow: rgba(16, 185, 129, 0.3);
  
  /* Secondary colors - Modern purple accent */
  --secondary: #8B5CF6;
  --secondary-dark: #7C3AED;
  --secondary-light: #A78BFA;
  --secondary-gradient: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  
  /* Dark theme colors - Rich and sophisticated */
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-tertiary: #334155;
  --bg-card: #1E293B;
  --bg-surface: #475569;
  --bg-glass: rgba(30, 41, 59, 0.8);
  
  /* Text colors */
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-accent: #10B981;
  
  /* Status colors */
  --success: #00D4AA;
  --warning: #FFB800;
  --error: #FF4757;
  --info: #3742FA;
  
  /* Platform colors */
  --telegram: #0088cc;
  --instagram: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  --twitter: #1da1f2;
  --facebook: #1877f2;
  --youtube: #ff0000;
  --tiktok: #000000;
  
  /* Service colors */
  --followers: #ff4757;
  --likes: #3742fa;
  --views: #ff4757;
  --comments: #3742fa;
  --shares: #3742fa;
  --subscribers: #2f3542;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 4px 20px rgba(0, 212, 170, 0.3);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

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

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

/* Container System */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-sm);
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -var(--space-sm);
}

.col {
  flex: 1;
  padding: 0 var(--space-sm);
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }

/* SMMBOXD Header - Beautiful & Large */
.smmboxd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-card);
  padding: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.smmboxd-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: var(--transition-fast);
}

.smmboxd-logo:hover {
  transform: translateY(-2px);
}

.smmboxd-logo i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.smmboxd-logo:hover i {
  transform: scale(1.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.smmboxd-nav {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(0, 212, 170, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link i {
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}


.user-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--bg-surface);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.user-info:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.user-avatar {
  width: 35px;
  height: 35px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.user-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.user-balance {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Desktop Only Elements */
.desktop-only {
  display: none;
}

@media (min-width: 769px) {
  .desktop-only {
    display: inline-flex;
  }
}

/* Mobile Navigation - Professional Implementation */
.mobile-nav-toggle {
  display: none;
  background: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  font-size: 1.1rem;
  z-index: 10000;
  position: relative;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

/* Hide mobile menu button on desktop */
@media (min-width: 769px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex !important;
  }
}

.mobile-nav-toggle:hover {
  background: var(--primary-dark);
  color: white;
  transform: scale(1.05);
}

.mobile-nav-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0A0E1A 0%, #1A1F2E 50%, #0A0E1A 100%);
  backdrop-filter: blur(20px);
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-right: 1px solid rgba(0, 212, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
  opacity: 0;
  visibility: hidden;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-nav-menu {
    display: none !important;
  }
}

/* Show mobile menu only on mobile */
@media (max-width: 768px) {
  .mobile-nav-menu.active {
    display: block !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(0, 212, 170, 0.2);
  background: rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 10000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.mobile-logo i {
  font-size: 1.2rem;
  color: var(--primary);
}

.mobile-nav-close {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  z-index: 10001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mobile-nav-close:hover {
  background: rgba(0, 212, 170, 0.2);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 212, 170, 0.3);
}

.mobile-nav-links {
  list-style: none;
  padding: var(--space-lg);
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: var(--space-sm);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  font-weight: 500;
  text-decoration: none;
  gap: var(--space-sm);
  border: 1px solid transparent;
  margin-bottom: var(--space-xs);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-nav-links a:hover {
  background: rgba(0, 212, 170, 0.1);
  color: var(--primary);
  transform: translateX(5px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 4px 10px rgba(0, 212, 170, 0.2);
}

.mobile-nav-links a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.mobile-nav-links i {
  width: 20px;
  font-size: 1.1rem;
}


/* Beautiful Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  line-height: 1;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.4);
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5);
  background: linear-gradient(135deg, #00E0C4 0%, #00D4AA 100%);
}

.btn-outline {
  background: rgba(0, 212, 170, 0.1);
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 170, 0.4);
}

.btn-sm {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
}

.btn-lg {
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
}

/* Hero Section - Beautiful & Enhanced */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* .hero-badge - REMOVED to prevent conflicts with .hero-badge-new */

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Beautiful Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--bg-surface);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

/* Statistics Section */
.stats {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 1.3s; }
.stat-card:nth-child(2) { animation-delay: 1.4s; }
.stat-card:nth-child(3) { animation-delay: 1.5s; }
.stat-card:nth-child(4) { animation-delay: 1.6s; }

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  background: rgba(26, 31, 46, 1);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
  filter: drop-shadow(0 0 5px rgba(0, 212, 170, 0.2));
  animation: pulse 2s ease-in-out infinite;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Cryptocurrency Payments Section */
.crypto-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.crypto-card {
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.crypto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.crypto-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  background: rgba(26, 31, 46, 1);
}

.crypto-card:hover::before {
  transform: scaleX(1);
}

.crypto-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.crypto-card:hover .crypto-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-primary);
}

.crypto-icon.usdt { background: #26A17B; }
.crypto-icon.dogecoin { background: #C2A633; }
.crypto-icon.cardano { background: #0033AD; }
.crypto-icon.bitcoin { background: #F7931A; }
.crypto-icon.ethereum { background: #627EEA; }
.crypto-icon.litecoin { background: #BFBBBB; }

.crypto-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.crypto-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Security Features Section */
.security-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.security-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.security-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  background: rgba(26, 31, 46, 1);
}

.security-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-primary);
}

.security-text {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  background: rgba(26, 31, 46, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  transition: var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Platforms Section */
.platforms-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.platform-card {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  background: rgba(26, 31, 46, 1);
}

.platform-card:hover::before {
  transform: scaleX(1);
}

.platform-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.platform-card:hover .platform-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-primary);
}

.platform-icon.telegram { background: var(--telegram); }
.platform-icon.instagram { background: var(--instagram); }
.platform-icon.twitter { background: var(--twitter); }
.platform-icon.facebook { background: var(--facebook); }
.platform-icon.youtube { background: var(--youtube); }
.platform-icon.tiktok { background: var(--tiktok); }

.platform-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Services Section */
.services-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  background: rgba(26, 31, 46, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-primary);
}

.service-icon.followers { background: var(--followers); }
.service-icon.likes { background: var(--likes); }
.service-icon.views { background: var(--views); }
.service-icon.comments { background: var(--comments); }
.service-icon.shares { background: var(--shares); }
.service-icon.subscribers { background: var(--subscribers); }

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Beautiful Forms */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--bg-surface);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
  background: var(--bg-surface);
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* Beautiful Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.table th,
.table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--bg-surface);
}

.table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
}

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

.table tbody tr:hover {
  background: rgba(0, 212, 170, 0.05);
}

/* Beautiful Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(0, 212, 170, 0.2);
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-warning {
  background: rgba(255, 184, 0, 0.2);
  color: var(--warning);
  border: 1px solid var(--warning);
}

.badge-error {
  background: rgba(255, 71, 87, 0.2);
  color: var(--error);
  border: 1px solid var(--error);
}

/* Beautiful Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-card);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 35px;
  height: 35px;
  background: var(--bg-card);
  border: 1px solid var(--bg-surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: pointer;
}

.payment-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-divider {
  border-color: var(--bg-surface);
  margin: 40px 0 30px;
}

.footer-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.stat-item i {
  font-size: 1rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-primary);
  transition: var(--transition-normal);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.bg-primary { background: var(--primary); }
.bg-dark { background: var(--bg-primary); }
.bg-surface { background: var(--bg-secondary); }
.bg-card { background: var(--bg-card); }

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

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

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Beautiful Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in {
  animation: slideIn 0.3s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* 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%; }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .smmboxd-header {
    padding: var(--space-sm) 0;
  }
  
  .smmboxd-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block !important;
  }
  
  .mobile-nav-menu {
    display: block;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .logo-main {
    font-size: 1.2rem;
  }
  
  .logo-sub {
    font-size: 0.6rem;
  }
  
  .smmboxd-logo i {
    font-size: 1.1rem;
  }
  
  .smmboxd-logo {
    gap: var(--space-xs);
    flex-shrink: 0;
  }
  
  .mobile-nav-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .user-info {
    display: none;
  }
  
  .header-actions {
    gap: var(--space-xs);
  }
  
  .header-content {
    padding: 0 var(--space-sm);
    justify-content: space-between;
  }
  
  .smmboxd-header {
    padding: var(--space-md) 0;
  }
  
  .hero {
    padding-top: 80px;
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .crypto-grid,
  .features-grid,
  .platforms-grid,
  .services-grid,
  .security-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .col-md-6 { flex: 0 0 100%; max-width: 100%; }
  .col-md-4 { flex: 0 0 100%; max-width: 100%; }
  .col-md-3 { flex: 0 0 100%; max-width: 100%; }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
  }
  
  .btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
  }
  
}

@media (min-width: 769px) and (max-width: 1024px) {
  .crypto-grid,
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .security-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .container {
    padding: 0 var(--space-xl);
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .crypto-grid,
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .platforms-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .security-grid,
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Print Styles */
@media print {
  .smmboxd-header,
  .back-to-top {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ========================================
   SIGNUP PAGE STYLES
   ======================================== */

/* Hero Section - Beautiful & Enhanced */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A0E1A 0%, #1A1F2E 50%, #0A0E1A 100%);
  overflow: hidden;
  padding: var(--space-xxl) 0;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
  z-index: 0;
}

/* Desktop Layout - Full Width Two Column */
@media (min-width: 769px) {
  .hero-section {
    justify-content: flex-start;
  }
  
  .hero-section .container {
    max-width: 1200px;
  }
  
  .hero-section .row {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  
  .hero-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .hero-content {
    margin-bottom: 0;
    padding-right: var(--space-xl);
  }
  
  .hero-stats {
    padding-left: var(--space-xl);
  }
  
  .signup-form-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* .hero-badge - REMOVED to prevent conflicts with .hero-badge-new */

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.3));
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-primary);
  font-weight: 500;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Signup Form Container */
.signup-form-container {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-surface);
  position: relative;
  z-index: 3;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

/* Login Form Container */
.login-form-container {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-surface);
  position: relative;
  z-index: 3;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.signup-form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.login-form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.signup-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.signup-form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.login-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.login-form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Form Styles */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-label i {
  color: var(--primary);
  font-size: 1rem;
  width: 16px;
}

.form-input {
  background: var(--bg-surface);
  border: 2px solid var(--bg-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-normal);
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Checkbox Styles */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--bg-surface);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  position: relative;
  transition: var(--transition-normal);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

/* Button Styles */
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--bg-surface);
}

.form-footer p {
  color: var(--text-secondary);
  margin: 0;
}

.login-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.login-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.signup-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.signup-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.forgot-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.forgot-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Alert Styles */
.alert {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.alert i {
  font-size: 1.1rem;
}

/* Content Text */
.content-text {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--bg-surface);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Captcha Container */
.captcha-container {
  display: flex;
  justify-content: center;
  padding: var(--space-md);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-surface);
}


/* Additional Content */
.additional-content {
  padding: var(--space-xxl) 0;
  background: var(--bg-primary);
}

.content-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--bg-surface);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   NEW HOMEPAGE STYLES - COMPLETE REDESIGN
   ======================================== */

/* Modern Hero Section - Compact & Elegant */
.hero-section-new {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: visible;
  padding: 8rem 0 2rem 0;
  margin-top: 0;
}

.hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-particles-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero-content-new {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 var(--space-md);
}

.hero-badge-new {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: white !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
  position: relative !important;
  z-index: 1002 !important;
  margin-top: 1rem !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: auto !important;
  height: auto !important;
  min-width: 180px !important;
  text-align: center !important;
  backdrop-filter: blur(10px) !important;
  animation: none !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
  transition: all 0.3s ease !important;
}

.hero-badge-new:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%) !important;
}

.hero-badge-new i {
  font-size: 16px !important;
  color: white !important;
}

.hero-badge-new span {
  font-size: 16px !important;
  color: white !important;
  font-weight: 700 !important;
}

/* Desktop-specific override to ensure badge stability */
@media (min-width: 768px) {
  .hero-badge-new {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1002 !important;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 1rem auto 2rem auto !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    text-align: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    height: auto !important;
    min-width: 150px !important;
    transition: all 0.3s ease !important;
    animation: none !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
  }
}

/* ========================================
   DARK THEME SERVICES PAGE
   ======================================== */

/* Main Services Page */
.services-page-simple {
  background: #1a202c;
  min-height: 100vh;
  padding: 2rem 0;
  color: #e2e8f0;
}

/* Page Header */
.page-header-simple {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #4a5568;
}

.page-header-simple h1 {
  color: #f7fafc;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-header-simple p {
  color: #a0aec0;
  font-size: 1.1rem;
  margin: 0;
}

/* Filters */
.filters-simple {
  background: #2d3748;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid #4a5568;
}

.filters-simple .form-control {
  border-radius: 6px;
  border: 1px solid #4a5568;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  background: #1a202c;
  color: #e2e8f0;
}

.filters-simple .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
  background: #1a202c;
  color: #e2e8f0;
}

.filters-simple .form-control::placeholder {
  color: #718096;
}

/* Table Container */
.table-container-simple {
  background: #2d3748;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #4a5568;
}

.table-container-simple .table {
  margin: 0;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.table-container-simple .table thead th {
  background: var(--teal);
  color: white;
  font-weight: 600;
  border: none;
  padding: 1rem 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-container-simple .table tbody tr {
  background: #2d3748;
}

.table-container-simple .table tbody tr:hover {
  background-color: #4a5568;
}

.table-container-simple .table tbody td {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #4a5568;
  color: #e2e8f0;
}

.table-container-simple .table-info td {
  background-color: #2c5282;
  color: #bee3f8;
  font-weight: 600;
  border-top: 2px solid var(--teal);
}

/* Enhanced Dark Theme Elements */
.category-row-dark {
  background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
}

.category-header-dark {
  padding: 1rem 0.75rem;
  font-size: 1rem;
  color: #f7fafc;
  border: none;
}

.category-header-dark i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.service-row-dark {
  background: #2d3748;
  transition: all 0.3s ease;
}

.service-row-dark:hover {
  background: #4a5568;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-id-dark .badge-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #2b6cb0 100%);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
}

.service-name-dark {
  font-weight: 500;
  color: #f7fafc;
}

.price-badge {
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
}

.service-min-dark,
.service-max-dark {
  color: #cbd5e0;
  font-weight: 500;
}

.service-action-dark .btn-success {
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.service-action-dark .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.4);
  color: white;
  text-decoration: none;
}

.service-action-dark .btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.service-action-dark .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
  color: white;
  text-decoration: none;
}

/* Modal Dark Theme */
.modal-content {
  background: #2d3748;
  color: #e2e8f0;
  border: 1px solid #4a5568;
}

.modal-header {
  border-bottom: 1px solid #4a5568;
}

.modal-footer {
  border-top: 1px solid #4a5568;
}

.modal-title {
  color: #f7fafc;
}

.close {
  color: #a0aec0;
  opacity: 1;
}

.close:hover {
  color: #f7fafc;
}

/* Button Styles for Dark Theme */
.btn-primary {
  background-color: var(--teal);
  border-color: var(--teal);
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-secondary {
  background-color: #4a5568;
  border-color: #4a5568;
  color: #e2e8f0;
}

.btn-secondary:hover {
  background-color: #718096;
  border-color: #718096;
  color: #f7fafc;
}

.btn-success {
  background-color: #38a169;
  border-color: #38a169;
}

.btn-success:hover {
  background-color: #2f855a;
  border-color: #2f855a;
}

/* Responsive */
@media (max-width: 768px) {
  .services-page-simple {
    padding: 1rem 0;
  }
  
  .page-header-simple h1 {
    font-size: 2rem;
  }
  
  .filters-simple {
    padding: 1rem;
  }
  
  .filters-simple .row > div {
    margin-bottom: 1rem;
  }
  
  .filters-simple .row > div:last-child {
    margin-bottom: 0;
  }
  
  .table-container-simple .table {
    font-size: 0.8rem;
  }
  
  .table-container-simple .table thead th,
  .table-container-simple .table tbody td {
    padding: 0.5rem 0.25rem;
  }
}

/* Services Header */
.services-header-theme {
  text-align: center;
  margin-bottom: 3rem;
}

.services-badge-theme {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.services-title-theme {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.services-subtitle-theme {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Section */
.services-content-theme {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Filters Section */
.services-filters-theme {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.search-container-theme {
  position: relative;
}

.search-container-theme i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 2;
}

.search-input-theme {
  padding-left: 2.5rem !important;
}

/* Services Table */
.services-table-theme {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.services-table-theme .table {
  margin-bottom: 0;
}

.services-table-theme .thead-dark th {
  background: var(--teal-gradient);
  border: none;
  color: white;
  font-weight: 600;
  padding: 1rem 0.75rem;
}

/* Category Rows */
.category-row-theme {
  background: var(--teal-light);
}

.category-header-theme {
  padding: 1rem 0.75rem;
  border: none;
}

.category-content-theme {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.category-content-theme i {
  font-size: 1.1rem;
}

/* Service Rows */
.service-row-theme {
  transition: all 0.3s ease;
}

.service-row-theme:hover {
  background: var(--hover-bg);
}

.service-row-theme td {
  padding: 1rem 0.75rem;
  vertical-align: middle;
  border-top: 1px solid var(--border-color);
}

.service-id-theme {
  font-weight: 600;
  color: var(--teal);
}

.service-name-theme {
  font-weight: 500;
  color: var(--text-primary);
}

.price-badge-theme {
  background: var(--success-light);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.range-theme {
  color: var(--text-secondary);
  font-weight: 500;
}

.time-theme {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Footer Section */
.services-footer-theme {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services-section-theme {
    padding: 3rem 0 1rem 0;
  }
  
  .services-title-theme {
    font-size: 2rem;
  }
  
  .services-subtitle-theme {
    font-size: 1rem;
  }
  
  .services-filters-theme {
    padding: 1rem;
  }
  
  .services-table-theme {
    padding: 1rem;
  }
  
  .services-table-theme .thead-dark th,
  .service-row-theme td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}


/* ========================================
   MODERN LOGIN & SIGNUP PAGE STYLES - COMPLETE REDESIGN
   ======================================== */

/* ========================================
   MODERN LOGIN PAGE STYLES
   ======================================== */

/* Modern Login Section - Clean Design */
.login-section-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
  padding: 2rem 0;
}

.login-particles-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
  background-size: 400px 400px, 300px 300px;
  animation: backgroundShift 25s ease-in-out infinite, float 15s ease-in-out infinite;
  z-index: 1;
}

/* Modern Login Container - Clean & Simple */
.login-container-modern {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.6s ease-out;
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

/* Desktop centering for login */
@media (min-width: 769px) {
  .login-section-modern {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
  }
  
  .login-section-modern .container {
    max-width: 500px !important;
    margin: 0 auto !important;
  }
  
  .login-section-modern .row {
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
  }
  
  .login-container-modern {
    margin: 0 auto !important;
    transform: translateY(0) !important;
  }
}

/* Modern Login Header */
.login-header-modern {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.login-logo-modern {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.login-title-modern {
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.login-subtitle-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  margin-bottom: 0;
}

/* Modern Login Form Styles */
.login-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Modern Login Alerts */
.login-alert-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid;
  animation: fadeInUp 0.4s ease-out;
}

.login-alert-error-modern {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.login-alert-success-modern {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.login-alert-modern i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Login Form Footer */
.form-footer-modern {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer-modern p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.signup-link-modern,
.forgot-link-modern {
  color: #10B981;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.signup-link-modern:hover,
.forgot-link-modern:hover {
  color: #34D399;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Login Mobile Responsive */
@media (max-width: 768px) {
  .login-section-modern {
    min-height: 100vh;
    padding: var(--space-lg) 0;
  }
  
  .login-container-modern {
    padding: 1.5rem;
    margin: var(--space-sm);
    max-width: 380px;
  }
  
  .login-logo-modern {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .login-title-modern {
    font-size: 1.5rem;
  }
  
  .login-subtitle-modern {
    font-size: 0.85rem;
  }
  
  .input-modern {
    padding: 0.7rem 0.7rem 0.7rem 2rem;
    font-size: 0.85rem;
  }
  
  .label-modern {
    left: 2rem;
    top: 0.7rem;
    font-size: 0.8rem;
  }
  
  .input-modern:focus + .label-modern,
  .input-modern:not(:placeholder-shown) + .label-modern {
    transform: translateY(-1.5rem) scale(0.85);
  }
  
  .btn-modern {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   MODERN SIGNUP PAGE STYLES - COMPLETE REDESIGN
   ======================================== */

/* Modern Signup Section - Clean Design */
.signup-section-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
  padding: 2rem 0;
}

.signup-background-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.signup-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  z-index: 1;
}

.signup-particles-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
  background-size: 400px 400px, 300px 300px;
  animation: backgroundShift 25s ease-in-out infinite, float 15s ease-in-out infinite;
  z-index: 1;
}

/* Modern Signup Container - Clean & Simple */
.signup-container-modern {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.6s ease-out;
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}


/* Modern Signup Header */
.signup-header-modern {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.signup-logo-modern {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.signup-title-modern {
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.text-gradient-modern {
  background: linear-gradient(135deg, #10B981 0%, #34D399 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

.signup-subtitle-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  margin-bottom: 0;
}

/* Modern Form Styles */
.signup-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.form-group-modern {
  position: relative;
}

.input-wrapper-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-modern {
  position: absolute;
  left: 1rem;
  color: #10B981;
  font-size: 1.1rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.input-modern {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.input-modern::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.input-modern:focus {
  border-color: #10B981;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 0 0 2px rgba(16, 185, 129, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  outline: none;
}

.input-modern:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.label-modern {
  position: absolute;
  left: 2.25rem;
  top: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  transform-origin: left top;
  background: transparent;
  padding: 0 0.25rem;
}

.input-modern:focus + .label-modern,
.input-modern:not(:placeholder-shown) + .label-modern {
  transform: translateY(-1.75rem) scale(0.85);
  color: #10B981;
  font-weight: 500;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
}

/* Modern Checkbox */
.checkbox-modern {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
  position: relative;
}

.checkbox-modern input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark-modern {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark-modern {
  background: var(--primary-gradient);
  border-color: #10B981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark-modern::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-text-modern {
  flex: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Modern Button */
.btn-modern {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--primary-gradient);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.btn-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-modern:active {
  transform: translateY(-1px);
}

.btn-modern i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-modern:hover i {
  transform: scale(1.1);
}

.btn-shine-modern {
  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-modern:hover .btn-shine-modern {
  left: 100%;
}

/* Modern Form Footer */
.form-footer-modern {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer-modern p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.login-link-modern {
  color: #10B981;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-link-modern:hover {
  color: #34D399;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Modern Alerts */
.signup-alert-modern {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.signup-alert-error-modern {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: #ff6b7a;
}

.signup-alert-success-modern {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
}

/* Modern Content */
.signup-content-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Modern Captcha */
.captcha-container-modern {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

/* Modern Additional Content */
.signup-additional-modern {
  padding: var(--space-xxl) 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.signup-content-card-modern {
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%),
    rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .signup-section-modern {
    min-height: 100vh;
    padding: var(--space-lg) 0;
  }
  
  .signup-container-modern {
    padding: 1.5rem;
    margin: var(--space-sm);
    max-width: 380px;
  }
  
  .signup-logo-modern {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .signup-title-modern {
    font-size: 1.5rem;
  }
  
  .signup-subtitle-modern {
    font-size: 0.85rem;
  }
  
  .input-modern {
    padding: 0.7rem 0.7rem 0.7rem 2rem;
    font-size: 0.85rem;
  }
  
  .label-modern {
    left: 2rem;
    top: 0.7rem;
    font-size: 0.8rem;
  }
  
  .input-modern:focus + .label-modern,
  .input-modern:not(:placeholder-shown) + .label-modern {
    transform: translateY(-1.5rem) scale(0.85);
  }
  
  .btn-modern {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  
  .signup-content-card-modern {
    padding: 1.5rem;
  }
}

/* Signup Hero Section - Fixed */
.signup-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.signup-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.signup-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.signup-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(16, 185, 129, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(16, 185, 129, 0.2), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: 1;
}

/* Signup Hero Content - Fixed */
.signup-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 100%;
  margin: 0;
  padding: var(--space-md) 0;
}

.signup-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #10B981;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.signup-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.signup-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.text-gradient-signup {
  background: linear-gradient(135deg, #10B981 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.signup-hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Signup Hero Features */
.signup-hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.signup-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.signup-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(5px);
}

.signup-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

.signup-feature-item span {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

/* Beautiful Signup Form Container - Fixed */
.signup-form-container-new {
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%),
    rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 
    0 12px 25px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.9s both;
  overflow: hidden;
  max-width: 100%;
  margin: 0;
}

.signup-form-container-new::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.signup-form-container-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 24px;
  z-index: -1;
}

.signup-form-header-new {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.signup-form-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  font-size: 1.25rem;
  color: white;
  box-shadow: 
    0 5px 15px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

.signup-form-header-new h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signup-form-header-new p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

/* Beautiful Form Styles - Ultra Compact */
.signup-form-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.form-group-new {
  position: relative;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 0.65rem;
  color: #10B981;
  font-size: 0.9rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.form-input-new {
  width: 100%;
  padding: 0.65rem 0.65rem 0.65rem 2.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 3px 12px rgba(0, 0, 0, 0.1);
}

.form-input-new::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.form-input-new:focus {
  outline: none;
  border-color: #10B981;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 0 0 4px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 8px 25px rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

.form-input-new:focus + .form-label-new,
.form-input-new:not(:placeholder-shown) + .form-label-new {
  transform: translateY(-1.75rem) scale(0.85);
  color: #10B981;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

/* Ensure floating labels work properly */
.form-input-new:focus ~ .form-label-new,
.form-input-new:not(:placeholder-shown) ~ .form-label-new {
  transform: translateY(-1.75rem) scale(0.85);
  color: #10B981;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

.form-input-new:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.form-label-new {
  position: absolute;
  left: 2.25rem;
  top: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  transform-origin: left top;
  background: transparent;
  padding: 0 0.25rem;
}

/* Beautiful Checkbox */
.checkbox-label-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding: 0.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.checkbox-label-new:hover {
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-label-new input[type="checkbox"] {
  display: none;
}

.checkmark-new {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
  backdrop-filter: blur(10px);
}

.checkbox-label-new input[type="checkbox"]:checked + .checkmark-new {
  background: var(--primary-gradient);
  border-color: #10B981;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transform: scale(1.05);
}

.checkbox-label-new input[type="checkbox"]:checked + .checkmark-new::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-text-new {
  flex: 1;
  font-weight: 500;
}

/* Beautiful Button - Ultra Compact */
.btn-signup-new {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: var(--primary-gradient);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 5px 15px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.btn-signup-new .btn-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;
}

.btn-signup-new:hover .btn-shine {
  left: 100%;
}

.btn-signup-new:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-signup-new:active {
  transform: translateY(-1px);
}

.btn-signup-new i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-signup-new:hover i {
  transform: scale(1.1);
}

/* Beautiful Form Footer - Ultra Compact */
.form-footer-new {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer-new p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.login-link-new {
  color: #10B981;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.login-link-new::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10B981;
  transition: width 0.3s ease;
}

.login-link-new:hover::after {
  width: 100%;
}

.login-link-new:hover {
  color: #00D4AA;
}

/* Beautiful Captcha Container */
.captcha-container-new {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Beautiful Alerts */
.signup-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  backdrop-filter: blur(15px);
  border: 1px solid;
}

.signup-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.signup-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.signup-alert i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.signup-content-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

/* ULTRA FORCE override for form inputs to ensure glassmorphism styling */
.signup-form-new .form-input-new,
.signup-form-container-new .form-input-new,
input.form-input-new {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  color: white !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 1rem 1rem 1rem 3rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  width: 100% !important;
  display: block !important;
}

.signup-form-new .form-input-new:focus,
.signup-form-container-new .form-input-new:focus,
input.form-input-new:focus {
  border-color: #10B981 !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 
    0 0 0 4px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 8px 25px rgba(16, 185, 129, 0.15) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

.signup-form-new .form-input-new:hover,
.signup-form-container-new .form-input-new:hover,
input.form-input-new:hover {
  border-color: rgba(16, 185, 129, 0.4) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-1px) !important;
}

.signup-form-new .form-input-new::placeholder,
.signup-form-container-new .form-input-new::placeholder,
input.form-input-new::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 400 !important;
}

/* ULTRA FORCE override for checkbox styling */
.signup-form-new .checkmark-new,
.signup-form-container-new .checkmark-new,
.checkbox-label-new .checkmark-new {
  width: 24px !important;
  height: 24px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  display: block !important;
}

.signup-form-new .checkbox-label-new input[type="checkbox"]:checked + .checkmark-new,
.signup-form-container-new .checkbox-label-new input[type="checkbox"]:checked + .checkmark-new,
.checkbox-label-new input[type="checkbox"]:checked + .checkmark-new {
  background: var(--primary-gradient) !important;
  border-color: #10B981 !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
  transform: scale(1.05) !important;
}

.signup-form-new .checkbox-label-new input[type="checkbox"]:checked + .checkmark-new::after,
.signup-form-container-new .checkbox-label-new input[type="checkbox"]:checked + .checkmark-new::after,
.checkbox-label-new input[type="checkbox"]:checked + .checkmark-new::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: bold !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* ULTRA FORCE override for button styling */
.signup-form-new .btn-signup-new,
.signup-form-container-new .btn-signup-new,
button.btn-signup-new {
  background: var(--primary-gradient) !important;
  border: none !important;
  border-radius: 16px !important;
  color: white !important;
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
  padding: 1.2rem 2rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 1rem !important;
}

.signup-form-new .btn-signup-new:hover,
.signup-form-container-new .btn-signup-new:hover,
button.btn-signup-new:hover {
  transform: translateY(-3px) !important;
  box-shadow: 
    0 12px 35px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Enhanced floating label states */
.signup-form-new .form-input-new.has-value + .form-label-new,
.signup-form-new .form-input-new.focused + .form-label-new {
  transform: translateY(-2.5rem) scale(0.85) !important;
  color: #10B981 !important;
  font-weight: 600 !important;
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(10px) !important;
}

.signup-form-new .form-input-new.has-value ~ .form-label-new,
.signup-form-new .form-input-new.focused ~ .form-label-new {
  transform: translateY(-2.5rem) scale(0.85) !important;
  color: #10B981 !important;
  font-weight: 600 !important;
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(10px) !important;
}

/* Mobile responsive floating labels */
@media (max-width: 768px) {
  .signup-form-new .form-input-new.has-value + .form-label-new,
  .signup-form-new .form-input-new.focused + .form-label-new {
    transform: translateY(-2rem) scale(0.85) !important;
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  .signup-form-new .form-input-new.has-value ~ .form-label-new,
  .signup-form-new .form-input-new.focused ~ .form-label-new {
    transform: translateY(-2rem) scale(0.85) !important;
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(10px) !important;
  }
}

/* Additional Content */
.signup-additional-content {
  padding: var(--space-xxl) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

.signup-content-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.signup-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.hero-title-new {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 6;
}

.hero-title-new .text-gradient-new {
  background: linear-gradient(135deg, #10B981 0%, #34D399 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
  position: relative;
}

.hero-description-new {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 6;
}

.hero-actions-new {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 6;
  margin-bottom: var(--space-xxl);
}

.btn-new {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary-new {
  background: var(--primary-gradient);
  color: white;
  border: 2px solid rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 4px 20px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
}

.btn-outline-new {
  background: var(--bg-glass);
  color: var(--primary);
  border: 2px solid rgba(16, 185, 129, 0.4);
}

.btn-outline-new:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.6);
}

/* Modern Stats Section - Clean & Elegant */
.hero-stats-new {
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  margin-top: 2rem;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%),
    rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-stats-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.stat-card-new {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out both;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card-new:nth-child(1) { animation-delay: 1.3s; }
.stat-card-new:nth-child(2) { animation-delay: 1.4s; }
.stat-card-new:nth-child(3) { animation-delay: 1.5s; }
.stat-card-new:nth-child(4) { animation-delay: 1.6s; }

.stat-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.stat-card-new:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: rgba(16, 185, 129, 0.05);
}

.stat-card-new:hover::before {
  transform: scaleX(1);
}

.stat-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.stat-card-new:hover .stat-icon-new {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transform: scale(1.05);
}

.stat-number-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
  animation: pulse 3s ease-in-out infinite;
  letter-spacing: -0.02em;
}

.stat-label-new {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Ultra Modern Features Section */
/* Compact Features Section */
.features-section-compact {
  padding: var(--space-lg) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
}

.features-section-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 0;
}

/* Section Header Compact */
.section-header-compact {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.section-header-compact h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.text-gradient-compact {
  background: linear-gradient(135deg, #10B981 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.section-header-compact p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  line-height: 1.5;
}

/* Features Grid Compact */
.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.feature-card-compact {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.feature-card-compact:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.feature-icon-compact {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: white;
  box-shadow: 
    0 4px 15px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-card-compact:hover .feature-icon-compact {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card-compact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.feature-card-compact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.section-badge-ultra {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-badge-ultra:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 25px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
}

.section-header-ultra h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-gradient-ultra {
  background: linear-gradient(135deg, #10B981 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

.section-header-ultra p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  line-height: 1.6;
}

/* Features Showcase Ultra */
.features-showcase-ultra {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.feature-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.feature-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 12px 50px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.feature-showcase-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.feature-showcase-card:nth-child(even) .feature-visual-ultra {
  order: 2;
}

.feature-showcase-card:nth-child(even) .feature-content-ultra {
  order: 1;
}

/* Feature Visual Ultra */
.feature-visual-ultra {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.feature-icon-ultra {
  position: relative;
  z-index: 2;
}

.icon-background-ultra {
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-showcase-card:hover .icon-background-ultra {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 
    0 12px 40px rgba(16, 185, 129, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.icon-glow-ultra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Feature Animations */
.feature-animation-ultra {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Pulse Rings for Instant Delivery */
.pulse-ring-ultra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.pulse-ring-ultra.delay-1 {
  animation-delay: 0.5s;
}

.pulse-ring-ultra.delay-2 {
  animation-delay: 1s;
}

/* Security Grid for Ultra Safe */
.security-grid-ultra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 200px;
  height: 200px;
}

.grid-dot-ultra {
  width: 8px;
  height: 8px;
  background: rgba(16, 185, 129, 0.6);
  border-radius: 50%;
  animation: gridPulse 2s ease-in-out infinite;
}

.grid-dot-ultra:nth-child(1) { animation-delay: 0s; }
.grid-dot-ultra:nth-child(2) { animation-delay: 0.2s; }
.grid-dot-ultra:nth-child(3) { animation-delay: 0.4s; }
.grid-dot-ultra:nth-child(4) { animation-delay: 0.6s; }
.grid-dot-ultra:nth-child(5) { animation-delay: 0.8s; }
.grid-dot-ultra:nth-child(6) { animation-delay: 1s; }
.grid-dot-ultra:nth-child(7) { animation-delay: 1.2s; }
.grid-dot-ultra:nth-child(8) { animation-delay: 1.4s; }
.grid-dot-ultra:nth-child(9) { animation-delay: 1.6s; }

/* Support Waves for Always Support */
.support-waves-ultra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.wave-ultra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  animation: waveExpand 3s ease-in-out infinite;
}

.wave-ultra.delay-1 {
  animation-delay: 1s;
}

.wave-ultra.delay-2 {
  animation-delay: 2s;
}

/* Feature Content Ultra */
.feature-content-ultra {
  position: relative;
  z-index: 1;
}

.feature-content-ultra h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.feature-content-ultra p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Feature Stats Ultra */
.feature-stats-ultra {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.stat-item-ultra {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item-ultra:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.stat-number-ultra {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  margin-bottom: var(--space-xs);
}

.stat-label-ultra {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Keyframe Animations */
@keyframes backgroundShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-5px); }
  50% { transform: translateX(-5px) translateY(10px); }
  75% { transform: translateX(-10px) translateY(-5px); }
}

@keyframes pulseGlow {
  0%, 100% { 
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes gridPulse {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes waveExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.section-header-new h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(16, 185, 129, 0.1);
  letter-spacing: -0.02em;
}

.section-header-new p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.feature-card-new-modern {
  text-align: center;
  padding: var(--space-xxl);
  background: var(--bg-glass);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card-new-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card-new-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 12px 40px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.9);
}

.feature-card-new-modern:hover::before {
  transform: scaleX(1);
}

.feature-icon-new-modern {
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 3rem;
  color: white;
  box-shadow: 
    0 4px 20px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.feature-card-new-modern:hover .feature-icon-new-modern {
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(10deg);
}

.feature-card-new-modern h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.feature-card-new-modern p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}

/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--bg-surface);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 212, 170, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Features Section */
.features-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, #1A1F2E 0%, #252B3D 50%, #1A1F2E 100%);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* New Feature Card Design */
.feature-card-new {
  background: rgba(26, 31, 46, 0.9);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(0, 212, 170, 0.3);
  transition: var(--transition-normal);
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  text-align: left;
}

.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  border-color: var(--primary);
  background: rgba(26, 31, 46, 1);
}

.feature-icon-new {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  transition: var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-card-new:hover .feature-icon-new {
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
  transform: scale(1.05);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-card {
  background: rgba(26, 31, 46, 0.9);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(0, 212, 170, 0.3);
  transition: var(--transition-normal);
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
  border-color: var(--primary);
  background: rgba(26, 31, 46, 1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ultra Modern Crypto Section */
.crypto-section {
  padding: var(--space-xxl) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
}

.crypto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.section-title i {
  color: var(--primary);
  font-size: 2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
  position: relative;
  z-index: 1;
}

.crypto-card {
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crypto-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.9);
}

.crypto-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.crypto-card:hover .crypto-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.crypto-icon.usdt {
  background: linear-gradient(135deg, #26a17b, #00d4aa);
}

.crypto-icon.bitcoin {
  background: linear-gradient(135deg, #f7931a, #ffb84d);
}

.crypto-icon.ethereum {
  background: linear-gradient(135deg, #627eea, #8b5cf6);
}

.crypto-icon.litecoin {
  background: linear-gradient(135deg, #bfbbbb, #d1d5db);
}



.crypto-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.crypto-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Platforms Section */
.platforms-section {
  padding: var(--space-xxl) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
}

.platforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
  position: relative;
  z-index: 1;
}

.platform-card {
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.9);
}

.platform-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover .platform-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.platform-icon.telegram {
  background: linear-gradient(135deg, #0088cc, #00a8ff);
}

.platform-icon.instagram {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.platform-icon.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.platform-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.platform-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #ff4444);
}

.platform-icon.tiktok {
  background: linear-gradient(135deg, #000000, #333333);
}

.platform-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

/* Services Section */
.services-section {
  padding: var(--space-xxl) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 0;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.9);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon.followers {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.service-icon.likes {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.service-icon.views {
  background: linear-gradient(135deg, #2196f3, #42a5f5);
}

.service-icon.comments {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.service-icon.shares {
  background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.service-icon.subscribers {
  background: linear-gradient(135deg, #f44336, #ef5350);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Security Section */
.security-section {
  padding: var(--space-xxl) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: 0;
}


.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
  position: relative;
  z-index: 1;
}

.security-item {
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.security-item:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.9);
}

.security-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.security-item:hover .security-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.security-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

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

/* Desktop Homepage Layout */
@media (min-width: 769px) {
  .features-section,
  .crypto-section,
  .platforms-section,
  .services-section,
  .security-section {
    padding: var(--space-3xl) 0;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .features-grid,
  .crypto-grid,
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .platforms-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
  }
  
  .security-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
  
  .stat-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .stat-number {
    font-size: 2.8rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
  }
  
}

/* New Homepage Responsive */
@media (max-width: 768px) {
  .hero-section-new {
    min-height: 80vh;
    padding: 6rem 0 1.5rem 0;
    justify-content: center;
    align-items: center;
    background: 
      radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
      linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: visible;
  }
  
  .hero-content-new {
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-badge-new {
    display: inline-flex !important;
    font-size: 11px !important;
    padding: 6px 12px !important;
    margin-bottom: 1rem !important;
    z-index: 1002 !important;
    margin-top: 0.5rem !important;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    min-width: 120px !important;
    text-align: center !important;
    align-items: center !important;
    gap: 4px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease !important;
    animation: none !important;
    transform: translateZ(0) !important;
  }
  
  .hero-title-new {
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
    font-weight: 700;
  }
  
  .hero-description-new {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .hero-actions-new {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
  }
  
  .hero-stats-new {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: 
      linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%),
      rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 
      0 6px 25px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.03);
  }
  
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card-new {
    padding: 0.875rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    min-height: 100px;
  }
  
  .stat-icon-new {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
  }
  
  .stat-number-new {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #10B981;
  }
  
  .stat-label-new {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  
  .btn-new {
    width: 100%;
    max-width: 300px;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
  }
  
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-md);
    width: 100%;
  }
  
  .stat-card-new {
    padding: var(--space-lg);
    min-height: 140px;
  }
  
  .stat-icon-new {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
  }
  
  .stat-number-new {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }
  
  .stat-label-new {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
  }
  
  .section-header-new {
    padding: 0 var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .section-header-new h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  
  .section-header-new p {
    font-size: 1rem;
  }
  
  .features-section-compact {
    padding: var(--space-lg) 0;
  }
  
  .section-header-compact h2 {
    font-size: 1.8rem;
  }
  
  .section-header-compact p {
    font-size: 0.9rem;
  }
  
  .features-grid-compact {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .feature-card-compact {
    padding: var(--space-md);
  }
  
  .feature-icon-compact {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
  }
  
  .feature-card-compact h3 {
    font-size: 1.1rem;
  }
  
  .feature-card-compact p {
    font-size: 0.85rem;
  }
  
  .feature-card-new-modern h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  /* Signup Page Responsive - Fixed */
  .signup-hero-section {
    min-height: 50vh;
    padding: var(--space-md) 0;
  }
  
  .signup-hero-content {
    padding: var(--space-sm) 0;
    text-align: center;
  }
  
  .signup-hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }
  
  .signup-hero-description {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
  }
  
  .signup-hero-features {
    gap: var(--space-sm);
  }
  
  .signup-feature-item {
    padding: var(--space-sm);
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .signup-feature-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .signup-feature-item span {
    font-size: 0.9rem;
  }
  
  .signup-form-container-new {
    padding: 1.5rem;
    margin-top: var(--space-md);
    max-width: 100%;
  }
  
  .signup-form-header-new h2 {
    font-size: 1.5rem;
  }
  
  .signup-form-header-new p {
    font-size: 0.8rem;
  }
  
  .signup-form-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-input-new {
    padding: 0.65rem 0.65rem 0.65rem 2rem;
    font-size: 0.8rem;
  }
  
  .form-label-new {
    left: 2rem;
    top: 0.65rem;
    font-size: 0.8rem;
  }
  
  .form-input-new:focus + .form-label-new,
  .form-input-new:not(:placeholder-shown) + .form-label-new {
    transform: translateY(-1.5rem) scale(0.85);
  }
  
  .form-input-new:focus ~ .form-label-new,
  .form-input-new:not(:placeholder-shown) ~ .form-label-new {
    transform: translateY(-1.5rem) scale(0.85);
  }
  
  .btn-signup-new {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
  
  .signup-additional-content {
    padding: var(--space-lg) 0;
  }
  
  .signup-content-card {
    padding: var(--space-lg);
  }
  
  .feature-card-new-modern p {
    font-size: 1rem;
  }
}

/* Removed conflicting CSS overrides */

/* Desktop Layout for Signup - Perfect Centering */
@media (min-width: 769px) {
  .signup-section-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .signup-section-modern .container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .signup-section-modern .row {
    justify-content: center;
    align-items: center;
  }
  
  .signup-section-modern .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .signup-container-modern {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Homepage Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-md);
  }
  
  /* .hero-badge - REMOVED to prevent conflicts with .hero-badge-new */
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: var(--space-md);
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .hero-actions {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
  }
  
  .hero-stats {
    padding: 0 var(--space-md);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .stat-card {
    padding: var(--space-md);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .section-header {
    padding: 0 var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  .features-section,
  .crypto-section,
  .platforms-section,
  .services-section,
  .security-section {
    padding: var(--space-xl) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0 var(--space-md);
  }
  
  .feature-card-new {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }
  
  .feature-icon-new {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: var(--space-lg);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .crypto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .crypto-card {
    padding: var(--space-md);
  }
  
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  
  .platform-card {
    padding: var(--space-sm);
  }
  
  .platform-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-xs);
  }
  
  .platform-name {
    font-size: 0.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .service-card {
    padding: var(--space-lg);
  }
  
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-md);
  }
  
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .security-item {
    padding: var(--space-md);
  }
  
  .security-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-sm);
  }
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

.login-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  border: 1px solid var(--bg-surface);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.login-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.login-logo {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
}

.login-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.login-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Signup & Login Page Responsive */
@media (max-width: 768px) {
  .signup-form-container,
  .login-form-container {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 100%;
  }
  
  .signup-form-header h2,
  .login-form-header h2 {
    font-size: 1.5rem;
  }
  
  .login-page {
    padding: var(--space-lg) 0;
  }
  
  .login-card {
    padding: var(--space-xl);
    margin: 0 var(--space-md);
  }
  
  .login-header h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--space-md) 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .signup-form-container,
  .login-form-container {
    padding: var(--space-md);
    margin: var(--space-md) 0;
  }
  
  .form-input {
    padding: var(--space-sm);
  }
  
  /* .hero-badge - REMOVED to prevent conflicts with .hero-badge-new */
  
  .hero-description {
    font-size: 0.9rem;
  }
}

/* ========================================
   NEW ORDER PAGE ENHANCEMENTS
   ======================================== */

/* Enhanced form controls for neworder page */
.neworder-page-dark .form-control,
.neworder-page-dark select,
.neworder-page-dark input[type="text"],
.neworder-page-dark input[type="number"],
.neworder-page-dark textarea {
  background: #1a202c !important;
  border: 1px solid #4a5568 !important;
  color: #e2e8f0 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.neworder-page-dark .form-control:focus,
.neworder-page-dark select:focus,
.neworder-page-dark input:focus,
.neworder-page-dark textarea:focus {
  background: #1a202c !important;
  border-color: var(--teal) !important;
  color: #e2e8f0 !important;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
}

/* Button enhancements */
.neworder-page-dark .btn-primary,
.neworder-page-dark .btn-big-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.neworder-page-dark .btn-primary:hover,
.neworder-page-dark .btn-big-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4) !important;
}

/* Well and card styling */
.neworder-page-dark .well {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.neworder-page-dark .card {
  background: #2d3748 !important;
  border: 1px solid #4a5568 !important;
  border-radius: 12px !important;
}

/* Label styling */
.neworder-page-dark .control-label,
.neworder-page-dark label {
  color: #f7fafc !important;
  font-weight: 600 !important;
}

/* Alert styling overrides */
.neworder-page-dark .alert-success {
  background: linear-gradient(135deg, rgba(56, 161, 105, 0.1) 0%, rgba(47, 133, 90, 0.1) 100%) !important;
  border: none !important;
  border-left: 4px solid #38a169 !important;
  color: #f0fff4 !important;
}

.neworder-page-dark .alert-danger {
  background: linear-gradient(135deg, rgba(245, 101, 101, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%) !important;
  border: none !important;
  border-left: 4px solid #f56565 !important;
  color: #fed7d7 !important;
}

/* Override existing wrapper styles for neworder page */
.neworder-page-dark .wrapper-content {
  background: transparent !important;
}

.neworder-page-dark .wrapper-content__body {
  background: transparent !important;
}

.neworder-page-dark .totals,
.neworder-page-dark .new_order-block {
  background: transparent !important;
}

.neworder-page-dark .bg,
.neworder-page-dark .divider-top,
.neworder-page-dark .divider-bottom {
  display: none !important;
}

/* ========================================
   PROFESSIONAL NEW ORDER PAGE OVERRIDES
   ======================================== */

/* Override existing wrapper styles for professional neworder page */
.professional-neworder-page .wrapper-content {
  background: transparent !important;
  padding: 0 !important;
}

.professional-neworder-page .wrapper-content__body {
  background: transparent !important;
  padding: 0 !important;
}

.professional-neworder-page .totals,
.professional-neworder-page .new_order-block {
  background: transparent !important;
  display: none !important;
}

.professional-neworder-page .bg,
.professional-neworder-page .divider-top,
.professional-neworder-page .divider-bottom {
  display: none !important;
}

/* Hide any existing content that might interfere */
.professional-neworder-page #block_93 {
  display: none !important;
}

/* Professional form enhancements */
.professional-neworder-page .form-control,
.professional-neworder-page select,
.professional-neworder-page input[type="text"],
.professional-neworder-page input[type="number"],
.professional-neworder-page textarea {
  background: #0f172a !important;
  border: 2px solid #334155 !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.professional-neworder-page .form-control:focus,
.professional-neworder-page select:focus,
.professional-neworder-page input:focus,
.professional-neworder-page textarea:focus {
  background: #0f172a !important;
  border-color: var(--teal) !important;
  color: #e2e8f0 !important;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
}

/* Professional button styling */
.professional-neworder-page .btn-primary,
.professional-neworder-page .btn-big-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border-radius: 12px !important;
  padding: 1rem 2rem !important;
}

.professional-neworder-page .btn-primary:hover,
.professional-neworder-page .btn-big-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

/* Professional alert styling */
.professional-neworder-page .alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%) !important;
  border: 1px solid #10b981 !important;
  border-radius: 12px !important;
  color: #d1fae5 !important;
}

.professional-neworder-page .alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%) !important;
  border: 1px solid #ef4444 !important;
  border-radius: 12px !important;
  color: #fecaca !important;
}

/* ========================================
   PROFESSIONAL DASHBOARD OVERRIDES
   ======================================== */

/* Override existing wrapper styles for professional dashboard */
.professional-dashboard .wrapper-content {
  background: transparent !important;
  padding: 0 !important;
}

.professional-dashboard .wrapper-content__body {
  background: transparent !important;
  padding: 0 !important;
}

.professional-dashboard .totals,
.professional-dashboard .new_order-block,
.professional-dashboard .hero,
.professional-dashboard .stats,
.professional-dashboard .crypto-section,
.professional-dashboard .security-section,
.professional-dashboard .features,
.professional-dashboard .platforms-section,
.professional-dashboard .services-section,
.professional-dashboard .user-dashboard {
  display: none !important;
}

.professional-dashboard .bg,
.professional-dashboard .divider-top,
.professional-dashboard .divider-bottom {
  display: none !important;
}

/* Hide any existing content that might interfere */
.professional-dashboard #block_93 {
  display: none !important;
}

/* Professional dashboard form enhancements */
.professional-dashboard .form-control,
.professional-dashboard select,
.professional-dashboard input[type="text"],
.professional-dashboard input[type="number"],
.professional-dashboard textarea {
  background: #0f172a !important;
  border: 2px solid #334155 !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.professional-dashboard .form-control:focus,
.professional-dashboard select:focus,
.professional-dashboard input:focus,
.professional-dashboard textarea:focus {
  background: #0f172a !important;
  border-color: var(--teal) !important;
  color: #e2e8f0 !important;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
}

/* Professional dashboard button styling */
.professional-dashboard .btn-primary,
.professional-dashboard .btn-big-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border-radius: 12px !important;
  padding: 0.75rem 1.5rem !important;
}

.professional-dashboard .btn-primary:hover,
.professional-dashboard .btn-big-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

/* Professional dashboard alert styling */
.professional-dashboard .alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%) !important;
  border: 1px solid #10b981 !important;
  border-radius: 12px !important;
  color: #d1fae5 !important;
}

.professional-dashboard .alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%) !important;
  border: 1px solid #ef4444 !important;
  border-radius: 12px !important;
  color: #fecaca !important;
}

/* ========================================
   UNIFIED HOMEPAGE THEME SYSTEM
   ======================================== */

/* Global Theme Override - Apply homepage theme to all pages */
body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
  color: #e2e8f0 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Remove ALL legacy wrapper systems */
.wrapper-content,
.wrapper-content__body,
.wrapper-content__header {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide all legacy decorative elements */
.bg,
.divider-top,
.divider-bottom,
#block_93,
#block_94,
#block_99,
#block_api {
  display: none !important;
}

/* Global page container for all pages */
.page-container-unified {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  min-height: 100vh;
  color: #e2e8f0;
  padding: 2rem 0;
}

/* Global page header for all pages */
.page-header-unified {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #334155;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-title-unified {
  color: #f1f5f9;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-title-unified i {
  color: var(--teal);
  font-size: 1.8rem;
}

.page-subtitle-unified {
  color: #94a3b8;
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}

/* Global card system */
.card-unified {
  background: #1e293b;
  border-radius: 16px;
  border: 1px solid #334155;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header-unified {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #334155;
}

.card-header-unified h3,
.card-header-unified h4,
.card-header-unified h5 {
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-body-unified {
  padding: 2rem;
}

/* Global form system */
.form-group-unified {
  margin-bottom: 1.5rem;
}

.form-label-unified {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label-unified i {
  color: var(--teal);
  width: 16px;
}

.form-control-unified {
  background: #0f172a !important;
  border: 2px solid #334155 !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0.875rem 1rem !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  transition: all 0.3s ease !important;
}

.form-control-unified:focus {
  background: #0f172a !important;
  border-color: var(--teal) !important;
  color: #e2e8f0 !important;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
  outline: none !important;
}

.form-control-unified::placeholder {
  color: #64748b !important;
}

/* Global button system */
.btn-unified-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%) !important;
  color: white !important;
  border: none !important;
  padding: 0.875rem 2rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.btn-unified-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4) !important;
  color: white !important;
  text-decoration: none !important;
}

.btn-unified-secondary {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%) !important;
  color: #e2e8f0 !important;
  border: 1px solid #6b7280 !important;
  padding: 0.875rem 2rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.btn-unified-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(75, 85, 99, 0.4) !important;
  color: #f1f5f9 !important;
  text-decoration: none !important;
}

/* Global table system */
.table-unified {
  width: 100%;
  border-collapse: collapse;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.table-unified thead th {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  color: #f9fafb;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
}

.table-unified tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #334155;
  vertical-align: middle;
  color: #e2e8f0;
}

.table-unified tbody tr:hover {
  background: rgba(20, 184, 166, 0.05);
}

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

/* Global status badges */
.status-badge-unified {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.status-badge-unified.success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.status-badge-unified.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.status-badge-unified.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.status-badge-unified.info {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* Global alert system */
.alert-unified {
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid;
}

.alert-unified.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  border-color: #10b981;
  color: #d1fae5;
}

.alert-unified.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border-color: #ef4444;
  color: #fecaca;
}

.alert-unified.warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  border-color: #f59e0b;
  color: #fef3c7;
}

.alert-unified.info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
  border-color: #3b82f6;
  color: #dbeafe;
}

/* Override all existing form controls */
.form-control,
select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
  background: #0f172a !important;
  border: 2px solid #334155 !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0.875rem 1rem !important;
  transition: all 0.3s ease !important;
}

.form-control:focus,
select:focus,
input:focus,
textarea:focus {
  background: #0f172a !important;
  border-color: var(--teal) !important;
  color: #e2e8f0 !important;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
  outline: none !important;
}

/* Override all existing buttons */
.btn-primary,
.btn-big-primary,
.btn-success {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-big-primary:hover,
.btn-success:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4) !important;
  color: white !important;
}

.btn-secondary,
.btn-big-secondary {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%) !important;
  border: 1px solid #6b7280 !important;
  color: #e2e8f0 !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.btn-secondary:hover,
.btn-big-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(75, 85, 99, 0.4) !important;
  color: #f1f5f9 !important;
}

/* Override all existing cards */
.card {
  background: #1e293b !important;
  border: 1px solid #334155 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  color: #e2e8f0 !important;
}

/* Override all existing tables */
.table {
  color: #e2e8f0 !important;
  background: #1e293b !important;
}

.table thead th {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%) !important;
  color: #f9fafb !important;
  border: none !important;
}

.table tbody td {
  border-color: #334155 !important;
  color: #e2e8f0 !important;
}

/* Override all existing alerts */
.alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%) !important;
  border: 1px solid #10b981 !important;
  border-radius: 12px !important;
  color: #d1fae5 !important;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%) !important;
  border: 1px solid #ef4444 !important;
  border-radius: 12px !important;
  color: #fecaca !important;
}

.alert-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%) !important;
  border: 1px solid #f59e0b !important;
  border-radius: 12px !important;
  color: #fef3c7 !important;
}

.alert-info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%) !important;
  border: 1px solid #3b82f6 !important;
  border-radius: 12px !important;
  color: #dbeafe !important;
}

/* Advanced Order Form Enhancements */
.balance-display-header {
    background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.balance-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.balance-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Order Success Details */
.order-success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.success-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 6px;
}

.detail-label {
    color: #94a3b8;
    font-size: 0.85rem;
}

.detail-value {
    color: #10b981;
    font-weight: 600;
    font-size: 0.85rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Advanced Form Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-info-panel,
.order-fields-section,
.calculator-advanced {
    animation: slideInUp 0.3s ease-out;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Tooltips */
.tooltip-enhanced {
    position: relative;
    cursor: help;
}

.tooltip-enhanced::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-enhanced:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Global responsive design */
@media (max-width: 768px) {
  .page-container-unified {
    padding: 1rem 0;
  }
  
  .page-header-unified {
    padding: 1.5rem 0;
  }
  
  .page-title-unified {
    font-size: 1.5rem;
  }
  
  .card-body-unified {
    padding: 1.5rem;
  }
  
  .table-unified {
    font-size: 0.85rem;
  }
  
  .table-unified thead th,
  .table-unified tbody td {
    padding: 0.75rem 1rem;
  }
  
  /* Mobile Optimizations for Order Form */
  .order-success-details {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .balance-display-header {
    margin-bottom: 1rem;
  }
}