{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #050505;
color: #fff;
line-height: 1.6;
}

/* NAVIGATION */

.navbar {
height: 72px;
background: #000;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 6%;
border-bottom: 1px solid #222;
position: sticky;
top: 0;
z-index: 1000;
}

.logo {
font-size: 28px;
font-weight: 800;
}

.logo span,
.footer-logo span {
color: #e60000;
}

nav {
display: flex;
gap: 30px;
}

nav a {
color: #fff;
text-decoration: none;
font-size: 15px;
transition: .3s;
}

nav a:hover,
nav a.active {
color: #e60000;
}

.nav-buttons {
display: flex;
align-items: center;
gap: 18px;
}

.login-btn {
color: white;
text-decoration: none;
font-weight: bold;
}

.trial-btn,
.primary-btn,
.package-btn {
background: #e60000;
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}

.trial-btn {
padding: 10px 18px;
}

/* HERO */

.hero {
min-height: 600px;
display: flex;
align-items: center;
padding: 80px 7%;
background:
linear-gradient(
90deg,
#000 10%,
rgba(0,0,0,.85) 50%,
rgba(0,0,0,.3)
),
linear-gradient(135deg, #191919, #343434);
}

.hero-content {
max-width: 650px;
}

.hero-label {
color: #e60000;
font-size: 14px;
font-weight: bold;
letter-spacing: 2px;
margin-bottom: 15px;
}

.hero h1,
.page-hero h1 {
font-size: clamp(50px, 7vw, 80px);
line-height: .95;
margin-bottom: 25px;
}

.hero h1 span,
.page-hero h1 span,
.sports h2 span {
color: #e60000;
}

.hero p,
.page-hero p {
color: #ccc;
font-size: 19px;
max-width: 600px;
margin-bottom: 30px;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
display: inline-block;
padding: 14px 27px;
}

.secondary-btn {
color: white;
border: 1px solid white;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}

.secondary-btn:hover {
background: white;
color: black;
}

/* GENERAL */

.features,
.packages,
.content-section,
.support-section,
.faq,
.contact-section {
padding: 80px 7%;
}

.features,
.support-section,
.faq {
background: #101010;
}

.section-title {
text-align: center;
font-size: 42px;
margin-bottom: 45px;
}

/* FEATURE CARDS */

.feature-grid,
.support-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.feature-card,
.support-card {
background: #191919;
padding: 35px 28px;
border-radius: 10px;
border: 1px solid #292929;
}

.feature-card:hover,
.support-card:hover {
border-color: #e60000;
transform: translateY(-5px);
}

.feature-icon {
font-size: 40px;
margin-bottom: 15px;
}

.feature-card h3,
.support-card h3 {
font-size: 23px;
margin-bottom: 10px;
}

.feature-card p,
.support-card p {
color: #aaa;
}

/* PACKAGES */

.package-intro {
text-align: center;
color: #999;
max-width: 700px;
margin: -25px auto 45px;
}

.package-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.package {
background: #151515;
border: 1px solid #303030;
border-radius: 10px;
overflow: hidden;
}

.package-top {
background: #222;
padding: 25px;
}

.package-top h3 {
font-size: 24px;
}

.package-top span {
color: #999;
font-size: 14px;
}

.package-body {
padding: 25px;
}

.price {
font-size: 32px;
font-weight: bold;
margin-bottom: 15px;
}

.price small {
color: #999;
font-size: 14px;
}

.package ul {
list-style: none;
margin-bottom: 25px;
}

.package li {
color: #ccc;
margin: 10px 0;
}

.package li::before {
content: "✓";
color: #e60000;
margin-right: 8px;
}

.package-btn {
display: block;
text-align: center;
padding: 12px;
}

/* SPORTS */

.sports {
padding: 100px 7%;
background: #191919;
}

.sports-content {
max-width: 650px;
}

.sports h2 {
font-size: 55px;
line-height: 1;
margin-bottom: 20px;
}

.sports p {
color: #ccc;
font-size: 18px;
margin-bottom: 25px;
}

/* CONTENT */

.content-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
}

