/* ========================================
   Homepage Styles - Dark Modern Theme
   ======================================== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0612 0%, #1a0a2e 50%, #0d1033 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.hero-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-nav-dot:hover {
  background: rgba(255,255,255,0.4);
}

.hero-nav-dot.active {
  background: #8b5cf6;
  width: 30px;
  border-radius: 5px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: -80px;
  right: -80px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}

@media (max-width: 1200px) {
  .hero-arrows {
    left: 10px;
    right: 10px;
  }
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
}

.hero-arrow:hover {
  background: rgba(139,92,246,0.3);
  border-color: rgba(139,92,246,0.5);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 50px;
  font-size: 13px;
  color: #a78bfa;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title-line {
  display: block;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .white-text {
  color: #fff;
}

.hero-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.5);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* macOS Dock Style Navigation */
.hero-dock {
  position: relative;
  z-index: 10;
  padding: 0 20px 40px;
  display: flex;
  justify-content: center;
}

.dock-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 16px 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: bottom center;
}

.dock-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.dock-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 6px 14px;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.dock-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(30,30,30,0.95);
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dock hover magnification effect - handled by JavaScript for smoother animation */
.dock-container:hover .dock-icon {
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

/* Responsive Dock */
@media (max-width: 768px) {
  .dock-container {
    gap: 12px;
    padding: 12px 20px;
  }

  .dock-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .dock-container {
    gap: 8px;
    padding: 10px 16px;
    border-radius: 18px;
  }

  .dock-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .dock-tooltip {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* Announcements */
.announcements-bar {
  background: rgba(139,92,246,0.08);
  border-top: 1px solid rgba(139,92,246,0.15);
  border-bottom: 1px solid rgba(139,92,246,0.15);
}

.announcements-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcements-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  white-space: nowrap;
}

.announcements-label svg {
  width: 18px;
  height: 18px;
}

.announcements-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.announcements-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
}

.announcements-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 13px;
  color: #000;
  transition: color 0.2s;
}

.announcement-item:hover {
  color: #8b5cf6;
}

.announcement-date {
  color: #333;
}

/* Products Section */
.products-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0d0618 0%, #0a0612 100%);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: #64748b;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.product-tab {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-tab:hover {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
}

.product-tab.active {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.15));
  border-color: rgba(139,92,246,0.4);
  color: #fff;
}

/* Product Grid */
.product-panels {
  position: relative;
  z-index: 1;
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-grid.active {
  display: grid;
}

/* Product Card */
.product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-8px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-header {
  margin-bottom: 24px;
}

.product-card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.product-card-header p {
  font-size: 13px;
  color: #64748b;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.spec-item {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.spec-item span {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-item strong {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
}

.product-price {
  text-align: center;
  margin-bottom: 24px;
}

.product-price .amount {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-price .period {
  font-size: 14px;
  color: #64748b;
}

.product-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.product-btn:hover {
  box-shadow: 0 8px 24px rgba(139,92,246,0.4);
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0612 0%, #120a1e 100%);
  position: relative;
  overflow: hidden;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(139,92,246,0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-icon.shield {
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.1));
  color: #34d399;
}

.feature-icon.reliability {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(37,99,235,0.1));
  color: #60a5fa;
}

.feature-icon.discount {
  background: linear-gradient(135deg, rgba(251,146,60,0.2), rgba(234,88,12,0.1));
  color: #fb923c;
}

.feature-icon.support {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(124,58,237,0.1));
  color: #a78bfa;
}

.feature-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.feature-number span {
  font-size: 24px;
}

.feature-label {
  font-size: 14px;
  color: #64748b;
}

/* VIP Section */
.vip-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #120a1e 0%, #0d0618 100%);
  position: relative;
}

.vip-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.vip-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vip-intro p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
}

.vip-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.vip-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}

.vip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.3);
}

.vip-card.featured {
  background: linear-gradient(180deg, rgba(139,92,246,0.1) 0%, rgba(59,130,246,0.05) 100%);
  border-color: rgba(139,92,246,0.3);
}

.vip-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.vip-tier {
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vip-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.vip-deposit {
  margin-bottom: 24px;
}

.vip-deposit-label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}

.vip-deposit-amount {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-deposit-amount span {
  font-size: 18px;
}

.vip-benefit {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 28px;
}

.vip-benefit p {
  font-size: 14px;
  color: #94a3b8;
}

.vip-benefit strong {
  color: #10b981;
  font-size: 20px;
}

.vip-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.vip-btn:hover {
  box-shadow: 0 8px 24px rgba(139,92,246,0.4);
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0d0618 0%, #0a0612 100%);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(139,92,246,0.2);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-icon.purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(124,58,237,0.1));
  color: #a78bfa;
}

.service-icon.blue {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(37,99,235,0.1));
  color: #60a5fa;
}

.service-icon.green {
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.1));
  color: #34d399;
}

.service-icon.orange {
  background: linear-gradient(135deg, rgba(251,146,60,0.2), rgba(234,88,12,0.1));
  color: #fb923c;
}

.service-icon.pink {
  background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(219,39,119,0.1));
  color: #f472b6;
}

.service-icon.cyan {
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(6,182,212,0.1));
  color: #22d3ee;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.service-links a:hover {
  color: #a78bfa;
}

.service-links span {
  color: #475569;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1033 100%);
  border-top: 1px solid rgba(139,92,246,0.2);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(59,130,246,0.1) 100%);
  pointer-events: none;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.5);
}

.cta-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.15);
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Video Section */
.video-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0612 0%, #0d0618 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  background: #000;
  width: 100%;
}

.video-wrapper .video-js {
  width: 100% !important;
  border-radius: 20px;
}

.video-wrapper .video-js.vjs-fluid {
  padding-top: 56.25% !important;
}

.video-wrapper .vjs-tech {
  border-radius: 20px;
  object-fit: cover !important;
}

.video-wrapper .vjs-poster {
  background-size: cover !important;
  background-position: center !important;
  border-radius: 20px;
}

.video-js .vjs-big-play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border: none;
  box-shadow: 0 8px 30px rgba(139,92,246,0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.video-js .vjs-big-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(139,92,246,0.6);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-size: 36px;
  line-height: 80px;
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vip-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider {
    padding: 80px 20px 40px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .product-tabs {
    flex-wrap: wrap;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vip-grid {
    grid-template-columns: 1fr;
  }
  .vip-card:last-child {
    grid-column: span 1;
    max-width: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .announcements-inner {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
