/* Home page body styles */
.home-page {
  background: radial-gradient(1440px 700px at 70% 0%, #231f22 0%, var(--bg) 45%),
    radial-gradient(800px 500px at 10% 10%, #1a1a24 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* Hero section */
.home-page .home-hero {
  background: none;
  overflow: hidden;
  height: auto;
  min-height: 600px;
  position: relative;
  padding: 76px 0 64px;
  margin: 0 auto;
}

.home-page .home-hero .hero-bg-left {
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.home-page .home-hero .hero-bg-right {
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.home-page .home-hero .hero-bg-left img,
.home-page .home-hero .hero-bg-right img {
  max-width: 100%;
}

.home-page .home-hero .hero-bg-right::after {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 1024px) {
  .home-page .home-hero .hero-bg-left {
    display: none;
  }

  .home-page .home-hero .hero-bg-right {
    text-align: center;
    opacity: 0.5;
  }
}

.home-page .container {
  width: min(1440px, 92vw);
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.home-hero .hero-text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.home-hero .hero-text h1 {
  font-family: "NexaRust Slab", "Aptos", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.05;
}

.home-hero .hero-text h1 strong,
.home-hero .hero-text h1 b {
  color: var(--accent);
  font-weight: 700;
}

.home-hero .hero-text p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 32px 0 0;
}

.home-hero .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 0;
}

/* Home page sections */
.home-page .container .card h3 {
  color: var(--silver);
  font-family: "NexaRust Slab", "Aptos", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.home-page .container .card p,
.home-page .container .card li {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}

/* About competition section */
.about-competition-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Rules section */
.section-rules {
  max-width: 1440px;
  padding: 0 16px;
  margin: 120px auto;
}

.section-rules .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
}

.section-rules .rules-title {
  border-radius: 32px;
}

.section-rules .rules-title h3 {
  color: var(--silver);
  font-family: "NexaRust Slab", "Aptos", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  padding: 12px 24px;
}

.section-rules .rules-content {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}

.section-rules .rules-text {
  margin-bottom: 48px;
}

.section-rules .rules-text p {
  margin-bottom: 24px;
}

/* Gallery section */
.home-page .gallery {
  padding: 48px 16px 72px;
}

.home-page .gallery .container {
  max-width: 100%;
  width: 100%;
}

.home-page .gallery h2 {
  font-family: "NexaRust Slab", "Aptos", sans-serif;
  margin: 0 0 18px;
  font-size: 24px;
}
