/* Luxury Golden Royal Casino Theme - Premium iGaming Platform */
:root {
  /* Royal Dark Backgrounds */
  --royal-black: #0a0a0a;
  --royal-dark: #1a1a1a;
  --casino-purple: #1a0033;
  --deep-purple: #2d1b4e;
  --card-bg: #1f1f1f;
  
  /* Golden Royal Colors */
  --gold-primary: #FFD700;
  --gold-light: #FFF4B0;
  --gold-dark: #B8860B;
  --gold-bronze: #CD7F32;
  --gold-shine: #F4E4A0;
  
  /* Casino Colors */
  --casino-red: #DC143C;
  --casino-green: #228B22;
  --royal-purple: #6A0DAD;
  --diamond-blue: #4169E1;
  
  /* Luxury Grays */
  --silver: #C0C0C0;
  --platinum: #E5E4E2;
  --charcoal: #36454F;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-gold: #FFD700;
  --text-silver: #E5E4E2;
  --text-muted: #B8B8B8;
  
  /* Premium Borders & Shadows */
  --border-gold: rgba(255, 215, 0, 0.3);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
  --shadow-luxury: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.5);
  
  /* Royal Gradients */
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #B8860B 100%);
  --gradient-royal: linear-gradient(135deg, #6A0DAD 0%, #4B0082 50%, #2d1b4e 100%);
  --gradient-casino: linear-gradient(180deg, #1a0033 0%, #0a0a0a 100%);
  --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  --gradient-luxury: linear-gradient(135deg, #FFD700 0%, #DC143C 50%, #6A0DAD 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--royal-black);
  color: var(--text-primary);
  font-family: 'Cinzel', 'Playfair Display', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Luxury Casino Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(106, 13, 173, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
  animation: luxuryPulse 15s ease-in-out infinite;
}

@keyframes luxuryPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Diamond Pattern Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 215, 0, 0.02) 35px, rgba(255, 215, 0, 0.02) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 215, 0, 0.02) 35px, rgba(255, 215, 0, 0.02) 70px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Luxury Royal Navigation */
.cyber-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(26, 0, 51, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 215, 0, 0.1);
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 16px 0;
}

.cyber-nav.scrolled {
  background: linear-gradient(180deg, rgba(26, 0, 51, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
  padding: 12px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.2);
  border-bottom: 2px solid var(--gold-primary);
}

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

.cyber-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-image {
  height: 56px;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
  transform: scale(1.05);
}

.cyber-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.cyber-link {
  color: var(--text-silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
}

.cyber-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transition: width 0.4s ease;
}

.cyber-link:hover,
.cyber-link.active {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cyber-link:hover::after,
.cyber-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.cyber-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.cyber-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cyber-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.cyber-menu-toggle.active span:nth-child(2) { opacity: 0; }
.cyber-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* Royal Section Headers */
.section-header-cyber {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cyber-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(106, 13, 173, 0.1));
  border: 2px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 8px 28px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: subtitleShine 3s ease infinite;
}

@keyframes subtitleShine {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
}

.cyber-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shine);
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.cyber-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.neon-text {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.section-description {
  color: var(--text-silver);
  font-size: 18px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

/* Luxury Casino Hero Section */
.cyber-hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--gradient-casino);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.cyber-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(59, 130, 246, 0.5) 2px, rgba(59, 130, 246, 0.5) 3px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(59, 130, 246, 0.5) 2px, rgba(59, 130, 246, 0.5) 3px);
  background-size: 80px 80px;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  display: none; /* Hide distracting particles */
}

.hero-content-cyber {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 13, 173, 0.1));
  border: 2px solid var(--border-gold);
  padding: 10px 26px;
  border-radius: 30px;
  margin-bottom: 32px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.4); }
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: dotPulse 2s ease infinite;
}

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

.hero-badge span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-family: 'Inter', sans-serif;
}

.cyber-hero-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.2);
}

