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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #1a1a24 0%, #0f0f14 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.main-header {
  background: #13131c;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #e4682c;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.status-badge {
  background: linear-gradient(135deg, #e4682c 0%, #d45a1f 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(228, 104, 44, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.status-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 104, 44, 0.6);
  background: linear-gradient(135deg, #f07238 0%, #e4682c 100%);
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(19, 19, 28, 0.85) 0%, rgba(26, 26, 36, 0.85) 100%),
              url('../glarea/banner-main1.png') center center/cover no-repeat;
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(228, 104, 44, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e4682c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.hero-subtitle strong {
  color: #e4682c;
  font-weight: 700;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #e4682c 0%, #d45a1f 100%);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 25px rgba(228, 104, 44, 0.5);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(228, 104, 44, 0.7);
  background: linear-gradient(135deg, #f07238 0%, #e4682c 100%);
  border-color: #ffffff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #e4682c;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #e4682c;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e4682c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(228, 104, 44, 0.5);
}

.guide-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #e4682c, transparent);
  border-radius: 2px;
}

.guide-box {
  background: rgba(19, 19, 28, 0.6);
  border-left: 4px solid #e4682c;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.guide-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.info-section {
  margin-bottom: 50px;
}

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

.benefit-item {
  background: rgba(19, 19, 28, 0.7);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(228, 104, 44, 0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(228, 104, 44, 0.3);
  border-color: #e4682c;
  background: rgba(19, 19, 28, 0.9);
}

.benefit-icon {
  font-size: 32px;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 104, 44, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.benefit-text {
  flex: 1;
}

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

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

.features-section {
  margin-bottom: 50px;
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(19, 19, 28, 0.8) 0%, rgba(26, 26, 36, 0.8) 100%);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #e4682c, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(228, 104, 44, 0.4);
  border-color: #e4682c;
}

.feature-icon-wrapper {
  width: auto;
  height: auto;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.05);
}

.feature-icon-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-block;
  background: transparent;
  color: #e4682c;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #e4682c;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-btn:hover {
  background: #e4682c;
  color: #ffffff;
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, rgba(228, 104, 44, 0.1) 0%, rgba(19, 19, 28, 0.8) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 50px;
  border: 2px solid rgba(228, 104, 44, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-text {
  font-size: 18px;
  color: #d0d0d0;
  margin-bottom: 30px;
}

.main-footer {
  background: #13131c;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #e4682c;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #e4682c 0%, #d45a1f 100%);
  color: #ffffff;
  padding: 16px 35px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 25px rgba(228, 104, 44, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(228, 104, 44, 0.7);
  background: linear-gradient(135deg, #f07238 0%, #e4682c 100%);
}

.footer-text {
  color: #888888;
  font-size: 12px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .main-header {
    position: static;
  }

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

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

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

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .cta-section {
    padding: 40px 20px;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .status-badge {
    width: 100%;
    text-align: center;
  }

  .logo {
    height: 40px;
  }
}