.content-card {
min-height: 220px;
padding: 25px;
display: flex;
align-items: flex-end;
background: linear-gradient(145deg, #292929, #111);
border-radius: 8px;
border: 1px solid #303030;
}

.content-card h3 {
font-size: 23px;
}

/* CTA */

.cta {
background: #e60000;
text-align: center;
padding: 80px 7%;
}

.cta h2 {
font-size: 45px;
margin-bottom: 15px;
}

.cta p {
margin-bottom: 25px;
}

.cta-button {
background: #000;
color: white;
padding: 14px 28px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}

/* PAGE HERO */

.page-hero {
min-height: 450px;
padding: 90px 7%;
display: flex;
align-items: center;
background:
linear-gradient(90deg, #000, rgba(0,0,0,.6)),
linear-gradient(135deg, #171717, #333);
}

/* SUPPORT */

.support-grid {
grid-template-columns: repeat(4, 1fr);
}

.support-card button {
margin-top: 20px;
padding: 10px 18px;
background: #e60000;
color: white;
border: 0;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}

/* FAQ */

.faq-container {
max-width: 850px;
margin: auto;
}

details {
background: #191919;
margin-bottom: 12px;
padding: 20px;
border-radius: 7px;
border: 1px solid #292929;
}

summary {
cursor: pointer;
font-weight: bold;
font-size: 17px;
}

details p {
color: #aaa;
margin-top: 15px;
}

/* CONTACT */

.contact-section {
background: #0d0d0d;
}

.contact-container {
max-width: 1100px;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info h2,
.contact-form h2 {
font-size: 36px;
margin-bottom: 15px;
}

.contact-info > p {
color: #aaa;
margin-bottom: 35px;
}

.contact-item {
display: flex;
gap: 18px;
margin-bottom: 25px;
}

.contact-icon {
font-size: 28px;
}

.contact-item h3 {
margin-bottom: 3px;
}

.contact-item p {
color: #999;
}

.contact-form {
background: #191919;
padding: 35px;
border-radius: 10px;
border: 1px solid #292929;
}

.contact-form form {
display: flex;
flex-direction: column;
}

.contact-form label {
margin: 13px 0 6px;
font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
width: 100%;
padding: 13px;
background: #0c0c0c;
border: 1px solid #333;
color: white;
border-radius: 5px;
font-family: inherit;
}

.contact-form textarea {
resize: vertical;
}

.contact-form button {
margin-top: 20px;
padding: 14px;
background: #e60000;
color: white;
border: none;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}

.contact-form button:hover,
.support-card button:hover,
.trial-btn:hover,
.primary-btn:hover,
.package-btn:hover {
background: #ff2525;
}

/* FOOTER */

footer {
background: #000;
padding: 55px 7% 25px;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}

.footer-logo {
font-size: 28px;
font-weight: bold;
margin-bottom: 15px;
}

footer p {
color: #888;
max-width: 350px;
}

footer h4 {
margin-bottom: 15px;
}

footer a {
display: block;
color: #888;
text-decoration: none;
margin: 8px 0;
}

footer a:hover {
color: white;
}

.copyright {
border-top: 1px solid #222;
padding-top: 20px;
color: #666;
text-align: center;
}

/* MOBILE */

@media (max-width: 900px) {

.navbar {
padding: 0 4%;
}

nav {
gap: 15px;
}

.feature-grid,
.package-grid,
.support-grid,
.content-grid {
grid-template-columns: repeat(2, 1fr);
}

.contact-container {
grid-template-columns: 1fr;
}

.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {

.navbar {
height: auto;
padding: 18px 5%;
flex-wrap: wrap;
gap: 15px;
}

nav {
order: 3;
width: 100%;
justify-content: center;
}

.login-btn {
display: none;
}

.hero,
.page-hero {
padding: 70px 6%;
}

.hero h1,
.page-hero h1 {
font-size: 50px;
}

.sports h2 {
font-size: 40px;
}

.section-title {
font-size: 34px;
}

.feature-grid,
.package-grid,
.support-grid,
.content-grid,
.footer-grid {
grid-template-columns: 1fr;
}

.features,
.packages,
.content-section,
.support-section,
.faq,
.contact-section {
padding: 60px 6%;
}
}
/* ABOUT PAGE */

.about-section {
  padding: 90px 7%;
  background: #050505;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 25px;
}

.about-text h2 span {
  color: #e60000;
}

.about-text p {
  color: #aaa;
  margin-bottom: 18px;
  font-size: 17px;
}

.about-box {
  background: linear-gradient(145deg, #222, #111);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 50px 35px;
  text-align: center;
}

.about-box:hover {
  border-color: #e60000;
}

.about-icon {
  font-size: 65px;
  margin-bottom: 20px;
}

.about-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-box p {
  color: #999;
}


/* ABOUT FEATURES */

.about-features {
  padding: 90px 7%;
  background: #101010;
}


/* WHY SECTION */

.why-section {
  padding: 100px 7%;
  background: #0b0b0b;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.why-container h2 {
  font-size: 55px;
  line-height: .95;
}

.why-container h2 span {
  color: #e60000;
}

.why-content {
  border-left: 1px solid #333;
  padding-left: 40px;
}

.why-item {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid #292929;
}

.why-item > span {
  color: #e60000;
  font-size: 18px;
  font-weight: bold;
}

.why-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.why-item p {
  color: #999;
}


/* ABOUT MOBILE */

@media (max-width: 800px) {

  .about-container,
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 40px;
  }

  .why-container h2 {
    font-size: 45px;
  }

  .why-content {
    border-left: none;
    padding-left: 0;
  }

}

@media (max-width: 600px) {

  .about-section,
  .about-features,
  .why-section {
    padding: 60px 6%;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .why-container h2 {
    font-size: 40px;
  }

}
.content-card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #303030;
  background: #111;
}

.content-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.content-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 2px 8px #000;
}
/* CARD SECTION */

.card-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


/* CARD */

.custom-card {
  background: #191919;
  border: 1px solid #303030;
  border-radius: 10px;
  overflow: hidden;

  transition: all 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-8px);
  border-color: #e60000;
  box-shadow: 0 12px 30px rgba(230, 0, 0, 0.15);
}


/* CARD IMAGE */

.card-img {
  width: 100%;
  height: 200px;

  object-fit: cover;
  display: block;
}


/* CARD BODY */

.card-body {
  padding: 22px;
}


/* CARD TITLE */

.card-title {
  color: #fff;
  font-size: 23px;
  margin-bottom: 12px;
}


/* CARD TEXT */

.card-text {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;

  margin-bottom: 20px;
}


/* BUTTON */

.card-btn {
  display: inline-block;

  background: #e60000;
  color: #fff;

  padding: 10px 20px;

  border-radius: 5px;

  text-decoration: none;
  font-weight: bold;

  transition: background 0.3s ease;
}

.card-btn:hover {
  background: #ff2525;
}


/* TABLET */

@media (max-width: 1000px) {

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 220px;
  }

}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 60px 8%;
  background: #050505;
}

.hero-content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {

  .hero {
    padding: 50px 6%;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
  }

  .hero-image img {
    max-width: 450px;
  }

  .hero-buttons {
    justify-content: center;
  }
}