.hero-description {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-silver);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* 3D Luxury Casino Card Styles */
.product-card-cyber,
.service-card,
.tech-feature-card,
.award-card-premium,
.contact-card,
.partner-logo-cyber {
  background: linear-gradient(145deg, rgba(31, 31, 31, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(106, 13, 173, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -4px 8px rgba(0, 0, 0, 0.3);
}

/* 3D Golden Border Glow */
.product-card-cyber::before,
.service-card::before,
.tech-feature-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-gold);
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  filter: blur(8px);
}

/* 3D Shine Effect */
.product-card-cyber::after,
.service-card::after,
.tech-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.product-card-cyber:hover,
.service-card:hover,
.tech-feature-card:hover,
.award-card-premium:hover {
  transform: translateY(-12px) rotateX(5deg);
  border-color: var(--border-gold);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(255, 215, 0, 0.5),
    inset 0 4px 0 rgba(255, 255, 255, 0.15),
    inset 0 -6px 12px rgba(0, 0, 0, 0.4);
}

.product-card-cyber:hover::before,
.service-card:hover::before,
.tech-feature-card:hover::before {
  opacity: 0.3;
}

.product-card-cyber:hover::after,
.service-card:hover::after,
.tech-feature-card:hover::after {
  left: 100%;
}

/* 3D Luxury Casino Card Icons */
.product-icon-cyber,
.service-card i {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-royal);
  border-radius: 20px;
  font-size: 36px;
  color: var(--gold-primary);
  margin-bottom: 24px;
  transition: all 0.4s ease;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(106, 13, 173, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -4px 8px rgba(0, 0, 0, 0.3);
}

/* 3D Depth Effect */
.product-icon-cyber::before,
.service-card i::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 20px;
  transform: translateZ(5px);
}

.product-icon-cyber::after,
.service-card i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: -1;
}

.product-card-cyber:hover .product-icon-cyber,
.service-card:hover i {
  background: var(--gradient-gold);
  color: var(--royal-black);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.8),
    inset 0 4px 0 rgba(255, 255, 255, 0.3),
    inset 0 -6px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-10px) rotateY(360deg) scale(1.1);
}

.product-card-cyber:hover .product-icon-cyber::after,
.service-card:hover i::after {
  width: 250px;
  height: 250px;
}

/* Card Typography */
.product-card-cyber h3,
.service-card h3,
.tech-feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.product-card-cyber p,
.service-card p,
.tech-feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* Product Features List */
.product-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-features li {
  padding: 10px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(127, 249, 255, 0.1);
  transition: all 0.3s ease;
}

.product-features li:hover {
  padding-left: 10px;
  color: var(--gold-primary);
}

.product-features i {
  color: var(--gold-primary);
  font-size: 14px;
}

/* 3D Luxury Royal Button Styles */
.cyber-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  transform-style: preserve-3d;
}

/* 3D Button Depth */
.cyber-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.cyber-btn:hover::before {
  width: 350px;
  height: 350px;
}

.cyber-btn-primary {
  background: var(--gradient-gold);
  color: var(--royal-black);
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 8px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--gold-dark);
}

.cyber-btn-primary:hover {
  transform: translateY(-5px) scale(1.05) rotateX(10deg);
  box-shadow: 
    0 15px 45px rgba(255, 215, 0, 0.7),
    0 0 50px rgba(255, 215, 0, 0.5),
    inset 0 3px 0 rgba(255, 255, 255, 0.4),
    inset 0 -4px 10px rgba(0, 0, 0, 0.4);
}

.cyber-btn-primary:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 20px rgba(255, 215, 0, 0.5),
    inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cyber-btn-outline {
  background: transparent;
  border: 3px solid var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 
    inset 0 0 25px rgba(255, 215, 0, 0.1),
    0 0 20px rgba(255, 215, 0, 0.2);
}

.cyber-btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--royal-black);
  transform: translateY(-5px) scale(1.05) rotateX(10deg);
  box-shadow: 
    0 15px 45px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  border-color: transparent;
}

.cyber-btn-lg {
  padding: 20px 48px;
  font-size: 15px;
}

/* Statistics & Analytics Section */
.hero-stats-cyber,
.tech-stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-stats-cyber::before,
.tech-stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-neon);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.stat-item-cyber,
.tech-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item-cyber:hover,
.tech-stat-item:hover {
  background: rgba(127, 249, 255, 0.05);
  transform: scale(1.05);
}

