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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.main-header {
  background: #000000;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(249, 255, 15, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo {
  max-width: 200px;
  height: auto;
  display: block;
}

.status-badge {
  background: #f9ff0f;
  color: #000000;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(249, 255, 15, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.status-badge:hover {
  background: #ffff20;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 255, 15, 0.5);
}

/* Main Content */
.main-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 50px 0;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 32px;
  color: #f9ff0f;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(249, 255, 15, 0.3);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: #f9ff0f;
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f9ff0f 0%, #e6f000 100%);
  color: #000000;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(249, 255, 15, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 255, 15, 0.5);
  background: linear-gradient(135deg, #ffff20 0%, #f9ff0f 100%);
  color: #000000;
}

/* Features Section */
.features-section {
  margin-bottom: 60px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(249, 255, 15, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #f9ff0f;
  box-shadow: 0 10px 30px rgba(249, 255, 15, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
  max-width: 100%;
  align-self: center;
}

.feature-card h3 {
  color: #f9ff0f;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  color: #c0c0c0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-block;
  background: rgba(249, 255, 15, 0.15);
  color: #f9ff0f;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #f9ff0f;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.card-btn:hover {
  background: #f9ff0f;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 255, 15, 0.4);
}

/* Info Section */
.info-section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 28px;
  color: #f9ff0f;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(249, 255, 15, 0.2);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #f9ff0f;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.check-icon {
  background: #f9ff0f;
  color: #000000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-text {
  flex: 1;
}

.benefit-text strong {
  color: #f9ff0f;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-text p {
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.6;
}

/* Guide Section */
.guide-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(249, 255, 15, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(249, 255, 15, 0.2);
}

.guide-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
.main-footer {
  background: #000000;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(249, 255, 15, 0.1);
  margin-top: auto;
}

.footer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #f9ff0f 0%, #e6f000 100%);
  color: #000000;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(249, 255, 15, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 255, 15, 0.5);
  background: linear-gradient(135deg, #ffff20 0%, #f9ff0f 100%);
  color: #000000;
}

/* Links */
a {
  color: #f9ff0f;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffff20;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-primary,
  .footer-cta {
    font-size: 16px;
    padding: 15px 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .main-content {
    padding: 30px 15px;
  }
  
  .logo {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .check-icon {
    margin: 0 auto;
  }
}