<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Unbounded";
  src: url("fonts/Unbounded/Unbounded-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Asap";
  src: url("fonts/Asap/Asap-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: #ff9e00; /* main color */
  --secondary-color: #1e293b; /* secondary colors */
  --additional-color: #3b82f6; /* for additional porposes */
  --accent-color: #10b981; /* for accents*/
  --body-color: #f8fafc; /* Light background */
  --font-body: "Asap", sans-serif; /* Modern, clean sans-serif font */
  --font-headings: "Unbounded", sans-serif; /* Bold, impactful sans-serif font */
  --heading-color: #1e293b; /* For headers */
  --text-color: #334155; /* For text */
  --text-color-second: #f8fafc; /* For text on dark backgrounds */
  --footer-header-bg: #1e293b; /* For footer headers */
  --footer-header-text: #f8fafc; /* For footer header text */
}
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;
}

:root {
  --primary-color: #8e2de2; /* Purple main color */
  --primary-light: #b06ee1; /* Lighter purple */
  --secondary-color: #161a30; /* Dark blue/navy */
  --secondary-light: #31375c; /* Lighter navy */
  --accent-color: #00dbde; /* Cyan accent */
  --accent-secondary: #fc00ff; /* Magenta accent */
  --body-color: #f9f9f9; /* Light background */
  --card-color: #ffffff; /* Card background */
  --font-body: "Asap", sans-serif; /* Modern, clean sans-serif font */
  --font-headings: "Unbounded", sans-serif; /* Bold, impactful sans-serif font */
  --heading-color: #161a30; /* For headers */
  --text-color: #333747; /* For text */
  --text-muted: #64748b; /* For muted text */
  --text-light: #f9f9f9; /* For text on dark backgrounds */
  --border-color: #e2e8f0; /* For borders */
  --success: #10b981; /* Success green */
  --error: #ef4444; /* Error red */
  --warning: #f59e0b; /* Warning yellow */
  --info: #3b82f6; /* Info blue */
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--body-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Common Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--text-light);
  border: none;
}

.btn--primary:hover {
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(142, 45, 226, 0.2);
  color: var(--text-light);
}

.btn--secondary {
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  color: var(--text-light);
  border: none;
}

.btn--secondary:hover {
  background: linear-gradient(
    90deg,
    var(--accent-secondary),
    var(--accent-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 219, 222, 0.2);
  color: var(--text-light);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--secondary-color);
  padding: 6rem 0;
  color: var(--text-light);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(142, 45, 226, 0.6),
    rgba(0, 219, 222, 0.2)
  );
  z-index: 1;
}

.hero__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

.feature-card__icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
}

.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.feature-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
  position: relative;
  overflow: hidden;
}

.how-it-works:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.1) 0%,
    rgba(0, 219, 222, 0.05) 70%,
    transparent 100%
  );
  top: -100px;
  left: -100px;
  z-index: 0;
}

.how-it-works:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 219, 222, 0.1) 0%,
    rgba(142, 45, 226, 0.05) 70%,
    transparent 100%
  );
  bottom: -50px;
  right: -50px;
  z-index: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step {
  background-color: var(--card-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(142, 45, 226, 0.15);
}

.step:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-color);
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.2);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.step__number:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  z-index: -1;
  border-radius: 50%;
}

.step__content {
  width: 100%;
}

