/* INDEX PAGE SPECIFIC STYLES */

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  border-bottom: 2px solid var(--orange);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: static;
  max-width: none;
  padding: 0;
  width: auto;
  margin: 0;
  z-index: 2;
}

.hero-content {
  position: absolute;
  right: 90px;
  bottom: 40px;
  width: 500px;
  text-align: right;
  z-index: 2;
}

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

.hero .highlight {
  color: #ee650a;
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, #cc7000 100%);
  color: #fff;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid var(--orange);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.5);
}

@media (max-width: 768px) {
  .hero {
    min-height: 480px !important;
  }

  .hero-content {
    right: 24px;
    left: auto;
    width: calc(100% - 48px);
    max-width: 500px;
    bottom: 30px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero-content {
    right: 16px;
    width: calc(100% - 32px);
    bottom: 24px;
  }

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

  .hero p {
    font-size: 15px;
  }
}

/* --- What's New --- */
.whats-new {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.whats-new-inner {
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 8px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(26, 15, 10, 0.7) 0%, rgba(15, 8, 3, 0.8) 100%);
  box-shadow: 0 0 24px rgba(255, 140, 0, 0.06), inset 0 1px 0 rgba(255, 140, 0, 0.08);
}

.whats-new-heading {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FF8C00;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.whats-new-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
}

.whats-new-scroll::-webkit-scrollbar {
  width: 4px;
}

.whats-new-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.whats-new-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 0, 0.25);
  border-radius: 4px;
}

.whats-new-date {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.35);
  margin: 16px 0 8px;
}

.whats-new-date:first-child {
  margin-top: 0;
}

.whats-new-item {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 248, 220, 0.82);
  padding-left: 16px;
  position: relative;
  margin-bottom: 10px;
}

.whats-new-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF8C00;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .whats-new { padding: 20px 16px 32px; }
  .whats-new-inner { padding: 18px 18px; }
  .whats-new-item { font-size: 14px; }
  .whats-new-scroll { max-height: 280px; }
}