* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #030303;
  --dark: #0b0b0b;
  --card: #111111;
  --red: #ff0808;
  --red-dark: #8b0000;
  --grey: #b8b8b8;
  --white: #ffffff;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* HEADER */
.main-header {
  width: 100%;
  padding: 14px 6%;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.logo-text h1 {
  color: var(--red);
  font-size: 30px;
  letter-spacing: 4px;
  text-shadow: 0 0 14px rgba(255, 0, 0, 0.9);
}

.logo-text p {
  color: var(--white);
  font-size: 13px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 700;
  color: #eeeeee;
  transition: 0.25s;
}

.nav-menu a:hover {
  color: var(--red);
}

.menu-btn {
  display: none;
  background: #151515;
  border: 1px solid #444;
  color: white;
  font-size: 22px;
  padding: 8px 13px;
  border-radius: 8px;
}

/* HERO */
.hero {
  min-height: 620px;
  padding: 75px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.96)),
    radial-gradient(circle at center, rgba(255,0,0,0.32), #050505 65%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,0,0,0.4);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -105px;
  left: 5%;
  width: 90%;
  height: 190px;
  border-top: 4px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 -22px 80px rgba(255,0,0,0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 18px rgba(255,0,0,0.8));
}

.hero-content h2 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 6px;
}

.hero-content h3 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content span {
  color: var(--red);
  text-shadow: 0 0 18px rgba(255,0,0,0.75);
}

.hero-content p {
  color: #dddddd;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

/* BUTTONS */
.primary-btn,
.secondary-btn,
.plan-card button,
.form-box button {
  min-width: 150px;
  padding: 14px 28px;
  border-radius: 9px;
  font-weight: 800;
  transition: 0.25s;
}

.primary-btn {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 0 20px rgba(255,0,0,0.45);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255,0,0,0.85);
}

.secondary-btn {
  background: #151515;
  color: white;
  border: 1px solid #666;
}

.secondary-btn:hover {
  background: #222;
  border-color: var(--red);
}

/* FEATURE BOXES */
.feature-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.feature-box {
  min-width: 210px;
  padding: 18px 24px;
  background: rgba(20,20,20,0.86);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 13px;
  box-shadow: 0 0 18px rgba(255,0,0,0.16);
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-box p {
  color: #bbbbbb;
  font-size: 14px;
  margin: 0;
}

/* SECTIONS */
.section {
  padding: 70px 6%;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}

.section-desc {
  color: #aaa;
  margin-bottom: 34px;
  font-size: 17px;
}

.subscription-title {
  max-width: 950px;
  margin: 42px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.subscription-title::before,
.subscription-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255,0,0,0.8), transparent);
}

.subscription-title h3 {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.second-title {
  margin-top: 60px;
}

/* PLAN CARDS */
.plan-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
}

.plan-card {
  width: 275px;
  min-height: 365px;
  padding: 28px 22px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 28px rgba(255,255,255,0.06);
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(255,0,0,0.35);
}

.plan-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.plan-card h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.plan-card p {
  margin: 11px 0;
  color: #f1f1f1;
  line-height: 1.35;
}

.plan-card button {
  width: 100%;
  margin-top: 22px;
  background: #050505;
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
}

.plan-card button:hover {
  background: var(--red);
  border-color: var(--red);
}

.best-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: var(--red);
  color: white;
  padding: 6px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
}

/* CARD COLORS */
.blue {
  background: linear-gradient(160deg, #06183e, #1555c8);
}

.green {
  background: linear-gradient(160deg, #031f0d, #15913c);
}

.purple {
  background: linear-gradient(160deg, #1a032c, #7d1bd0);
}

.orange {
  background: linear-gradient(160deg, #351500, #c95b12);
}

.cyan {
  background: linear-gradient(160deg, #002828, #12a6a0);
}

.red-card {
  background: linear-gradient(160deg, #300000, #b00000);
}

.grey-card {
  background: linear-gradient(160deg, #101010, #333333);
}

/* TICKET STRIP */
.ticket-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, #111, #2c0000);
  border: 1px solid rgba(255,0,0,0.55);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255,0,0,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  text-align: left;
}

.ticket-strip h2 {
  font-size: 31px;
  margin-bottom: 8px;
}

.ticket-strip p {
  color: #cccccc;
  line-height: 1.5;
}

/* FORMS */
.form-section {
  padding: 70px 6%;
  display: flex;
  justify-content: center;
}

.form-box {
  width: 100%;
  max-width: 540px;
  background: #111;
  border: 1px solid rgba(255,0,0,0.45);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 28px rgba(255,0,0,0.16);
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  margin: 10px 0;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #050505;
  color: white;
  outline: none;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: var(--red);
}

.form-box textarea {
  min-height: 130px;
  resize: vertical;
}

.form-box button {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: white;
}

/* FOOTER */
.main-footer {
  background: #050505;
  border-top: 1px solid rgba(255,0,0,0.55);
  padding: 45px 6% 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 30px;
}

.footer-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 12px rgba(255,0,0,0.7));
}

.main-footer h2,
.main-footer h3 {
  color: var(--red);
  margin-bottom: 14px;
}

.main-footer p,
.main-footer a {
  display: block;
  color: #cccccc;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.5;
}

.main-footer a:hover {
  color: var(--red);
}

.os-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.os-list span {
  background: #151515;
  border: 1px solid #333;
  padding: 7px 10px;
  border-radius: 20px;
  color: #ddd;
  font-size: 13px;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 16px;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .main-header {
    flex-wrap: wrap;
    padding: 12px 5%;
  }

  .main-logo {
    width: 58px;
    height: 58px;
  }

  .logo-text h1 {
    font-size: 24px;
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 14px;
    background: #101010;
    padding: 18px;
    border-radius: 12px;
    margin-top: 14px;
    border: 1px solid #333;
  }

  .nav-menu.show {
    display: flex;
  }

  .hero {
    min-height: 560px;
    padding: 60px 5%;
  }

  .hero-logo {
    width: 115px;
    height: 115px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .ticket-strip {
    flex-direction: column;
    text-align: center;
  }

  .main-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .os-list {
    justify-content: center;
  }
}