@font-face {
  font-family: "Afacad";
  src: url("fonts/Afacad_Flux/AfacadFlux-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "IBM";
  src: url("fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

/* Null */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --primary-color: #3498db;
  /* Bright blue */
  --primary-light: #74b9ff;
  /* Lighter blue */
  --secondary-color: #2c3e50;
  /* Dark navy blue */
  --secondary-light: #34495e;
  /* Medium navy blue */
  --accent-color: #f1c40f;
  /* Bright yellow */
  --accent-secondary: #e74c3c;
  /* Red accent */
  --body-color: #ecf0f1;
  /* Light gray background */
  --card-color: #ffffff;
  /* Card background */
  --font-body: "IBM", sans-serif;
  /* Clean sans-serif */
  --font-headings: "Afacad", sans-serif;
  /* Elegant sans-serif */
  --heading-color: #2c3e50;
  /* For headers */
  --text-color: #2c3e50;
  /* For text */
  --text-muted: #8f9da0;
  /* For muted text */
  --text-light: #ecf0f1;
  /* For text on dark backgrounds */
  --border-color: #bdc3c7;
  /* For borders */
  --success: #27ae60;
  /* Success green */
  --error: #c0392b;
  /* Error red */
  --warning: #f39c12;
  /* Warning orange */
  --info: #3498db;
  /* Info blue */
}

body {
  background-color: var(--body-color);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
}

/* Start */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* General section styles */
section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.features {
  background-color: var(--body-color);
}

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

.feature-card {
  background-color: var(--card-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-i {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.feature-icon-img {
  width: 60px;
  height: 60px;
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.feature-description {
  color: var(--text-color);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  position: relative;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
  color: var(--text-light);
}

.steps-container-s {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: scale(1.03);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title-i {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.step-description-i {
  line-height: 1.6;
}

/* App Download Section */
.app-download {
  background-color: var(--card-color);
  position: relative;
  overflow: hidden;
}

.app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.app-info {
  max-width: 500px;
  text-align: center;
}

.app-info .section-title {
  text-align: center;
}

.app-description {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.6;
}

.app-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  text-align: center;

  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.app-button {
  display: block;
  transition: transform 0.3s ease;
  max-width: 160px;
}

.app-button:hover {
  transform: translateY(-3px);
}

.app-store-img {
  width: 100%;
  height: auto;
}

.app-features-list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 300px;
}

.app-features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.app-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.app-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.app-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Game Categories Section */
.game-categories {
  background-color: var(--body-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.category-card {
  background-color: var(--card-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  color: var(--text-color);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-title-i {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  padding: 20px 20px 10px;
  color: #000;
}

.category-description-i {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.category-cta {
  text-align: center;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: var(--text-light);
  padding: 50px 0;
}

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

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--card-color);
  padding: 70px 0;
}

.newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content {
  margin-bottom: 30px;
}

.newsletter-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.newsletter-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex-grow: 1;
  min-width: 250px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--primary-color);
}

.newsletter-btn {
  min-width: 120px;
}

/* Media Queries */
@media (min-width: 768px) {
  .hero .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    text-align: left;
    margin-bottom: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .app-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .app-info {
    text-align: left;
  }


}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .steps-container-s {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
}

/* Pro Tips Section */
.pro-tips {
  background: linear-gradient(rgba(45, 62, 80, 0.9), rgba(45, 62, 80, 0.9)), url('img/img5.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  position: relative;
}

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

.pro-tips .section-title,
.pro-tips .section-subtitle {
  color: var(--text-light);
}

.tip-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid var(--accent-color);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tip-number {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.tip-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tip-description {
  line-height: 1.6;
  opacity: 0.9;
}

/* Skill Improvement Section */
.skill-improvement {
  background-color: var(--card-color);
  padding: 80px 0;
}

.skill-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.skill-info {
  max-width: 550px;
}

.skill-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.skill-progress {
  margin-top: 30px;
}

.skill-meter {
  margin-bottom: 20px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
}

.skill-bar {
  height: 10px;
  background-color: var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  transition: width 1s ease-in-out;
}

.skill-knowledge {
  width: 85%;
}

.skill-analysis {
  width: 70%;
}

.skill-strategy {
  width: 90%;
}

.skill-building {
  width: 75%;
}

.skill-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-img {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.faq {
  background-color: var(--body-color);
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #2f2f2f;
}

/* Tournaments Section */
.tournaments {
  background-color: var(--card-color);
  padding: 80px 0;
}

.tournament-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 10px;
}

.tournament-card {
  background-color: var(--body-color);
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  transition: all 0.3s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tournament-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  min-width: 80px;
}

.tournament-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.tournament-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.tournament-info {
  padding: 20px;
  flex-grow: 1;
}

.tournament-name {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.tournament-description {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.tournament-details {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tournament-sport {
  background-color: var(--primary-light);
  color: var(--text-light);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Community Section */
.community {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
  color: var(--text-light);
  padding: 80px 0;
}

.community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.community-info {
  max-width: 550px;
}

.community .section-title {
  color: var(--text-light);
}

.community-description-i {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.community-features {
  list-style: none;
  padding: 0;
}

.community-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text-i h3 {
  font-family: var(--font-headings);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-text-i p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.community-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.community-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Call to Action Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Media Queries */
@media (min-width: 768px) {
  .skill-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .community-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .tip-card {
    padding: 20px;
  }

  .tournament-card {
    flex-direction: column;
  }

  .tournament-date {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
  }

  .tournament-date .day,
  .tournament-date .month {
    font-size: 1.2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/img9.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.about-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-hero-subtitle {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Company Story Section */
.company-story {
  padding: 80px 0;
  background-color: var(--card-color);
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.story-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
}

.story-info {
  max-width: 600px;
}

.story-text {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color);
}

/* Mission & Values Section */
.mission-values {
  padding: 80px 0;
  background-color: var(--body-color);
}

.mission-container {
  max-width: 800px;
  margin: 0 auto 50px;
}

.mission-card {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.mission-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.mission-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  margin: 0;
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

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

.value-card {
  background-color: var(--card-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.2;
}

.value-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
}

.value-description {
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
}

/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background-color: var(--card-color);
}

.choose-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.choose-info {
  max-width: 600px;
}

.choose-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.choose-marker {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.choose-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.choose-description {
  color: var(--text-color);
  line-height: 1.6;
}

.choose-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Growth Stats Section */
.growth-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
}

.growth-stats .section-header .section-title,
.growth-stats .section-header .section-subtitle {
  color: var(--text-light);
}

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

.growth-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.growth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.growth-icon {
  margin-bottom: 20px;
}

.growth-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.growth-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.growth-description {
  line-height: 1.6;
  opacity: 0.9;
}

/* Commitment Section */
.commitment {
  padding: 80px 0;
  background-color: var(--body-color);
}

.commitment-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.commitment-info {
  max-width: 600px;
}

.commitment-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.commitment-promises {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.commitment-promise {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.promise-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.promise-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.promise-description {
  color: var(--text-color);
  line-height: 1.6;
}

.commitment-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (min-width: 992px) {
  .story-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .choose-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .commitment-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.2rem;
  }

  .mission-card {
    padding: 30px;
  }

  .mission-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .mission-title {
    font-size: 1.5rem;
  }

  .mission-text {
    font-size: 1.1rem;
  }

  .growth-number {
    font-size: 2rem;
  }
}

/* Legal Compliance Section */
.legal-compliance {
  padding: 80px 0;
  background-color: var(--body-color);
}

.compliance-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.compliance-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-img {
  width: 100%;
  height: auto;
  display: block;
}

.compliance-info {
  max-width: 600px;
}

.compliance-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.compliance-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.compliance-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.point-marker {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.point-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.point-description {
  color: var(--text-color);
  line-height: 1.6;
}

.compliance-note {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.compliance-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Technology Section */
.technology {
  padding: 80px 0;
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
  color: var(--text-light);
}

.technology .section-title,
.technology .section-subtitle {
  color: var(--text-light);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tech-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tech-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tech-letter {
  font-size: 2rem;
  font-weight: 700;
}

.tech-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tech-description {
  line-height: 1.6;
  opacity: 0.9;
}

.tech-showcase {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tech-showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (min-width: 992px) {
  .compliance-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .tech-icon {
    width: 60px;
    height: 60px;
  }

  .tech-letter {
    font-size: 1.7rem;
  }
}

/* How to Play Hero Section */
.how-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/img16.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.how-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.how-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Getting Started Section */
.getting-started {
  padding: 80px 0;
  background-color: var(--card-color);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.step-box {
  display: flex;
  gap: 25px;
  background-color: var(--body-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.step-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-btn {
  display: inline-block;
  margin-top: 10px;
}

/* Basic Rules Section */
.basic-rules {
  padding: 80px 0;
  background-color: var(--body-color);
}

.rules-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.rules-info {
  max-width: 600px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.rule-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rule-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.rule-description {
  color: var(--text-color);
  line-height: 1.6;
}

.rules-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rules-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sport-Specific Rules Section */
.sport-rules {
  padding: 80px 0;
  background-color: var(--card-color);
}

.sports-tabs {
  margin-top: 50px;
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.panel-info {
  max-width: 600px;
}

.panel-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.panel-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.panel-list {
  list-style: none;
  padding: 0;
}

.panel-list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-color);
  line-height: 1.5;
}

.panel-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.panel-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.panel-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Strategy Tips Section */
.strategy-tips {
  padding: 80px 0;
  background: linear-gradient(rgba(45, 62, 80, 0.95), rgba(45, 62, 80, 0.95)), url('img/img17.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.strategy-tips .section-title,
.strategy-tips .section-subtitle {
  color: var(--text-light);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tip-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tip-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.tip-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin: 0;
}

.tip-description {
  line-height: 1.6;
  margin-bottom: 20px;
}

.tip-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tip-author {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
}

/* Advanced Strategy Section */
.advanced-strategy {
  padding: 80px 0;
  background-color: var(--body-color);
}

.advanced-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.advanced-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advanced-img {
  width: 100%;
  height: auto;
  display: block;
}

.advanced-info {
  max-width: 600px;
}

.advanced-point {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
}

.point-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.point-description {
  color: var(--text-color);
  line-height: 1.6;
}

/* Common Mistakes Section */
.common-mistakes {
  padding: 80px 0;
  background-color: var(--card-color);
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.mistake-card {
  background-color: var(--body-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mistake-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mistake-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mistake-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background-color: var(--error);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.mistake-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;

  color: var(--heading-color);
  margin: 0;
}

.mistake-description {
  color: var(--text-color);
  line-height: 1.6;
}

/* Tools and Resources Section */
.tools-resources {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
}

.tools-resources .section-title,
.tools-resources .section-subtitle {
  color: var(--text-light);
}

.resources-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.resources-info {
  max-width: 600px;
}

.resources-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.resource-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.resource-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.resource-description {
  line-height: 1.6;
  opacity: 0.9;
}

.resources-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resources-img {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.how-faq {
  padding: 80px 0;
  background-color: var(--body-color);
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background-color: var(--card-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 700px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #2f2f2f;
}

/* Community Learning Section */
.community-learning {
  padding: 80px 0;
  background-color: var(--card-color);
}

.community-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.community-info {
  max-width: 600px;
}

.community-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 30px;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.community-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.feature-description {
  color: var(--text-color);
  line-height: 1.6;
}

.community-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.community-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Call to Action Section */
.how-cta {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  min-width: 180px;
}


/* Media Queries */
@media (min-width: 992px) {
  .rules-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .panel-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .advanced-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .resources-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .community-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .how-hero-title {
    font-size: 2.5rem;
  }

  .how-hero-subtitle {
    font-size: 1.2rem;
  }

  .step-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tabs-header {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .cta-button {
    width: 100%;
  }
}

/* Games Hero Section */
.games-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/img22.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.games-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.games-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Games Grid Section */
.games-grid {
  padding: 80px 0;
  background-color: var(--body-color);
}

.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.game-card {
  background-color: var(--card-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.game-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-img {
  transform: scale(1.05);
}

.game-content {
  padding: 20px;
  text-align: center;
}

.game-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.game-btn {
  width: 100%;
}

/* Game Categories Section */
.game-categories-section {
  padding: 80px 0;
  background-color: var(--card-color);
}

.categories-tabs {
  margin-top: 50px;
}

.tabs-header {
  display: flex;
  overflow-x: auto;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Popular Tournaments Section */
.tournaments-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
  color: var(--text-light);
}

.tournaments-section .section-title,
.tournaments-section .section-subtitle {
  color: var(--text-light);
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tournament-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tournament-badge {
  position: absolute;
  top: 5px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
}

.tournament-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.tournament-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tournament-card:hover .tournament-img {
  transform: scale(1.05);
}

.tournament-content {
  padding: 30px 20px 20px;
  position: relative;
}

.tournament-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tournament-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tournament-info {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.info-value {
  font-weight: 600;
}

.tournament-btn {
  width: 100%;
}

/* Skills Section */
.skills-section {
  padding: 80px 0;
  background-color: var(--body-color);
}

.skills-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.skills-info {
  max-width: 600px;
}

.skills-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 30px;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.skill-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.skill-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.skill-description {
  color: var(--text-color);
  line-height: 1.6;
}

.skills-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skills-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Getting Started CTA Section */
.games-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 180px;
}



/* Media Queries */
@media (min-width: 992px) {
  .skills-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .games-hero-title {
    font-size: 2.5rem;
  }

  .games-hero-subtitle {
    font-size: 1.2rem;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tournament-details {
    flex-direction: column;
    gap: 10px;
  }
}

/* What are Fantasy Sports Section */
.fantasy-info {
  padding: 80px 0;
  background-color: var(--body-color);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.info-text {
  max-width: 600px;
}

.info-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.info-features {
  margin-top: 30px;
}

.info-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-marker {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text {
  margin: 0;
  color: var(--text-color);
  font-size: 1.05rem;
}

.info-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Our Fantasy Games Section */
.featured-games {
  padding: 80px 0;
  background-color: var(--card-color);
}

.game-feature {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
}

.game-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.game-feature-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.game-feature-image:hover .feature-img {
  transform: scale(1.05);
}

.game-feature-content {
  max-width: 600px;
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.feature-points {
  margin-bottom: 25px;
  padding-left: 20px;
}

.feature-points li {
  margin-bottom: 10px;
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
}

.feature-points li::before {
  content: "•";
  position: absolute;
  left: -5px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-btn {
  display: inline-block;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
  color: var(--text-light);
}

.benefits-section .section-title,
.benefits-section .section-subtitle {
  color: var(--text-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.benefit-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-description {
  line-height: 1.6;
  opacity: 0.9;
}

/* Media Queries */
@media (min-width: 992px) {
  .info-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .game-feature {
    flex-direction: row;
    justify-content: space-between;
  }

  .game-feature.reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .feature-title {
    font-size: 1.6rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Football Hero Section */
.football-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/fb11.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.football-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.football-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Fantasy Football Section */
.about-fantasy-football {
  padding: 80px 0;
  background-color: var(--body-color);
}

.football-about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.football-about-text {
  max-width: 600px;
}

.football-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.football-features {
  margin-top: 30px;
}

.football-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-marker {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text {
  margin: 0;
  color: var(--text-color);
  font-size: 1.05rem;
}

.football-about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.football-about-img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Play Section */
.how-to-play-football {
  padding: 80px 0;
  background-color: var(--card-color);
}

.play-steps {
  margin-top: 50px;
  margin-bottom: 40px;
}

.play-step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.step-description {
  color: var(--text-color);
  line-height: 1.6;
}

.play-image-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.play-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Scoring System Section */
.scoring-system {
  padding: 80px 0;
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
  color: var(--text-light);
}

.scoring-system .section-title,
.scoring-system .section-subtitle {
  color: var(--text-light);
}

.scoring-content {
  margin-top: 50px;
}

.scoring-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.scoring-category {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 25px;
}

.category-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.scoring-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.score-row:last-child {
  border-bottom: none;
}

.score-action {
  flex-grow: 1;
  padding-right: 10px;
}

.score-points {
  font-weight: 700;
  color: var(--accent-color);
}

.scoring-notes {
  margin-top: 30px;
  text-align: center;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Strategy Tips Section */
.football-strategy {
  padding: 80px 0;
  background-color: var(--body-color);
}

.strategy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.strategy-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  order: -1;
}

.strategy-img {
  width: 100%;
  height: auto;
  display: block;
}

.strategy-tips-s {
  max-width: 600px;
}

.strategy-tip {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.tip-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tip-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tip-description {
  color: #fff;
  line-height: 1.6;
}

/* Power Boosts Section */
.power-boosts {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
}

.power-boosts .section-title,
.power-boosts .section-subtitle {
  color: var(--text-light);
}

.boosts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.boost-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.boost-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.boost-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.boost-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.boost-card:hover .boost-img {
  transform: scale(1.05);
}

.boost-content {
  padding: 20px;
  text-align: center;
}

.boost-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.boost-description {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-glow {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  z-index: -1;
  animation: glow 2s infinite;
}

@keyframes glow {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* Football CTA Section */
.football-cta {
  background: url('img/fb12.jpeg') center/cover no-repeat;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.football-cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(45, 62, 80, 0.8), rgba(45, 62, 80, 0.8));
  z-index: 1;
}

.football-cta .wrapper {
  position: relative;
  z-index: 2;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  font-size: 1.1rem;
  padding: 15px 40px;
}

/* Media Queries */
@media (min-width: 992px) {
  .football-about-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .strategy-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .strategy-image {
    order: 0;
  }
}

@media (max-width: 768px) {
  .football-hero-title {
    font-size: 2.5rem;
  }

  .football-hero-subtitle {
    font-size: 1.2rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }
}

/* Basketball Hero Section */
.basketball-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/bb11.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.basketball-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.basketball-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Fantasy Basketball Section */
.about-fantasy-basketball {
  padding: 80px 0;
  background-color: var(--body-color);
}

.basketball-about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.basketball-about-text {
  max-width: 600px;
}

.basketball-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.basketball-features {
  margin-top: 30px;
}

.basketball-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.basketball-about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.basketball-about-img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Play Section */
.how-to-play-basketball {
  padding: 80px 0;
  background-color: var(--card-color);
}

/* Strategy Tips Section */
.basketball-strategy {
  padding: 80px 0;
  background-color: var(--body-color);
}

/* Basketball CTA Section */
.basketball-cta {
  background: url('img/bb12.jpeg') center/cover no-repeat;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.basketball-cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(45, 62, 80, 0.8), rgba(45, 62, 80, 0.8));
  z-index: 1;
}

.basketball-cta .wrapper {
  position: relative;
  z-index: 2;
}

/* Media Queries */
@media (min-width: 992px) {
  .basketball-about-content {
    flex-direction: row;
    justify-content: space-between;
  }

}

@media (max-width: 768px) {
  .basketball-hero-title {
    font-size: 2.5rem;
  }

  .play-step {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .basketball-hero-subtitle {
    font-size: 1.2rem;
  }

  .strategy-tip {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* Cricket Hero Section */
.cricket-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/cr13.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.cricket-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cricket-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Fantasy Cricket Section */
.about-fantasy-cricket {
  padding: 80px 0;
  background-color: var(--body-color);
}

.cricket-about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.cricket-about-text {
  max-width: 600px;
}

.cricket-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.cricket-features {
  margin-top: 30px;
}

.cricket-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.cricket-about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cricket-about-img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Play Section */
.how-to-play-cricket {
  padding: 80px 0;
  background-color: var(--card-color);
}

/* Strategy Tips Section */
.cricket-strategy {
  padding: 80px 0;
  background-color: var(--body-color);
}

/* Cricket CTA Section */
.cricket-cta {
  background: url('img/cr14.jpeg') center/cover no-repeat;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cricket-cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(45, 62, 80, 0.8), rgba(45, 62, 80, 0.8));
  z-index: 1;
}

.cricket-cta .wrapper {
  position: relative;
  z-index: 2;
}

/* Media Queries */
@media (min-width: 992px) {
  .cricket-about-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .strategy-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .cricket-hero-title {
    font-size: 2.5rem;
  }

  .cricket-hero-subtitle {
    font-size: 1.2rem;
  }
}

/* App Hero Section */
.app-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/img30.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.app-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.app-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* App Features Section */
.app-features {
  padding: 80px 0;
  background-color: var(--body-color);
}

.app-features-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.app-features-text {
  max-width: 600px;
}

.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-marker {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.feature-description {
  color: var(--text-color);
  line-height: 1.6;
}

.app-features-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-features-img {
  width: 100%;
  height: auto;
  display: block;
}

/* App Benefits Section */
.app-benefits {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
}

.app-benefits .section-title,
.app-benefits .section-subtitle {
  color: var(--text-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-description {
  line-height: 1.6;
  opacity: 0.9;
}

/* How It Works Section */
.app-how-it-works {
  padding: 80px 0;
  background-color: var(--card-color);
}

.how-it-works-steps {
  margin-top: 50px;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.how-step:last-child {
  margin-bottom: 0;
}



.step-content {
  text-align: center;
  max-width: 500px;
  margin-bottom: 30px;
}

.step-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.step-description {
  color: var(--text-color);
  line-height: 1.6;
}

.step-image {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-img {
  width: 100%;
  height: auto;
  display: block;
}

/* App Compatibility Section */
.app-compatibility {
  padding: 80px 0;
  background-color: var(--body-color);
}

.compatibility-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.compatibility-info {
  max-width: 600px;
}

.compatibility-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.compatibility-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--card-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.compatibility-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.item-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.item-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.item-description {
  color: var(--text-color);
  line-height: 1.6;
}

.compatibility-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compatibility-img {
  width: 100%;
  height: auto;
  display: block;
}

/* App Download Section */
.app-download {
  padding: 80px 0;
  background-color: var(--card-color);
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.download-text {
  max-width: 600px;
  text-align: center;
}

.download-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.download-description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.download-button {
  display: block;
  transition: transform 0.3s ease;
  max-width: 180px;
}

.download-button:hover {
  transform: translateY(-3px);
}

.coming-soon {
  position: relative;
  max-width: 180px;
}

.store-img {
  width: 100%;
  height: auto;
  opacity: 0.7;
}

.coming-soon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.download-image {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.download-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (min-width: 992px) {
  .app-features-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .how-step {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
  }

  .how-step.reverse {
    flex-direction: row-reverse;
  }

  .step-content {
    text-align: left;
    margin-bottom: 0;
  }

  .how-step.reverse .step-content {
    text-align: right;
  }

  .compatibility-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .download-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .download-text {
    text-align: left;
  }

  .download-buttons,
  .qr-container {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .app-hero-title {
    font-size: 2.5rem;
  }

  .app-hero-subtitle {
    font-size: 1.2rem;
  }

  .download-title {
    font-size: 1.8rem;
  }

  .download-description {
    font-size: 1rem;
  }

}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('img/img31.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.contact-hero-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: var(--body-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.contact-info {
  background-color: var(--card-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 40px;
  text-align: center;
}

.contact-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.contact-value {
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}

.contact-form-container {
  background-color: var(--card-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: var(--heading-color);
}

.form-input,
.form-textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-label {
  color: var(--text-color);
}

.form-link {
  color: var(--primary-color);
}

.form-submit {
  margin-top: 10px;
}

.form-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    align-items: stretch;
  }

  .contact-info,
  .contact-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .contact-details {
    flex-grow: 1;
    justify-content: center;
  }

  .form-btn {
    width: auto;
  }
}

@media (max-width: 767px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-subtitle {
    font-size: 1.2rem;
  }

  .logo-text {
    font-size: 1.2rem !important;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--body-color);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
}

.testimonial-slides {
  position: relative;
  height: 320px;
  /* Fixed height to prevent layout shifting */
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-card {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.author-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.slider-controls {
  display: none;
  text-align: center;
  margin-top: 30px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-slides {
    height: 380px;
    /* Adjusted for smaller screens */
  }

  .testimonial-card {
    padding: 25px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-slides {
    height: 440px;
    /* Further adjusted for mobile */
  }
}

/* App and Contact Promo Sections */
.app-promo {
  padding: 80px 0;
  background-color: var(--body-color);
}

.contact-promo {
  padding: 80px 0;
  background-color: var(--card-color);
}

.promo-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.promo-content {
  max-width: 550px;
  text-align: center;
}

.promo-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.promo-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 25px;
}

.promo-btn {
  min-width: 150px;
}

.promo-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.promo-image:hover .promo-img {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .promo-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .promo-container.reverse {
    flex-direction: row-reverse;
  }

  .promo-content {
    text-align: left;
  }

  .promo-container.reverse .promo-content {
    text-align: right;
  }
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 1.8rem;
  }

  .promo-description {
    font-size: 1rem;
  }
}

/* Basketball Specific Styles */

/* Common Basketball Styles */
.bball-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.bball-header:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.bball-title {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.bball-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Basketball Intro Section */
.bball-intro {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--body-color) 0%, #ffffff 100%);
}

.bball-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.bball-text-block {
  max-width: 600px;
}

.bball-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

.bball-key-points {
  margin-top: 30px;
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bball-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.bball-point:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.bball-point-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bball-point-text {
  margin: 0;
  color: var(--text-color);
  font-size: 1.05rem;
}

.bball-image-container {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.bball-image-container:before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

.bball-image-container:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background-color: var(--accent-color);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
}

.bball-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
}

/* Basketball Guide Section */
.bball-guide {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.bball-guide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, var(--body-color) 0%, #ffffff 100%);
}

.bball-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.bball-step-card {
  display: flex;
  gap: 20px;
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.bball-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bball-step-num {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bball-step-content {
  flex-grow: 1;
}

.bball-step-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.bball-step-text {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.bball-visual {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.bball-guide-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Basketball Scoring Section */
.bball-scoring {
  padding: 100px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
  position: relative;
}

.bball-scoring .bball-title,
.bball-scoring .bball-subtitle {
  color: var(--text-light);
}

.bball-scoring .bball-header:after {
  background: var(--accent-color);
}

.bball-score-container {
  max-width: 1000px;
  margin: 0 auto;
}

.bball-score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.bball-score-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.bball-score-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bball-score-category {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-color);
}

.bball-score-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bball-score-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.bball-score-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bball-score-action {
  font-size: 0.95rem;
  padding-right: 10px;
}

.bball-score-value {
  font-weight: 700;
  color: var(--accent-color);
}

.bball-score-note {
  text-align: center;
  margin-top: 40px;
  opacity: 0.8;
  font-size: 0.95rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Basketball Strategy Section */
.bball-strategy {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  position: relative;
}

.bball-strategy:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, transparent 100%);
  opacity: 0.2;
}

.bball-strategy-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bball-strategy-visual {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bball-strategy-img {
  width: 100%;
  height: auto;
  display: block;
}

.bball-tips-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.bball-tip-box {
  display: flex;
  gap: 20px;
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bball-tip-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bball-tip-num {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bball-tip-inner {
  flex-grow: 1;
}

.bball-tip-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.bball-tip-text {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

/* Media Queries */
@media (min-width: 1092px) {
  .bball-content-wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .bball-strategy-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .bball-title {
    font-size: 2rem;
  }

  .bball-subtitle {
    font-size: 1.1rem;
  }

  .bball-step-card {
    padding: 20px;
  }

  .bball-step-num {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .bball-score-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .bball-intro,
  .bball-guide,
  .bball-scoring,
  .bball-strategy {
    padding: 70px 0;
  }

  .bball-point {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bball-step-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Cricket Specific Styles */

/* Common Cricket Styles */
.cric-section-head {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.cric-section-head:after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  margin: 15px auto 0;
  border-radius: 3px;
}

.cric-heading {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.cric-subheading {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Cricket Banner Section */
.cric-banner {
  /* background-image: url(img/cr16.jpeg); */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
}

.cric-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.75);
}

.cric-banner:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,64L120,53.3C240,43,480,21,720,21.3C960,21,1200,43,1320,53.3L1440,64L1440,100L1320,100C1200,100,960,100,720,100C480,100,240,100,120,100L0,100Z"></path></svg>');
  background-size: cover;
  background-position: center top;
}

.cric-banner-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.cric-banner-title {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cric-banner-subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Cricket About Section */
.cric-about {
  padding: 80px 0;
  background-color: #ffffff;
}

.cric-flex-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.cric-description {
  max-width: 600px;
}

.cric-para {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

.cric-keypoints {
  background-color: #f7f9fc;
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.cric-keypoint {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.cric-keypoint:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cric-point-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cric-point-text {
  margin: 0;
  color: var(--text-color);
  font-size: 1.05rem;
}

.cric-showcase {
  width: 100%;
  max-width: 550px;
  position: relative;
}

.cric-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.cric-showcase:before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80%;
  height: 80%;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 10px;
  z-index: 0;
}

/* Cricket How To Section */
.cric-howto {
  padding: 100px 0;
  background-color: #f7f9fc;
  position: relative;
}

.cric-howto:before,
.cric-howto:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
}

.cric-howto:before {
  top: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,64L120,53.3C240,43,480,21,720,21.3C960,21,1200,43,1320,53.3L1440,64L1440,0L1320,0C1200,0,960,0,720,0C480,0,240,0,120,0L0,0Z"></path></svg>');
  background-size: cover;
}

.cric-howto:after {
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%232c3e50" d="M0,64L120,53.3C240,43,480,21,720,21.3C960,21,1200,43,1320,53.3L1440,64L1440,100L1320,100C1200,100,960,100,720,100C480,100,240,100,120,100L0,100Z"></path></svg>');
  background-size: cover;
}

.cric-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.cric-step-process {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
}

.cric-step {
  display: flex;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cric-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cric-step:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.cric-step-ball {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #e67e22);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.cric-step-info {
  flex-grow: 1;
}

.cric-step-heading {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.cric-step-info-text {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.cric-step-visual {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.cric-step-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Cricket Scoring Section */
.cric-scoring {
  padding: 100px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
  position: relative;
}

.cric-scoring .cric-heading,
.cric-scoring .cric-subheading {
  color: var(--text-light);
}

.cric-scoring .cric-section-head:after {
  background: linear-gradient(to right, var(--accent-color), var(--primary-light));
}

.cric-scoring-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cric-scoring-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.cric-score-category {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.cric-score-category:hover {
  transform: rotateX(5deg) rotateY(5deg) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cric-category-name {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-color);
}

.cric-points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cric-point-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.cric-point-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cric-action {
  font-size: 0.95rem;
  padding-right: 10px;
}

.cric-point-value {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cric-scoring-note {
  text-align: center;
  margin-top: 40px;
  opacity: 0.8;
  font-size: 0.95rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cricket Strategy Section */
.cric-strategy {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.cric-strategy-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.cric-strategy-visual {
  width: 100%;
  max-width: 500px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.cric-strategy-visual:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cric-strategy-image {
  width: 100%;
  height: auto;
  display: block;
}

.cric-tips-collection {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.cric-tip-item {
  display: flex;
  gap: 20px;
  background-color: #f7f9fc;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cric-tip-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cric-tip-item:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 5px;
  background: linear-gradient(to left, var(--accent-color), transparent);
}

.cric-tip-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cric-tip-content {
  flex-grow: 1;
}

.cric-tip-heading {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.cric-tip-detail {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

/* Media Queries */
@media (min-width: 1092px) {
  .cric-flex-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .cric-steps-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .cric-strategy-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .cric-heading {
    font-size: 2.2rem;
  }

  .cric-subheading {
    font-size: 1.1rem;
  }

  .cric-banner-title {
    font-size: 2.8rem;
  }

  .cric-banner-subtitle {
    font-size: 1.2rem;
  }

  .cric-step {
    padding: 20px;
  }

  .cric-step-ball {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .cric-scoring-categories {
    grid-template-columns: 1fr;
  }

  .cric-score-category:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .cric-keypoint {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cric-step {
    flex-direction: column;
    align-items: flex-start;
  }
}









.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Header Styles */
.header {
  background-color: var(--secondary-color);
  color: var(--text-light);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  display: block;
}

.nav-link:hover {
  color: var(--accent-color);
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.7em;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--secondary-light);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 15px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  position: absolute;
  transition: all 0.3s ease;
}

.nav-toggle-icon {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
}

.nav-toggle-icon::before {
  top: -8px;
}

.nav-toggle-icon::after {
  bottom: -8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--secondary-color);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
  font-family: var(--font-headings);
  color: var(--accent-color);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list {
  padding: 20px;
}

.mobile-nav-item {
  margin-bottom: 15px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 0;
  font-weight: 500;
}

.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-toggle::after {
  content: '+';
  font-size: 1.2rem;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  content: '-';
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  margin-top: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-item {
  display: block;
  padding: 8px 0;
}

/* Новые стили для футера */
.footer {
  background: linear-gradient(135deg, #1a2639 0%, #0d1117 100%);
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.footer-logo::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6b35;
  border-radius: 3px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1);
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(90deg, #ff6b35 0%, #f7c59f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  margin-top: 15px;
}

.footer-tagline {
  font-size: 1.1rem;
  color: #a0a0a0;
  font-style: italic;
  max-width: 80%;
  margin: 0 auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-content: center;
  justify-items: center;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff6b35;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ff6b35;
  border-radius: 2px;
}

.footer-nav-link {
  display: block;
  margin-bottom: 12px;
  color: #c0c0c0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.footer-contact-item+.footer-contact-item {
  margin-left: 0;
  margin-top: 5px;
}

.footer-contact-icon {
  font-size: 1.4rem;
  background: rgba(255, 107, 53, 0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ff6b35;
  flex-shrink: 0;
}

.footer-contact-link,
.footer-contact-text {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-text .footer-contact-link {
  color: #000;
}

.contact-text .footer-contact-link:hover {
  color: #ff6b35;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 0;
  position: relative;
}

.footer-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(255, 107, 53, 0) 0%,
      rgba(255, 107, 53, 0.5) 50%,
      rgba(255, 107, 53, 0) 100%);
}

.footer-disclaimer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-disclaimer-text {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-compliance {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  position: relative;
}

.footer-compliance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%);
}

.footer-compliance-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-compliance-link {
  transition: transform 0.3s ease;
}

.footer-compliance-link:hover {
  transform: translateY(-5px);
}

.footer-compliance-img,
.footer-age-img {
  height: 50px;
  width: auto;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.footer-compliance-img:hover,
.footer-age-img:hover {
  filter: grayscale(0%);
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.footer-copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%);
}

.footer-copyright-text {
  font-size: 0.9rem;
  color: #808080;
}

@media (min-width: 768px) {
  .footer-contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-contact-item {
    width: auto;
  }

  .footer-disclaimer-text {
    text-align: left;
  }

}

@media (min-width: 1068px) {
  .footer-grid {
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
  }

  .footer-brand {
    padding-right: 40px;
    text-align: left;
    align-items: flex-start;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .footer-logo::after {
    left: 0;
    transform: none;
  }

  .footer-nav {
    gap: 60px;
  }

  .footer-tagline {
    margin: 0;
  }

  .footer-contact {
    margin-top: 40px;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-contact-item {
    flex-direction: column;
  }

}





.white {
  color: #fff;
}

.black {
  color: #000;
}

html,
body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  flex-shrink: 0;
}

main {
  flex: 1;
  padding-top: 60px;
}

footer {
  flex-shrink: 0;
  padding: 10px;
  text-align: center;
}

.term h2 {
  margin-bottom: 10px;
}

.term h1 {
  margin: 30px 0;
  text-align: center;
}

.term p {
  margin-bottom: 30px;
}

.disclaimer h5 {
  font-weight: 600;
}

.disclaimer p {
  margin-top: 10px;
}

.disclaimer {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  color: var(--footer-header-text);
  margin-bottom: 10px;
  padding: 10px 0;
}

.center {
  text-align: center;
}

.btn-pad-top {
  margin-top: 30px;
}