* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #060606;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 100;
}

.progress-fill {
  height: 100%;
  background: #ff3333;
  box-shadow: 0 0 12px rgba(255, 51, 51, 0.7);
  width: 0%;
  transition: width 0.1s;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 6, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.logo span {
  background: linear-gradient(to right, white, #ff3333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: #ff3333;
}

.nav-links a.active {
  color: #ff3333;
  background: rgba(255, 51, 51, 0.12);
  border-color: rgba(255, 51, 51, 0.5);
}

.discord-btn {
  background: #5865F2;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-btn:hover {
  background: #ff3333;
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px 60px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 51, 51, 0.08), transparent 70%);
  pointer-events: none;
}

.section-subtitle {
  color: #ff3333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #ff3333;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Section */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}

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

.section-header h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: rgba(255, 51, 51, 0.5);
  transform: translateY(-4px);
}

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card:nth-child(1) .product-image::before,
.product-card:nth-child(3) .product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent);
  pointer-events: none;
  z-index: 1;
}

.product-card:nth-child(2) .product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent);
  pointer-events: none;
  z-index: 1;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li:before {
  content: "✓";
  color: #ff3333;
  font-weight: bold;
}

.product-price {
  font-size: 24px;
  font-weight: bold;
  color: #ff3333;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3333, #ff6666);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a1a, #ff4444);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 51, 51, 0.6);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Product Page Layout */
.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px;
}

.product-media {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-image-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.badge-undetected {
  top: 14px;
  left: 14px;
  background: rgba(0, 255, 136, 0.2);
  border: 1px solid rgba(0, 255, 136, 0.5);
  color: #00ff88;
}

.badge-price {
  top: 14px;
  right: 14px;
  background: rgba(255, 51, 51, 0.2);
  border: 1px solid rgba(255, 51, 51, 0.5);
  color: #ff3333;
}

/* Plan Selector */
.product-details h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 12px;
}

.product-details > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.plan-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.plan-option {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-option:hover {
  border-color: rgba(255, 51, 51, 0.5);
  background: rgba(255, 51, 51, 0.05);
}

.plan-option.active {
  border-color: #ff3333;
  background: rgba(255, 51, 51, 0.1);
}

.plan-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.plan-valid {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 22px;
  font-weight: bold;
  color: #ff3333;
}

/* Features */
.features-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
  margin-top: 24px;
}

.features-section h3 {
  font-size: 18px;
  font-weight: bold;
  color: #ff3333;
  margin-bottom: 24px;
}

.feature-category {
  margin-bottom: 28px;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.feature-category-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #ff3333;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.feature-list li:before {
  content: "✓";
  color: #ff3333;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Vouches */
.vouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.vouch-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
}

.vouch-card:hover {
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-4px);
}

.vouch-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.vouch-name {
  font-weight: 600;
  font-size: 14px;
}

.vouch-game {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.vouch-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.vouch-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ff3333;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0D0D0D;
  border: 1px solid rgba(255, 51, 51, 0.4);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.3);
  z-index: 1000;
  min-width: 280px;
  animation: slideIn 0.3s ease-out;
}

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

.notification-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.notification-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff3333, #ff6666);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.notification-title {
  font-size: 14px;
  font-weight: bold;
}

.notification-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.notification-content {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.notification-price {
  font-size: 18px;
  font-weight: bold;
  color: #ff3333;
}

/* Online Counter */
.online-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.online-count {
  color: #00ff88;
}

/* Delivery Timeline */
.delivery-timeline {
  margin: 40px 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.delivery-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
  animation: shimmer 3s infinite;
}

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

.delivery-timeline h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.666%;
  right: 16.666%;
  height: 2px;
  background: linear-gradient(90deg, #ff3333 0%, #ff3333 50%, rgba(255, 51, 51, 0.3) 50%, rgba(255, 51, 51, 0.3) 100%);
  z-index: 0;
  animation: progressLine 2s ease-in-out;
}

@keyframes progressLine {
  from { width: 0; opacity: 0; }
  to { width: 66.666%; opacity: 1; }
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out backwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.3s; }
.timeline-step:nth-child(3) { animation-delay: 0.5s; }

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

.timeline-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 51, 51, 0.15);
  border: 2px solid #ff3333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.1) rotate(5deg);
}

.timeline-step.completed .timeline-icon {
  background: rgba(255, 51, 51, 0.25);
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.6);
  }
}

.timeline-step.pending .timeline-icon {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
  animation: becomingGreen 3s ease-in-out 2s forwards;
}

@keyframes becomingGreen {
  0% {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
  }
  100% {
    background: rgba(0, 255, 136, 0.25);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  }
}

.timeline-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: white;
}

.timeline-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-page-layout {
    grid-template-columns: 1fr;
  }
  
  .product-media {
    position: static;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .timeline-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .nav-links {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .vouches-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-selector {
    grid-template-columns: 1fr;
  }
}
