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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background-color: #0f1117;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #1a1d29;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #00d4ff;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #00d4ff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #00d4ff;
  color: #1a1d29;
}

.btn-primary:hover {
  background-color: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn-secondary:hover {
  background-color: #00d4ff;
  color: #1a1d29;
}

.btn-header {
  background-color: #00d4ff;
  color: #1a1d29;
  padding: 10px 24px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-device {
  width: 100%;
  background-color: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn-device:hover {
  background-color: #00d4ff;
  color: #1a1d29;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1d29 0%, #0f1117 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 20px;
  color: #b4b9c5;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-features {
  list-style: none;
  margin-bottom: 40px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trial-info {
  color: #00d4ff;
  font-size: 14px;
  font-weight: 600;
}

/* VPN Dashboard Styles */
.hero-dashboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.15) 0%, rgba(0, 150, 200, 0.15) 100%);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-card {
  background: rgba(26, 29, 41, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
}

.dashboard-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

/* Status Row */
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.status-badge.blocked {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-icon {
  font-size: 16px;
}

.ip-info {
  padding: 8px 16px;
  background: rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: #94a3b8;
}

/* VPN Connection */
.vpn-connection {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.connection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.connection-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.mode-badge {
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  font-size: 12px;
  color: #a78bfa;
}

.connection-route {
  font-size: 14px;
  color: #94a3b8;
}

.vpn-active-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  color: #22c55e;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.vpn-active-btn:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.6);
}

.active-indicator {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Service Status */
.service-status {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.service-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.status-tag {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.status-tag.available {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.ping {
  font-weight: 600;
  color: #64748b;
}

/* VPN Info */
.vpn-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.vpn-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Roblox Info Section */
.roblox-info-section {
  padding: 100px 0;
  background-color: #0a0c12;
}

.roblox-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.roblox-info-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.info-text {
  font-size: 16px;
  line-height: 1.7;
  color: #94a3b8;
}

.info-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checklist-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item span {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
}

.roblox-info-right {
  position: sticky;
  top: 100px;
}

.info-highlight-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

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

.highlight-badge {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.highlight-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.highlight-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Section Titles */
.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b4b9c5;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: #0f1117;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.benefit-card {
  background-color: #1a1d29;
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.benefit-icon {
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.benefit-card p {
  color: #b4b9c5;
  line-height: 1.7;
}

/* Guide Section */
.guide {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1d29 0%, #0f1117 100%);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 60px;
}

.step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: #00d4ff;
  color: #1a1d29;
  font-size: 36px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.step p {
  color: #b4b9c5;
  line-height: 1.7;
}

/* Promo CTA Section */
.promo-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.promo-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.promo-cta h2 {
  font-size: 40px;
  font-weight: 800;
  color: #1a1d29;
  margin-bottom: 20px;
}

.promo-text {
  font-size: 20px;
  color: #1a1d29;
  margin-bottom: 32px;
  line-height: 1.6;
}

.promo-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.old-price {
  font-size: 24px;
  color: #1a1d29;
  text-decoration: line-through;
  opacity: 0.6;
}

.new-price {
  font-size: 56px;
  font-weight: 800;
  color: #1a1d29;
}

.period {
  font-size: 20px;
  color: #1a1d29;
}

.promo-cta .btn-primary {
  background-color: #1a1d29;
  color: #00d4ff;
}

.promo-cta .btn-primary:hover {
  background-color: #0f1117;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: #0f1117;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background-color: #1a1d29;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: #00d4ff;
  transform: translateY(-8px);
}

.pricing-card.popular {
  border-color: #00d4ff;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #00d4ff;
  color: #1a1d29;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-header {
  padding: 32px 32px 24px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.discount-badge {
  display: inline-block;
  background-color: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-body {
  padding: 0 32px 32px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
}

.price-period {
  font-size: 18px;
  color: #b4b9c5;
}

.total-price {
  color: #00d4ff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e5e7eb;
}

.pricing-footer {
  padding: 0 32px 32px;
}

.pricing-footer .btn {
  width: 100%;
}

/* Devices Section */
.devices {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1d29 0%, #0f1117 100%);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.device-card {
  background-color: #1a1d29;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.device-card:hover {
  border-color: #00d4ff;
  transform: translateY(-8px);
}

.device-icon {
  margin-bottom: 24px;
}

.device-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.device-card p {
  color: #b4b9c5;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #0f1117;
}

.faq-label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.faq-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: #ffffff;
}

.faq-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b4b9c5;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.faq-card {
  background-color: #1a1d29;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.faq-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

/* Footer */
.footer {
  background-color: #1a1d29;
  padding: 60px 0 32px;
}

.footer-content {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-text {
  color: #b4b9c5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b4b9c5;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-features li {
    justify-content: center;
  }

  .hero-cta {
    align-items: center;
  }

  .nav-menu {
    display: none;
  }

  /* Added responsive styles for dashboard */
  .hero-dashboard {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Added responsive styles for Roblox Info section */
  .roblox-info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .roblox-info-right {
    position: static;
  }

  .info-title {
    font-size: 32px;
  }

  /* Added FAQ responsive grid for tablets */
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .benefits-grid,
  .pricing-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }

  .promo-cta h2 {
    font-size: 32px;
  }

  .new-price {
    font-size: 40px;
  }

  /* Added mobile responsive styles for Roblox Info section */
  .info-title {
    font-size: 28px;
  }

  .info-text {
    font-size: 15px;
  }

  .checklist-item span {
    font-size: 15px;
  }

  .highlight-content h3 {
    font-size: 18px;
  }

  .highlight-content p {
    font-size: 14px;
  }

  /* Added FAQ responsive title */
  .faq-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  /* Added extra small mobile responsive styles */
  .info-title {
    font-size: 24px;
  }

  .info-text,
  .checklist-item span {
    font-size: 14px;
  }

  .info-highlight-card {
    padding: 24px;
  }

  /* Added FAQ responsive title for mobile */
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}
