* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #e7e7e7;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(139, 0, 0, 0.4);
}

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

.brand {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #d7d7d7;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #ff5c5c;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.hero-poster {
  background-image: url("image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.82)),
    linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  padding: 30px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.poster-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 24px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.hero-kicker {
  color: #ff6a6a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 10px;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.7);
}

.subtitle {
  margin-top: 18px;
  font-size: 22px;
  color: #d9d9d9;
}

.lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: #ececec;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: #8b0000;
  color: #fff;
}

.btn-primary:hover {
  background: #a30000;
}

.btn-secondary {
  border: 1px solid #888;
  color: #fff;
  background: rgba(255,255,255,0.02);
}

.btn-secondary:hover {
  border-color: #ff5c5c;
  color: #ff5c5c;
}

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

.section-title {
  font-size: 30px;
  color: #ff4d4d;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-intro {
  color: #d5d5d5;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid #8b0000;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.card h3 {
  margin-top: 0;
  color: #fff;
}

.cta-panel {
  margin-top: 32px;
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid rgba(139,0,0,0.35);
  border-radius: 12px;
  padding: 26px;
}

.page-header {
  padding: 70px 20px 30px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
}

.page-header h1 {
  font-size: 44px;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.small {
  font-size: 14px;
  color: #bdbdbd;
}

.content-panel {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 28px;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(139, 0, 0, 0.35);
  border-radius: 12px;
}

.content-panel h2 {
  color: #ff4d4d;
  margin-top: 28px;
}

.content-panel h3 {
  color: #ffffff;
  margin-top: 22px;
}

.rule {
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid #8b0000;
}

.footer {
  text-align: center;
  padding: 24px 20px;
  background: #050505;
  border-top: 1px solid rgba(139, 0, 0, 0.5);
  color: #bdbdbd;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 18px;
  }

  .lead {
    font-size: 16px;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }
}