.stat-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-royal);
  border-radius: 18px;
  color: var(--gold-primary);
  font-size: 32px;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(106, 13, 173, 0.4),
    inset 0 3px 0 rgba(255, 255, 255, 0.2),
    inset 0 -5px 10px rgba(0, 0, 0, 0.4);
  animation: iconFloat3D 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes iconFloat3D {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(10deg) rotateY(5deg); }
}

.stat-number,
.tech-stat-number {
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Cinzel', serif;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes countUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.stat-label,
.tech-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 13, 173, 0.1));
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Partners Section - Professional */
.partners-logos-cyber .partner-logo-cyber { 
  background: var(--card-bg);
  transition: all 0.3s ease;
}

.partners-logos-cyber .partner-logo-cyber:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.partners-logos-cyber .partner-logo-cyber img { 
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.partners-logos-cyber .partner-logo-cyber:hover img {
  filter: brightness(1);
}

/* Professional Footer */
.cyber-footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 20px;
  position: relative;
  margin-top: 80px;
}

.footer-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-gaming);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-main .footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.footer-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--gold-primary);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Social Links */
.social-links-cyber {
  display: flex;
  gap: 15px;
}

.social-icon-cyber {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--neon-cyan);
  transition: all 0.3s ease;
}

.social-icon-cyber:hover {
  background: var(--gradient-gold);
  color: var(--royal-black);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
  border-color: var(--gold-primary);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links-inline {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-links-inline a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links-inline a:hover {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* About Section - AI Gaming Style */
.about-grid-cyber { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.hologram-card { 
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hologram-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.hologram-icon { 
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  position: relative;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  animation: icon3DGlow 3s ease-in-out infinite;
}

@keyframes icon3DGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    transform: translateZ(0) rotateY(0deg);
  }
  50% { 
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, 1));
    transform: translateZ(10px) rotateY(10deg);
  }
}

.hologram-content h3 { 
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 1rem;
}

.hologram-content p { 
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-item { display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }

.timeline-dot { 
  width: 14px;
  height: 14px;
  background: var(--gradient-gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  animation: dotPulse 2s ease infinite;
}

.timeline-content h4 { color: var(--text-primary); margin-bottom: 0.4rem; }
.timeline-content p { color: var(--text-secondary); }

.quick-stats-cyber { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.quick-stat-card { 
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.quick-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.stat-icon-large { 
  font-size: 3.5rem; 
  color: var(--gold-primary); 
  margin-bottom: 0.8rem;
  position: relative;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  animation: largeIcon3D 4s ease-in-out infinite;
}

@keyframes largeIcon3D {
  0%, 100% { 
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  }
  50% { 
    transform: translateY(-8px) rotateX(15deg) scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
  }
}
.quick-stat-card h4 { color: var(--text-primary); margin-bottom: 0.5rem; }
.quick-stat-card p { color: var(--text-secondary); }

/* Tech features grid */
.tech-features-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-bottom:3rem; }
.tech-cta{ text-align:center; }

/* 3D Casino Icon Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 50%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Single 3D Casino Icon */
.casino-icon-3d {
  width: 200px;
  height: 200px;
  font-size: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  perspective: 1000px;
  position: relative;
  transform-style: preserve-3d;
  animation: icon3DFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.5));
}

@keyframes icon3DFloat {
  0%, 100% { 
    transform: translateY(0) rotateY(0deg) rotateX(0deg);
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.5));
  }
  25% { 
    transform: translateY(-15px) rotateY(90deg) rotateX(10deg);
    filter: drop-shadow(0 25px 50px rgba(255, 215, 0, 0.7));
  }
  50% { 
    transform: translateY(-20px) rotateY(180deg) rotateX(0deg);
    filter: drop-shadow(0 30px 60px rgba(255, 215, 0, 0.8));
  }
  75% { 
    transform: translateY(-15px) rotateY(270deg) rotateX(-10deg);
    filter: drop-shadow(0 25px 50px rgba(255, 215, 0, 0.7));
  }
}

/* Golden glow effect around icon */
.casino-icon-3d::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 2s ease-in-out infinite;
  z-index: -1;
}

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

/* Loading Text */
.loading-text {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: loadingPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.5));
}

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

.loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.loading-dot {
  width: 12px;
  height: 12px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

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

/* Scroll Indicator */
.scroll-indicator-cyber { 
  color: var(--text-silver);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.mouse-cyber { 
  border: 2px solid var(--gold-primary);
  border-radius: 25px;
  height: 42px;
  width: 26px;
  position: relative;
  margin: 0 auto 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.mouse-cyber::before { 
  content: '';
  position: absolute;
  background: var(--gold-primary);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* WhatsApp Button - Professional */
.whatsapp-float { 
  background: #25D366;
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 998;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-pulse {
  display: none;
}

/* Professional AI Assistant Bot */
.cyber-bot-toggle { 
  background: var(--gradient-gold);
  color: var(--royal-black);
  padding: 12px 24px;
  border-radius: 8px;
  position: fixed;
  bottom: 90px;
  right: 24px;
  border: 2px solid var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 997;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.cyber-bot-toggle:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.cyber-bot { 
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 340px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  overflow: hidden;
  display: none;
  z-index: 996;
  box-shadow: var(--shadow-xl);
}

.cyber-bot.active { 
  display: flex;
  flex-direction: column;
}

.cyber-bot header { 
  background: var(--gradient-gold);
  color: var(--royal-black);
  padding: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.bot-body {
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.bot-msg {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(106, 13, 173, 0.05));
  border: 1px solid var(--border-gold);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: var(--text-silver);
  font-size: 14px;
  line-height: 1.6;
}

.bot-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid var(--glass-border);
}

.bot-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 8px 12px;
  border-radius: 20px;
  color: var(--text-primary);
  outline: none;
}

.bot-input button {
  background: var(--gradient-gold);
  border: 2px solid var(--gold-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  color: var(--royal-black);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.bot-input button:hover {
  background: var(--gold-primary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Hero stats */
.hero-stats-cyber{ clip-path: none !important; border-radius:16px !important; }
.stat-content{ display:flex; flex-direction:column; }

/* Minimal animations */
[data-aos]{ transition-duration: 600ms !important; }

/* Product Tabs Navigation */
.product-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: nowrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.product-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.8), rgba(26, 26, 26, 0.9));
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-silver);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  transition: left 0.5s ease;
  z-index: -1;
  opacity: 0.3;
}

.product-tab-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.product-tab-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold-primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(255, 215, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.product-tab-btn:hover::before {
  left: 0;
}

.product-tab-btn:hover i {
  transform: rotateY(360deg) scale(1.2);
}

.product-tab-btn.active {
  background: var(--gradient-gold);
  border-color: var(--gold-dark);
  color: var(--royal-black);
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.5),
    0 0 30px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.product-tab-btn.active i {
  color: var(--royal-black);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Tab Content */
.products-tab-content {
  display: none;
  animation: fadeInUp 0.6s ease;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.products-tab-content.active {
  display: block;
}

/* Products Grid inside Tabs */
.products-tab-content .products-grid-cyber {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
  padding: 0;
  align-items: stretch;
}

.products-tab-content .product-card-cyber {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.products-tab-content .product-card-cyber .product-features {
  flex: 1;
  margin-bottom: auto;
}

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

/* Responsive Product Tabs */
@media (max-width: 992px) {
  .products-tab-content .products-grid-cyber {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-tabs-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .product-tab-btn {
    padding: 12px 20px;
    font-size: 12px;
    gap: 8px;
  }
  
  .product-tab-btn i {
    font-size: 16px;
  }
  
  .products-tab-content .products-grid-cyber {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .product-tabs-nav {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  
  .product-tab-btn {
    width: 100%;
    justify-content: center;
  }
  
  .products-tab-content {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Services section */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }

/* 3D Service Icons */
.service-icon-3d {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-royal);
  border-radius: 20px;
  margin: 0 auto 24px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(106, 13, 173, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.service-icon-3d i {
  font-size: 36px;
  color: var(--gold-primary);
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-icon-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 20px;
  transform: translateZ(5px);
}

.service-card:hover .service-icon-3d {
  background: var(--gradient-gold);
  transform: translateY(-10px) rotateY(360deg) scale(1.1);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.8),
    inset 0 4px 0 rgba(255, 255, 255, 0.3),
    inset 0 -6px 12px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-icon-3d i {
  color: var(--royal-black);
  transform: scale(1.1);
}

/* Technology Stack Cards */
.stack-card {
  background: linear-gradient(145deg, rgba(31, 31, 31, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(106, 13, 173, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.08);
}

.stack-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--border-gold);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4),
    inset 0 3px 0 rgba(255, 255, 255, 0.15);
}

.stack-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-royal);
  border-radius: 16px;
  font-size: 32px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  box-shadow: 
    0 0 20px rgba(106, 13, 173, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.stack-card:hover .stack-icon {
  background: var(--gradient-gold);
  color: var(--royal-black);
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.stack-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.tech-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-silver);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tech-list li:last-child {
  border-bottom: none;
}

.tech-list li i {
  color: var(--gold-primary);
  font-size: 16px;
  min-width: 20px;
}

.tech-list li:hover {
  color: var(--gold-primary);
  padding-left: 5px;
  transform: translateX(5px);
}

/* Contact Form - Gaming Style */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-group { margin-bottom: 1.5rem; }

.input-group label { 
  display: block;
  font-size: 13px;
  color: var(--gold-primary);
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 12px;
  border-radius: 10px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3), 0 0 0 3px rgba(255, 215, 0, 0.1);
  background: rgba(255, 215, 0, 0.03);
}

.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.contact-tiles { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.contact-tile { 
  background: linear-gradient(135deg, rgba(127, 249, 255, 0.1), rgba(255, 215, 0, 0.05));
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.contact-tile:hover {
  border-color: var(--border-gold);
  transform: translateX(5px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

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

/* Portal Section */
.portal-cyber { 
  background: linear-gradient(180deg, rgba(191, 0, 255, 0.08), transparent);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 60px 0;
  position: relative;
}

.portal-actions { 
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Products Grid */
.products-grid-cyber { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Product Features list already defined earlier in the file */

/* Partners Section - Global Gaming Map */
.world-map-container { 
  position: relative;
  height: 400px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.world-map { 
  position: relative;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(127, 249, 255, 0.05), transparent 70%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(127,249,255,0.1)" stroke-width="0.5" x="10" y="10" width="80" height="80"/></svg>');
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.map-dot { 
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  cursor: pointer;
  animation: mapDotPulse 2s ease infinite;
}

@keyframes mapDotPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 1); }
}

.map-dot:hover { transform: scale(1.5); }

.map-dot .pulse { 
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.7;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring { 
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

.partners-section-header h3 { 
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
}

.partners-logos-cyber { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Awards Section - Casino Trophy Style */
.awards-grid-premium { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.award-card-premium { 
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.award-badge { 
  background: var(--gradient-royal);
  border: 2px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 1.2rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: inline-block;
  box-shadow: 0 0 25px rgba(106, 13, 173, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: badgeFloat 3s ease infinite;
}

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

.badge-icon { 
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.badge-year { 
  background: var(--gradient-gold);
  color: var(--royal-black);
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.award-content h3 { 
  color: var(--text-primary); 
  margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
}
.award-org { 
  color: var(--gold-primary); 
  font-weight: 700; 
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.award-desc { color: var(--text-secondary); margin-bottom: 1rem; }
.award-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.award-stats span { color: var(--text-secondary); font-size: 0.9rem; }

.certifications-section { margin-top: 60px; text-align: center; }
.cert-title { 
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.certifications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }

.cert-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cert-badge i { 
  font-size: 28px; 
  color: var(--gold-primary);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}
.cert-badge span { 
  color: var(--text-silver); 
  font-size: 13px; 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Comprehensive Mobile & Tablet Responsive Design */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .products-grid-cyber { grid-template-columns: repeat(4, 1fr); }
  .tech-features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Large Screens (1200px-1399px) */
@media (max-width: 1399px) {
  .container { max-width: 1140px; }
  .products-grid-cyber { grid-template-columns: repeat(3, 1fr); }
  .tech-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Medium Screens/Tablets (992px-1199px) */
@media (max-width: 1199px) {
  .container { max-width: 960px; }
  .cyber-hero-title { font-size: 56px; }
  .hero-stats-cyber { grid-template-columns: repeat(2, 1fr); }
  .about-grid-cyber,
  .tech-features-grid,
  .services-grid,
  .products-grid-cyber { grid-template-columns: repeat(2, 1fr); }
  .awards-grid-premium { grid-template-columns: repeat(2, 1fr); }
}

/* Small Tablets (768px-991px) */
@media (max-width: 991px) {
  .container { max-width: 720px; }
  .section { padding: 80px 0; }
  
  /* Navigation */
  .cyber-menu-toggle { display: flex; }
  .cyber-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--ai-bg-primary);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid var(--glass-border);
  }
  
  .cyber-menu.active { right: 0; }
  
  .cyber-link {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(127, 249, 255, 0.1);
  }
  
  /* Hero */
  .cyber-hero { min-height: 80vh; }
  .cyber-hero-title { font-size: 48px; }
  .hero-description { font-size: 16px; }
  
  /* Cards */
  .product-card-cyber,
  .service-card,
  .tech-feature-card { padding: 25px; }
  
  /* Grids */
  .quick-stats-cyber { grid-template-columns: repeat(2, 1fr); }
  .certifications-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile Devices (576px-767px) */
@media (max-width: 767px) {
  .container { max-width: 540px; }
  .section { padding: 60px 0; }
  
  /* Typography */
  .cyber-hero-title { font-size: 36px; }
  .cyber-title { font-size: 32px; }
  .section-description { font-size: 16px; }
  
  /* Hero */
  .hero-cta-group { flex-direction: column; width: 100%; }
  .cyber-btn { width: 100%; justify-content: center; }
  .hero-stats-cyber { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  
  /* Grids */
  .tech-features-grid,
  .services-grid,
  .products-grid-cyber,
  .about-grid-cyber { grid-template-columns: 1fr; gap: 20px; }
  
  .awards-grid-premium { grid-template-columns: 1fr; }
  .quick-stats-cyber { grid-template-columns: 1fr; }
  .certifications-grid { grid-template-columns: 1fr; }
  
  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .social-links-cyber { justify-content: center; }
}

/* Small Mobile Devices (320px-575px) */
@media (max-width: 575px) {
  .container { padding: 0 15px; }
  .section { padding: 50px 0; }
  
  /* Typography */
  .cyber-hero-title { font-size: 28px; line-height: 1.2; }
  .cyber-title { font-size: 24px; }
  .cyber-subtitle { font-size: 10px; padding: 6px 16px; }
  .section-description { font-size: 14px; line-height: 1.6; }
  
  /* Navigation */
  .cyber-nav { padding: 10px 0; }
  .logo-image { height: 45px; }
  .cyber-menu { width: 100%; right: -100%; }
  
  /* Hero */
  .cyber-hero { min-height: 100vh; padding-top: 80px; }
  .hero-badge { font-size: 10px; padding: 8px 16px; }
  .hero-description { font-size: 14px; }
  
  /* Buttons */
  .cyber-btn { padding: 12px 24px; font-size: 12px; }
  .cyber-btn-lg { padding: 14px 28px; font-size: 14px; }
  
  /* Cards */
  .product-card-cyber,
  .service-card,
  .tech-feature-card,
  .award-card-premium { padding: 20px; border-radius: 15px; }
  
  .product-icon-cyber,
  .service-card i { width: 60px; height: 60px; font-size: 28px; }
  
  .product-card-cyber h3,
  .service-card h3,
  .tech-feature-card h3 { font-size: 20px; }
  
  /* Stats */
  .stat-number,
  .tech-stat-number { font-size: 24px; }
  .stat-label,
  .tech-stat-label { font-size: 12px; }
  
  /* Floating Elements */
  .whatsapp-float { width: 50px; height: 50px; right: 15px; bottom: 15px; }
  .whatsapp-float i { font-size: 24px; }
  
  /* Partners */
  .partners-logos-cyber { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .partner-logo-cyber { padding: 15px; }
  .partner-logo-cyber img { max-height: 40px; }
  
  /* World Map */
  .world-map-container { height: 200px; }
  
  /* Tech Grid */
  .tech-stats-banner { padding: 20px; gap: 15px; }
  
  /* Animations - Reduce for performance */
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  }
}

/* Ultra Small Devices (below 320px) */
@media (max-width: 319px) {
  .cyber-hero-title { font-size: 24px; }
  .cyber-title { font-size: 20px; }
  .cyber-btn { padding: 10px 20px; font-size: 11px; }
}