.step__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.step__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-it-works__cta {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Games Showcase Section */
.games-showcase {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.game-card__image {
  height: 200px;
  overflow: hidden;
}

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

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

.game-card__content {
  padding: 1.5rem;
}

.game-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.game-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.game-card__link {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 2px;
}

.game-card__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.game-card__link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.games-showcase__cta {
  text-align: center;
}

/* App Promotion Section */
.app-promo {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  color: var(--text-light);
}

.app-promo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.app-promo__title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.app-promo__text {
  font-size: 1.1rem;
  color: #fff !important;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.app-promo__features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.app-promo__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-promo__feature svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.app-promo__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-btn:hover {
  transform: translateY(-5px);
}

.app-btn__img {
  height: 50px;
  width: auto;
}

.app-promo__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

/* Media Queries */
@media (min-width: 868px) {
  .hero__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero__content {
    flex: 1;
  }

  .hero__image {
    flex: 1;
  }

  .app-promo__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero__title {
    font-size: 3.25rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 4rem 0;
  }

  .hero__title {
    font-size: 2.25rem;
  }

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

  .feature-card {
    padding: 1.5rem;
  }

  .step__number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .app-promo__title {
    font-size: 2rem;
  }
  .footer__brand-name {
    font-size: 1.2rem !important;
  }
}

/* Additional Button Styles */
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Stats Section */
.stats {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-card__number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stat-card__text {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Join Community Section */
.community {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.community__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.community__title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.community__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.community__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

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

.community__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.community__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(142, 45, 226, 0.2),
    rgba(0, 219, 222, 0.1)
  );
  z-index: 1;
}

.community__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Skill Development Section */
.skill-dev {
  padding: 5rem 0;
  background-color: #f0f4f8;
}

.skill-dev__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

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

.resource-card__image {
  height: 200px;
  overflow: hidden;
}

.resource-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.resource-card:hover .resource-card__img {
  transform: scale(1.05);
}

.resource-card__content {
  padding: 1.5rem;
}

.resource-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.resource-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.resource-card__link {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 2px;
}

.resource-card__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.resource-card__link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

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

.faq-item__question {
  padding: 1.5rem;
  background-color: var(--card-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item__question h3 {
  font-size: 1.1rem;
  margin: 0;
  margin-right: 10px ;
  font-weight: 600;
}

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

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

.faq-item__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq__more {
  margin-top: 2.5rem;
  text-align: center;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--text-light);
}

.newsletter__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.newsletter__form {
  width: 100%;
}

.newsletter__input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter__input {
  flex-grow: 1;
  padding: 1rem;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  color: var(--text-color);
}

.newsletter__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter__button {
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter__button:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
}

.newsletter__disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Call to Action Section */
.cta {
  padding: 5rem 0;
  background: url("img/img10.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(142, 45, 226, 0.9),
    rgba(0, 219, 222, 0.8)
  );
}

.cta__container {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Media Queries */
@media (min-width: 868px) {
  .community__container {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .newsletter__input-group {
    flex-direction: row;
  }

  .community__cta {
    flex-direction: row;
    align-items: center;
  }
}

/* JavaScript Classes for FAQ */
.faq-item.active {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  padding: 5rem 0;
  text-align: center;
  color: var(--text-light);
}

.about-hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.our-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.our-story__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.our-story__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.our-story__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values Section with Tabs */
.values {
  padding: 5rem 0;
  background-color: #f0f4f8;
}

.tabs {
  margin-top: 3rem;
}

.tabs__header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--card-color);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: rgba(142, 45, 226, 0.1);
  color: var(--primary-color);
}

.tab-btn.active {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

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

.tab-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.tab-panel__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.tab-panel__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tab-panel__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-panel__img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team Section */
.team {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.team-member__image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-member__image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.team-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__info {
  padding: 1.5rem;
}

.team-member__name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.team-member__position {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member__bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Milestones Section */
.milestones {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem 0;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  background-color: var(--card-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.2);
  position: relative;
  z-index: 1;
  margin: 0 auto 1.5rem;
}

.timeline-item__content {
  background-color: var(--card-color);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-item__content:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 15px 15px 15px;
  border-style: solid;
  border-color: transparent transparent var(--card-color) transparent;
}

.timeline-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.timeline-item__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.contact-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta__title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.contact-cta__text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Media Queries */
@media (min-width: 868px) {
  .our-story__grid {
    grid-template-columns: 1fr 1fr;
  }

  .tab-panel__grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .timeline-item:nth-child(odd) .timeline-item__year {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    margin: 0;
  }

  .timeline-item:nth-child(odd) .timeline-item__content {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-item:nth-child(even) .timeline-item__year {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    margin: 0;
  }

  .timeline-item:nth-child(even) .timeline-item__content {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-item:nth-child(odd) .timeline-item__content:before {
    left: -15px;
    top: 20px;
    transform: none;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--card-color) transparent transparent;
  }

  .timeline-item:nth-child(even) .timeline-item__content:before {
    left: auto;
    right: -15px;
    top: 20px;
    transform: none;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--card-color);
  }
}

@media (max-width: 767px) {
  .tabs__header {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 80%;
  }

  .timeline:before {
    left: 20px;
  }

  .timeline-item__year {
    justify-self: start;
    margin-left: 40px;
    margin-bottom: 1rem;
    text-align: left;
  }

  .timeline-item__content:before {
    left: 20px;
    transform: none;
  }
}
/* Awards Section */
.awards {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.award-card {
  background-color: var(--card-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding: 2rem;
  padding-top: 3rem;
}

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

.award-card__badge {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 1.5rem;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
}

.award-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.award-card__org {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.award-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Work Culture Section */
.work-culture {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
}

.work-culture__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.work-culture__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.culture-value {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.culture-value__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.culture-value__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.culture-value__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-culture__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.work-culture__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Technology Stack Section */
.tech-stack {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.tech-stack__container {
  margin-top: 3rem;
}

.tech-category {
  margin-bottom: 2.5rem;
}

.tech-category:last-child {
  margin-bottom: 0;
}

.tech-category__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.tech-category__title:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
}

.tech-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  background-color: var(--card-color);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-item__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.tech-item__bar {
  height: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
}

.tech-item__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
  transition: width 1.5s ease;
}

/* Corporate Social Responsibility Section */
.csr {
  padding: 5rem 0;
  background-color: #f0f4f8;
}

.csr__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.csr__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.csr__initiatives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.csr__initiative {
  background-color: var(--card-color);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.csr__initiative:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.csr__initiative-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.csr__initiative-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.csr__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  order: 2;
}

.csr__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (min-width: 868px) {
  .work-culture__container {
    grid-template-columns: 1fr 1fr;
  }

  .csr__container {
    grid-template-columns: 1fr 1fr;
  }

  .csr__image {
    order: 0;
  }

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

/* Animation for Tech Progress Bars */
.tech-item__progress {
  width: 0;
  animation: progressAnimation 1.5s ease-out forwards;
}

@keyframes progressAnimation {
  from {
    width: 0;
  }
  to {
    width: var(--progress-width);
  }
}

/* Animation for awards */
.award-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.award-card:nth-child(1) {
  animation-delay: 0.1s;
}

.award-card:nth-child(2) {
  animation-delay: 0.2s;
}

.award-card:nth-child(3) {
  animation-delay: 0.3s;
}

.award-card:nth-child(4) {
  animation-delay: 0.4s;
}

.award-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for CSR initiatives */
.csr__initiative {
  animation: slideInLeft 0.5s ease-out forwards;
  opacity: 0;
}

.csr__initiative:nth-child(1) {
  animation-delay: 0.1s;
}

.csr__initiative:nth-child(2) {
  animation-delay: 0.2s;
}

.csr__initiative:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive design improvements */
@media (max-width: 576px) {
  .tech-category__grid {
    grid-template-columns: 1fr;
  }

  .awards__grid {
    grid-template-columns: 1fr;
  }

  .culture-values {
    grid-template-columns: 1fr;
  }

  .award-card__badge {
    right: 50%;
    transform: translate(50%, -50%);
  }
}

/* Print styles */
@media print {
  .award-card,
  .culture-value,
  .tech-item,
  .csr__initiative {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .section-title {
    page-break-after: avoid;
  }

  .award-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .work-culture__image,
  .csr__image {
    max-width: 300px;
  }
}

/* How to Play Hero Section */
.how-hero {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  padding: 5rem 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.how-hero:before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.3) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  transform: rotate(-20deg);
}

.how-hero:after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(0, 219, 222, 0.3) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  transform: rotate(20deg);
}

.how-hero__content {
  position: relative;
  z-index: 2;
}

.how-hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.how-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Getting Started Section */
.getting-started {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.process-card__number {
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  opacity: 0.1;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.process-card:hover .process-card__number {
  opacity: 0.2;
  transform: scale(1.1);
}

.process-card__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.process-card__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.process-card:hover .process-card__title:after {
  width: 80px;
}

.process-card__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.getting-started__cta {
  margin-top: 3rem;
  text-align: center;
}

/* Mobile App Section */
.mobile-app {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
  position: relative;
  overflow: hidden;
}

.mobile-app:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -100px;
  left: -100px;
  z-index: 0;
}

.mobile-app:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 219, 222, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  bottom: -50px;
  right: -50px;
  z-index: 0;
}

.mobile-app__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mobile-app__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mobile-app__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.feature-item__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mobile-app__cta {
  margin-top: 1rem;
}

.mobile-app__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-app__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Strategy Tips Section */
.strategy-tips {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.tip-card__header {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  padding: 1.5rem;
  color: var(--text-light);
}

.tip-card__title {
  font-size: 1.25rem;
  margin: 0;
  color: #fff !important;
}

.tip-card__content {
  padding: 1.5rem;
}

.tip-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tip-card__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tip-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.tip-card__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.tip-card__list li:last-child {
  margin-bottom: 0;
}

/* Common Mistakes Section */
.common-mistakes {
  padding: 5rem 0;
  background-color: #f0f4f8;
  position: relative;
  overflow: hidden;
}

.common-mistakes:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/pattern.png") center/cover repeat;
  opacity: 0.05;
}

.mistakes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.mistake-item {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mistake-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mistake-item__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.mistake-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.mistake-item__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Advanced Concepts Section */
.advanced-concepts {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.accordion {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.accordion-header {
  padding: 1.5rem;
  background-color: var(--card-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.accordion-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item.active .accordion-header:before {
  opacity: 1;
}

.accordion-title {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

.concept-details {
  background-color: rgba(142, 45, 226, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.concept-details h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--heading-color);
}

.concept-details ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.concept-details li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.concept-details li:last-child {
  margin-bottom: 0;
}

/* Community Learning Section */
.community-learning {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  color: var(--text-light);
}

.community-learning__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.community-learning__text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.community-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.community-feature {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.community-feature:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.community-feature__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.community-feature__text {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.community-learning__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

/* Tools and Resources Section */
.tools-resources {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.resource-block__icon {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
}

.resource-block__content {
  padding: 0 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-block__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.resource-block__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-block__link {
  align-self: flex-start;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 2px;
}

.resource-block__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.resource-block__link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #f0f4f8;
}

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

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

.faq-question {
  padding: 1.5rem;
  background-color: var(--card-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

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

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Getting Help Section */
.getting-help {
  padding: 5rem 0;
  background: url("img/img24.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.getting-help:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(142, 45, 226, 0.9),
    rgba(0, 219, 222, 0.8)
  );
}

.getting-help__container {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.getting-help__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.getting-help__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.getting-help__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Media Queries */
@media (min-width: 868px) {
  .mobile-app__container {
    grid-template-columns: 1fr 1fr;
  }

  .community-learning__container {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 767px) {
  .how-hero__title {
    font-size: 2.25rem;
  }

  .process-card__number {
    font-size: 3rem;
  }

  .getting-help__title {
    font-size: 2rem;
  }

  .getting-help__text {
    font-size: 1.1rem;
  }
}

/* Animation classes for JavaScript */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print styles for better readability when printed */
@media print {
  .how-hero,
  .mobile-app,
  .common-mistakes,
  .community-learning,
  .getting-help {
    background: none !important;
    color: #000 !important;
  }

  .how-hero:before,
  .how-hero:after,
  .mobile-app:before,
  .mobile-app:after,
  .common-mistakes:before,
  .getting-help:before {
    display: none;
  }

  .how-hero__title,
  .section-title {
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
  }

  .process-card,
  .feature-item,
  .tip-card,
  .mistake-item,
  .accordion-item,
  .resource-block {
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .tip-card__header {
    background: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    color: #000 !important;
  }

  .accordion-content {
    max-height: none !important;
    padding: 0 1.5rem 1.5rem !important;
  }

  .faq-answer {
    max-height: none !important;
    padding: 0 1.5rem 1.5rem !important;
  }

  .getting-help__buttons {
    display: none;
  }
}

/* Additional hover effects */
.tip-card__header {
  position: relative;
  overflow: hidden;
}

.tip-card__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
  transform: skewX(-15deg);
}

.tip-card:hover .tip-card__header:before {
  transform: skewX(-15deg) translateX(200%);
}

/* Focus styles for accessibility */
.process-card:focus-within,
.feature-item:focus-within,
.tip-card:focus-within,
.mistake-item:focus-within,
.accordion-header:focus,
.resource-block:focus-within,
.faq-question:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Games Hero Section */
.games-hero {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  padding: 6rem 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.games-hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("img/pattern.png") center/cover repeat;
  opacity: 0.05;
}

.games-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.games-hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.games-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Games Collection Section */
.games-collection {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.game-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.game-card__image {
  height: 200px;
  overflow: hidden;
}

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

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

.game-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.game-card__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* What is Fantasy Section */
.what-is-fantasy {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
  position: relative;
  overflow: hidden;
}

.what-is-fantasy:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -100px;
  left: -100px;
  z-index: 0;
}

.what-is-fantasy:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 219, 222, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  bottom: -50px;
  right: -50px;
  z-index: 0;
}

.what-is-fantasy__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.what-is-fantasy__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.fantasy-point {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fantasy-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fantasy-point__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.fantasy-point__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
}

.fantasy-point__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.what-is-fantasy__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.what-is-fantasy__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Fantasy Section */
.why-fantasy {
  padding: 5rem 0;
  background-color: var(--body-color);
}

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

.benefit-card {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.benefit-card__number {
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  opacity: 0.1;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card__number {
  opacity: 0.2;
  transform: scale(1.1);
}

.benefit-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.benefit-card__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.benefit-card:hover .benefit-card__title:after {
  width: 80px;
}

.benefit-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Featured Games Section */
.featured-games {
  padding: 5rem 0;
  background-color: #f0f4f8;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.featured-game {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 1fr;
}

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

.featured-game__image {
  height: 300px;
  overflow: hidden;
}

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

.featured-game:hover .featured-game__img {
  transform: scale(1.05);
}

.featured-game__content {
  padding: 2rem;
}

.featured-game__title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.featured-game__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-game__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.featured-game__feature {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.games-cta {
  padding: 5rem 0;
  background: url("img/img25.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.games-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(142, 45, 226, 0.9),
    rgba(0, 219, 222, 0.8)
  );
}

.games-cta__container {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.games-cta__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.games-cta__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Media Queries */
@media (min-width: 868px) {
  .what-is-fantasy__container {
    grid-template-columns: 1fr 1fr;
  }

  .featured-game {
    grid-template-columns: 1fr 2fr;
  }

  .featured-game__image {
    height: auto;
  }
}

@media (min-width: 992px) {
  .games-cta__title {
    font-size: 3rem;
  }

  .games-cta__text {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .games-hero__title {
    font-size: 2.5rem;
  }

  .benefit-card__number {
    font-size: 3rem;
  }

  .featured-game__title {
    font-size: 1.5rem;
  }

  .featured-game__features {
    justify-content: center;
  }
}

/* Animation classes for JavaScript */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional hover effects */
.game-card .btn--secondary {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Fantasy Cricket Page Styles */

/* Cricket Hero Section */
.cricket-hero {
  background: url("img/cr9.jpeg") center/cover no-repeat;
  padding: 8rem 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

.cricket-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(22, 26, 48, 0.85),
    rgba(49, 55, 92, 0.85)
  );
}

.cricket-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cricket-hero__title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cricket-hero__subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* What is Cricket Section */
.what-is-cricket {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.what-is-cricket__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.what-is-cricket__text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.what-is-cricket__text:last-child {
  margin-bottom: 0;
}

.what-is-cricket__image {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.what-is-cricket__img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Play Section */
.how-to-play {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
  position: relative;
  overflow: hidden;
}

.how-to-play:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -100px;
  left: -100px;
  z-index: 0;
}

.how-to-play:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 219, 222, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  bottom: -50px;
  right: -50px;
  z-index: 0;
}

.steps-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  z-index: 1;
}

.cricket-step {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
}

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

.cricket-step:not(:last-child):before {
  content: "";
  position: absolute;
  left: 30px;
  height: calc(100% + 2.5rem);
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    rgba(142, 45, 226, 0.1)
  );
  z-index: 1;
}

.cricket-step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-secondary)
  );
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1.5rem;
  box-shadow: 0 10px 20px rgba(142, 45, 226, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cricket-step:hover .cricket-step__number {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(142, 45, 226, 0.3);
}

.cricket-step__content {
  padding-top: 0.25rem;
}

.cricket-step__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.cricket-step__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Rules Section */
.cricket-rules {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.rules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rule-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}

.rule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary-color);
}

.rule-card__header {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  padding: 1.5rem;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.rule-card__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-15deg);
  transition: transform 0.5s ease;
}

.rule-card:hover .rule-card__header:before {
  transform: skewX(-15deg) translateX(200%);
}

.rule-card__title {
  font-size: 1.25rem;
  margin: 0;
  color: #fff;
}

.rule-card__content {
  padding: 1.5rem;
  flex-grow: 1;
}

.scoring-category {
  margin-bottom: 1.5rem;
}

.scoring-category:last-child {
  margin-bottom: 0;
}

.scoring-category__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.5rem;
}

.scoring-category__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.rule-card__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.rule-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rule-card__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.rule-card__list li:last-child {
  margin-bottom: 0;
}

.rules-note {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1rem;
  background-color: rgba(142, 45, 226, 0.05);
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Tips Section */
.cricket-tips {
  padding: 5rem 0;
  background-color: #f0f4f8;
  position: relative;
}

.tips-slider {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.tips-track {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.cricket-tip {
  min-width: 100%;
  display: flex;
  padding: 0 1rem;
}

.cricket-tip__icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.tip-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.2);
}

.cricket-tip__content {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cricket-tip__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.cricket-tip:hover .cricket-tip__content:before {
  transform: scaleX(1);
}

.cricket-tip__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.cricket-tip__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tips-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.tips-control {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 1rem;
}

.tips-control:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

.tips-dots {
  display: flex;
}

.tips-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.25rem;
  background-color: rgba(142, 45, 226, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.tips-dot:hover {
  background-color: var(--primary-light);
}

/* Boosters Section */
.cricket-boosters {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.boosters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.booster-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.booster-card__image {
  height: 200px;
  overflow: hidden;
}

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

.booster-card:hover .booster-card__img {
  transform: scale(1.05);
}

.booster-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  position: relative;
}

.booster-card__content:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.booster-card:hover .booster-card__content:before {
  transform: scaleX(1);
  transform-origin: left;
}

.booster-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.booster-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Glowing Button */
.glow-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    var(--primary-color)
  );
  background-size: 200% auto;
  color: var(--text-light);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
  transition: all 0.3s ease;
  animation: glow 1.5s ease-in-out infinite alternate,
    gradient-shift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

.glow-button:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--primary-color),
    var(--accent-color)
  );
  background-size: 200% auto;
  z-index: -1;
  border-radius: 50px;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradient-shift 3s ease infinite;
}

.glow-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-15deg);
  transition: transform 0.5s ease;
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(142, 45, 226, 0.5);
  color: var(--text-light);
  text-decoration: none;
}

.glow-button:hover:before {
  opacity: 1;
}

.glow-button:hover:after {
  transform: skewX(-15deg) translateX(200%);
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(142, 45, 226, 0.3),
      0 0 10px rgba(142, 45, 226, 0.3);
  }
  to {
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.5),
      0 0 20px rgba(142, 45, 226, 0.5), 0 0 30px rgba(142, 45, 226, 0.3);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* CTA Section */
.cricket-cta {
  padding: 5rem 0;
  background: url("img/cr10.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.cricket-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(142, 45, 226, 0.9),
    rgba(0, 219, 222, 0.8)
  );
}

.cricket-cta__container {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cricket-cta__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cricket-cta__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (min-width: 868px) {
  .what-is-cricket__container {
    grid-template-columns: 1fr 1fr;
  }

  .cricket-step__content {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .cricket-hero__title {
    font-size: 3rem;
  }

  .cricket-hero__subtitle {
    font-size: 1.25rem;
  }

  .cricket-step {
    flex-direction: column;
  }

  .cricket-step__number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cricket-step:not(:last-child):before {
    left: 30px;
    top: 60px;
    display: none;
    height: calc(100% + 2.5rem - 60px);
  }
  .basketball-step:not(:last-child):before {
    display: none !important;
  }

  .cricket-tip {
    flex-direction: column;
  }

  .cricket-tip__icon {
    margin-right: 0;
    margin-bottom: 1rem;
    padding-top: 0;
  }

  .cricket-cta__title {
    font-size: 2rem;
  }

  .cricket-cta__text {
    font-size: 1.1rem;
  }
}

/* Accessibility Focus Styles */
.rule-card:focus-within,
.cricket-tip__content:focus-within,
.booster-card:focus-within,
.tips-control:focus,
.tips-dot:focus,
.glow-button:focus,
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Touch device optimizations */
@media (hover: none) {
  .cricket-step:hover .cricket-step__number,
  .rule-card:hover,
  .cricket-tip:hover .cricket-tip__content,
  .booster-card:hover {
    transform: none;
  }

  .glow-button {
    animation: glow 2s ease-in-out infinite alternate;
  }
}
/* Ð˜ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ‹Ðµ Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð° Ð´Ð»Ñ ÑÐµÐºÑ†Ð¸Ð¸ Rules */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.scoring-system {
  margin-top: 3rem;
  background-color: var(--card-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-top: 3px solid var(--primary-color);
}

.scoring-system__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.scoring-system__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
}

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

.scoring-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.scoring-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(142, 45, 226, 0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.scoring-list li:last-child {
  border-bottom: none;
}

.scoring-action {
  flex-grow: 1;
}

.scoring-points {
  font-weight: 600;
  color: var(--primary-color);
}

/* Ð£Ð»ÑƒÑ‡ÑˆÐµÐ½Ð½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÑÐµÐºÑ†Ð¸Ð¸ Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  padding: 2rem;
  padding-top: 3rem;
  border-top: 3px solid transparent;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary-color);
}

.tip-card__number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.1;
  transition: all 0.3s ease;
}

.tip-card:hover .tip-card__number {
  opacity: 0.2;
  transform: scale(1.1);
}

.tip-card__content {
  position: relative;
}

.tip-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.tip-card__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.tip-card:hover .tip-card__title:after {
  width: 80px;
}

.tip-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ÐœÐµÐ´Ð¸Ð°-Ð·Ð°Ð¿Ñ€Ð¾ÑÑ‹ */
@media (max-width: 767px) {
  .scoring-grid {
    grid-template-columns: 1fr;
  }

  .tip-card__number {
    font-size: 2rem;
  }
}

/* Fantasy Football Page Styles */

/* Football Hero Section */
.football-hero {
  background: url("img/fb13.jpeg") center/cover no-repeat;
  padding: 8rem 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

.football-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.9),
    rgba(59, 130, 246, 0.75)
  );
}

.football-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.football-hero__title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.football-hero__subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* What is Football Section */
.football-intro {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.football-intro__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.football-intro__text:last-child {
  margin-bottom: 0;
}

.football-intro__image {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.football-intro__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(59, 130, 246, 0.2)
  );
}

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

.football-intro__image:hover .football-intro__img {
  transform: scale(1.05);
}

/* How to Play Section */
.football-howto {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
  position: relative;
  color: var(--text-light);
  overflow: hidden;
}

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

.section-title--light {
  background: none;
  -webkit-text-fill-color: var(--text-light);
}

.play-steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.play-step {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-step:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.play-step__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.play-step__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 1rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 219, 222, 0.5);
}

.play-step__title {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-light);
}

.play-step__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Rules Section */
.football-rules {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.rules-tabs {
  margin-top: 3rem;
  background-color: var(--card-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.rules-tabs__header {
  display: flex;
  background-color: var(--secondary-color);
  padding: 0.5rem;
  border-radius: 10px 10px 0 0;
}

.tab-button {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
  flex-grow: 1;
  text-align: center;
}

.tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.rules-tabs__content {
  padding: 2rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.rules-grid {
  display: grid;
  gap: 2rem;
}

.rule-block {
  margin-bottom: 1.5rem;
}

.rule-block__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.5rem;
}

.rule-block__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.rule-block__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.rule-block__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rule-block__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.rule-block__list li:last-child {
  margin-bottom: 0;
}

/* Scoring System Styles */
.football-scoring {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.scoring-column__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.5rem;
}

/* Continuation of Football Styles */

.scoring-column__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.scoring-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.scoring-table tr {
  border-bottom: 1px solid rgba(142, 45, 226, 0.1);
  transition: background-color 0.3s ease;
}

.scoring-table tr:hover {
  background-color: rgba(142, 45, 226, 0.03);
}

.scoring-table tr:last-child {
  border-bottom: none;
}

.scoring-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.scoring-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

/* Strategy Tips Section */
.football-strategy {
  padding: 5rem 0;
  background-color: #f0f4f8;
  position: relative;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.strategy-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.strategy-card__icon {
  height: 180px;
  overflow: hidden;
}

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

.strategy-card:hover .strategy-card__img {
  transform: scale(1.05);
}

.strategy-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.strategy-card__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.strategy-card:hover .strategy-card__content:before {
  transform: scaleX(1);
}

.strategy-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.strategy-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* Boosters Section */
.football-boosters {
  padding: 5rem 0;
  background-color: var(--body-color);
}



/* Reusing booster-card styles from cricket.css */

/* CTA Section */
.football-cta {
  padding: 5rem 0;
  background: url("img/fb14.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.football-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.9),
    rgba(16, 185, 129, 0.8)
  );
}

.football-cta__container {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.football-cta__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.football-cta__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Animation for Tabs */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (min-width: 868px) {
  .football-intro__container {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 767px) {
  .football-hero__title {
    font-size: 3rem;
  }

  .football-hero__subtitle {
    font-size: 1.25rem;
  }

  .rules-tabs__header {
    flex-direction: column;
    padding: 0.5rem;
  }

  .tab-button {
    margin-bottom: 0.5rem;
  }

  .tab-button:last-child {
    margin-bottom: 0;
  }

  .football-scoring {
    grid-template-columns: 1fr;
  }

  .football-cta__title {
    font-size: 2rem;
  }

  .football-cta__text {
    font-size: 1.1rem;
  }
}

/* Floating Decoration Elements */
.football-howto:before,
.football-howto:after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.football-howto:before {
  width: 250px;
  height: 250px;
  top: -50px;
  left: -100px;
}

.football-howto:after {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -100px;
}

/* Enhanced hover effects for play steps */
.play-step:hover .play-step__number {
  transform: scale(1.1);
  color: var(--accent-secondary);
  text-shadow: 0 0 15px rgba(0, 219, 222, 0.7);
}

/* Tab focus styles for accessibility */
.tab-button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: -2px;
}

/* Focus styles for interactive elements */
.strategy-card:focus-within,
.play-step:focus-within,
.booster-card:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* Fantasy Basketball Page Styles */

/* Basketball Hero Section */
.basketball-hero {
  background: url("img/bb7.jpeg") center/cover no-repeat;
  padding: 8rem 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

.basketball-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(237, 100, 166, 0.85),
    rgba(59, 130, 246, 0.75)
  );
}

.basketball-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.basketball-hero__title {
  font-size: 4.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.basketball-hero__subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* What is Basketball Section - using similar layout to football/cricket */
.basketball-intro {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.basketball-intro__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.basketball-intro__text:last-child {
  margin-bottom: 0;
}

.basketball-intro__image {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.basketball-intro__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(237, 100, 166, 0.2)
  );
}

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

.basketball-intro__image:hover .basketball-intro__img {
  transform: scale(1.05);
}

/* How to Play Section - using cricket vertical timeline style */
.basketball-howto {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #feeaef);
  position: relative;
  overflow: hidden;
}

.basketball-howto:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(237, 100, 166, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -100px;
  left: -100px;
  z-index: 0;
}

.basketball-howto:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  bottom: -50px;
  right: -50px;
  z-index: 0;
}

.steps-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  z-index: 1;
}

.basketball-step {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
}

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

.basketball-step:not(:last-child):before {
  content: "";
  position: absolute;
  left: 30px;
  height: calc(100% + 2.5rem);
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    rgba(142, 45, 226, 0.1)
  );
  z-index: 1;
}

.basketball-step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ed64a6, #3b82f6);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1.5rem;
  box-shadow: 0 10px 20px rgba(237, 100, 166, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.basketball-step:hover .basketball-step__number {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(237, 100, 166, 0.3);
}

.basketball-step__content {
  padding-top: 0.25rem;
}

.basketball-step__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.basketball-step__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Rules Section - combining elements from both cricket and football */
.basketball-rules {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.rules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rule-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}

.rule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #ed64a6;
}

.rule-card__header {
  background: linear-gradient(90deg, #ed64a6, #3b82f6);
  padding: 1.5rem;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.rule-card__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-15deg);
  transition: transform 0.5s ease;
}

.rule-card:hover .rule-card__header:before {
  transform: skewX(-15deg) translateX(200%);
}

.rule-card__title {
  font-size: 1.25rem;
  margin: 0;
}

.rule-card__content {
  padding: 1.5rem;
  flex-grow: 1;
}

/* Scoring System styles - borrowed from football */
.scoring-system {
  margin-top: 3rem;
  background-color: var(--card-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-top: 3px solid #3b82f6;
}

.scoring-system__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.scoring-system__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ed64a6, #3b82f6);
  border-radius: 3px;
}

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

.scoring-column__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.5rem;
}

.scoring-column__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ed64a6, #3b82f6);
}

.scoring-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.scoring-table tr {
  border-bottom: 1px solid rgba(237, 100, 166, 0.1);
  transition: background-color 0.3s ease;
}

.scoring-table tr:hover {
  background-color: rgba(237, 100, 166, 0.03);
}

.scoring-table tr:last-child {
  border-bottom: none;
}

.scoring-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.scoring-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #ed64a6;
}

.rules-note {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1rem;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Tips Section - using cricket card layout */
.basketball-tips {
  padding: 5rem 0;
  background-color: #f0f4f8;
  position: relative;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background-color: var(--card-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  padding: 2rem;
  padding-top: 3rem;
  border-top: 3px solid transparent;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #3b82f6;
}

.tip-card__number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ed64a6;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.tip-card:hover .tip-card__number {
  opacity: 0.2;
  transform: scale(1.1);
}

.tip-card__content {
  position: relative;
}

.tip-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.tip-card__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ed64a6, #3b82f6);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.tip-card:hover .tip-card__title:after {
  width: 80px;
}

.tip-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Boosters Section - reusing styles from cricket/football */
.basketball-boosters {
  padding: 5rem 0;
  background-color: var(--body-color);
}

/* CTA Section */
.basketball-cta {
  padding: 5rem 0;
  background: url("img/bb8.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.basketball-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(237, 100, 166, 0.85),
    rgba(59, 130, 246, 0.75)
  );
}

.basketball-cta__container {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.basketball-cta__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.basketball-cta__text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Media Queries */
@media (min-width: 868px) {
  .basketball-intro__container {
    grid-template-columns: 1.5fr 1fr;
  }

  .basketball-step__content {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .basketball-hero__title {
    font-size: 3rem;
  }

  .basketball-hero__subtitle {
    font-size: 1.25rem;
  }

  .basketball-step {
    flex-direction: column;
  }

  .basketball-step__number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .basketball-step:not(:last-child):before {
    left: 30px;
    top: 60px;
    height: calc(100% + 2.5rem - 60px);
  }

  .scoring-grid {
    grid-template-columns: 1fr;
  }

  .tip-card__number {
    font-size: 2rem;
  }

  .basketball-cta__title {
    font-size: 2rem;
  }

  .basketball-cta__text {
    font-size: 1.1rem;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility Focus Styles */
.rule-card:focus-within,
.tip-card:focus-within,
.booster-card:focus-within {
  outline: 2px solid #ed64a6;
  outline-offset: 2px;
}

/* Touch device optimizations */
@media (hover: none) {
  .basketball-step:hover .basketball-step__number,
  .rule-card:hover,
  .tip-card:hover,
  .basketball-intro__image:hover .basketball-intro__img {
    transform: none;
  }
}

/* Mobile App Page Styles */

/* App Hero Section */
.app-hero {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.app-hero:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.2) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  top: -300px;
  left: -200px;
  z-index: 0;
}

.app-hero:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 219, 222, 0.2) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  bottom: -200px;
  right: -100px;
  z-index: 0;
}

.app-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.app-hero__content {
  text-align: center;
}

.app-hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.app-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.app-hero__buttons {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* App Download Buttons */
.app-download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-download-btn--google {
  background-color: #333;
}

.app-download-btn--apple {
  background-color: #000;
}

.app-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-download-btn__content {
  display: flex;
  flex-direction: column;
}

.app-download-btn__small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-download-btn__big {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Phone Mockup in Hero */
.app-hero__device {
  display: flex;
  justify-content: center;
}

.app-hero__phone {
  width: 280px;
  height: 570px;
  background-color: #000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.app-hero__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background-color: #000;
  border-radius: 0 0 15px 15px;
  z-index: 2;
}

.app-hero__phone-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.app-hero__phone-content {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* App Mockup Inside Phone */
.app-phone-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-phone-mockup__header {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-phone-mockup__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.app-phone-mockup__logo-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  border-radius: 5px;
}

.app-phone-mockup__nav {
  display: flex;
  gap: 0.5rem;
}

.app-phone-mockup__nav span {
  width: 20px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}

.app-phone-mockup__content {
  flex-grow: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #1a1e2e;
}

.app-phone-mockup__game-card {
  height: 120px;
  background: linear-gradient(
    45deg,
    var(--secondary-light),
    var(--secondary-color)
  );
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.app-phone-mockup__game-card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

.app-phone-mockup__game-card:nth-child(2):before {
  animation-delay: 0.5s;
}

.app-phone-mockup__game-card:nth-child(3):before {
  animation-delay: 1s;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.app-phone-mockup__footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  display: flex;
  justify-content: space-around;
}

.app-phone-mockup__footer span {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

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

.app-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.app-feature {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.app-feature__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.app-feature:hover .app-feature__icon {
  transform: scale(1.1) rotate(5deg);
}

.app-feature__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.app-feature__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* App Experience Section */
.app-experience {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4ff, #e6fbff);
  position: relative;
  overflow: hidden;
}

.app-experience__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-experience__features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.experience-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.experience-feature__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  flex-shrink: 0;
}

.experience-feature__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.experience-feature__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.app-experience__cta {
  margin-top: 2.5rem;
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ñ„Ð¾Ñ€Ð¼Ñ‹ */
.contact-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--body-color), #f0f4f8);
  position: relative;
  overflow: hidden;
}

.contact-form-section:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 45, 226, 0.1) 0%,
    rgba(0, 219, 222, 0.05) 70%,
    transparent 100%
  );
  top: -100px;
  left: -100px;
  z-index: 0;
}

.contact-form__container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form__title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-headings, "Poppins", sans-serif);
}

.contact-form__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.contact-form {
  background: var(--card-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid rgba(142, 45, 226, 0.2);
  font-size: 1rem;
  color: var(--secondary-color);
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(142, 45, 226, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.checkbox-group a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.checkbox-group a:hover {
  color: var(--accent-color);
}

.form-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.form-submit:hover {
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(142, 45, 226, 0.2);
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ */
@media (max-width: 767px) {
  .contact-form-section {
    padding: 3rem 0;
  }

  .contact-form__title {
    font-size: 2rem;
  }

  .contact-form__subtitle {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
  }

  .form-submit {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

.testimonials {
  padding: 5rem 0;
  background-color: var(--body-color);
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.slider__inner {
  display: flex;
  transition: transform 0.5s ease;
}

.slider__item {
  flex: 0 0 50%; /* 2 items on desktop */
  max-width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

.slider__item.active {
  opacity: 1;
}

.testimonial-card {
  background-color: var(--card-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-family: var(--font-headings);
}

.testimonial-card__location {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .slider__item {
      flex: 0 0 100%; /* 1 item on mobile */
      max-width: 100%;
  }

  .testimonial-card {
      padding: 1.5rem;
  }
  h1 {
    font-size: 1.5rem !important;
  }
  .contact-cta__title {
    font-size: 1.5rem !important;
  }
  .header__title {
    font-size: 1.2rem !important;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .faq-item__question h3 {
    font-size: 0.9rem;
  }
}


.app-promo {
  padding: 5rem 0;
  background-color: var(--body-color);
  position: relative;
  overflow: hidden;
}

.app-promo__content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-promo__image {
  flex: 1;
  text-align: center;
}

.app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.app-promo__text {
  flex: 1;
  color: var(--text-color);
}

.app-promo__text p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 2rem;
}



@media (max-width: 767px) {
  .app-promo {
      padding: 3rem 0;
  }

  .app-promo__content {
      flex-direction: column;
      gap: 2rem;
  }

  .app-promo__image,
  .app-promo__text {
      width: 100%;
      text-align: center;
  }

  .app-promo__text p {
      font-size: 1rem;
  }


}















.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: var(--secondary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
}

.header__logo-container {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  width: auto;
}

.header__title {
  color: var(--text-light);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.desktop-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.desktop-nav__link {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav__link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  transition: width 0.3s ease;
}

.desktop-nav__link:hover:after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  display: flex;
  align-items: center;
}

.dropdown__toggle:after {
  content: "â–¼";
  font-size: 0.8em;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-light);
  border-radius: 0.25rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-light);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.dropdown__item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.menu-toggle__bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary-color);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav__list {
  list-style: none;
  padding: 1rem 0;
}

.mobile-nav__link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-light);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Dropdown */
.mobile-dropdown__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown__icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown__icon {
  transform: rotate(45deg);
}

.mobile-dropdown__menu {
  display: none;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-dropdown.active .mobile-dropdown__menu {
  display: block;
}

.mobile-dropdown__item {
  display: block;
  padding: 0.75rem 2rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Styles */
.footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.footer__top {
  padding: 3rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 40px;
  width: auto;
}

.footer__brand-name {
  color: var(--text-light);
  font-size: 1.5rem;
  margin: 0;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__tagline {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer__links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer__links-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__links-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
}

.footer__links-list {
  list-style: none;
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer__contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__contact-title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__contact-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
}

.footer__contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__contact-icon {
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

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

.footer__contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.footer__contact-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  word-break: break-word;
}

.footer__contact-link:hover {
  color: var(--accent-color);
}

.footer__disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
}

.footer__disclaimer-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.footer__disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer__compliance {
  background-color: var(--secondary-light);
  padding: 1.5rem 0;
}

.footer__compliance-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__compliance-img,
.footer__age-img {
  height: 40px;
  width: auto;
}

.footer__copyright {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  text-align: center;
}

.footer__copyright-text {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Media Queries */
@media (min-width: 868px) {
  .header__wrapper {
    padding: 0.75rem 1rem;
  }

  .desktop-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
  }

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

@media (min-width: 992px) {
  .footer__contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* JavaScript Classes for Mobile Menu Functionality */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.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: 80px;
}

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;
}
@media (max-width: 570px) {
  .strategy-card__img {
    object-position: top;
  }
  .strategy-card__icon {
    height: 250px;
  }
  .booster-card__image {
    height: 250px;

  }
  .booster-card__img {
    object-position: top;
  }
  
}</pre></body></html>