/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

:root {
  --primary-color: #8b5cf6;
  --primary-glow: rgba(37, 99, 235, 0.4);
  --secondary: #64748b;
  --dark: #111827;
  --black: #000000;
  --light: #f8fafc;
  --accent: #f59e0b;
  --white: #ffffff;
  --white-light: rgba(255 255 255 / 80%);
  --surface: rgba(255, 255, 255, 0.8);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  font-family: "Geist", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 12px 26px;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  height: 56px;
  line-height: 0;
  min-width: 200px;
}

.theme-btn.fill {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color) !important;
}

.theme-btn.fill:hover {
  background: transparent;
  color: var(--primary-color);
}

.theme-btn.outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
}

.theme-btn.outline:hover {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color) !important;
}

.text-theme {
  color: var(--primary-color);
}

.title-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.title-box p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
  max-width: 800px;
}

.section-pd {
  padding: 100px 0px;
}

/* =============== HEADER CSS STARTS HERE =============== */

.web-header {
  width: 100%;
  height: auto;
  padding: 1.5rem 0px;
  background-color: rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.web-header .navbar-brand {
  line-height: 0;
}

.web-header .navbar li.nav-item a {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  padding: 0px 15px;
}

.web-header .navbar li.nav-item a:hover,
.web-header .navbar li.nav-item a.active {
  color: var(--primary-color);
}

.web-header .theme-btn {
  height: 36px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  min-width: auto;
}

/* =============== HEADER CSS ENDS HERE =============== */

/* =============== BANNER CSS STARTS HERE =============== */

.banner-area {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0px 0px;
}

.banner-area .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-area .banner-content .banner-badge {
  display: inlineflex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.08);
}

.banner-area .banner-content .banner-title {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
}

.banner-area .banner-content .banner-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 3rem;
  max-width: 750px;
  text-align: center;
}

.banner-area .banner-content .banner-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner-image-box {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
  margin-top: 4rem;
}

.banner-image-box .bnr-layer {
  position: absolute;
}

.layer1 {
    top: 5rem;
    left: -2.5rem;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.layer2 {
  bottom: 1rem;
  left: 4rem;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.layer3 {
  top: 3rem;
  right: 4rem;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.layer4 {
  bottom: 6rem;
  right: 0;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =============== BANNER CSS ENDS HERE =============== */

/* =============== QUIT AREA CSS STARTS HERE =============== */

.quit-area {
  width: 100%;
  height: auto;
}

.quit-box {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.quit-icon {
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
}

.quit-content {
  width: 100%;
  height: auto;
}

.quit-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.quit-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-light);
  margin-bottom: 0;
}

/* =============== QUIT AREA CSS ENDS HERE =============== */

/* =============== BET FREE CSS STARTS HERE =============== */

.bet-free-area {
  width: 100%;
  height: auto;
}

.bet-free-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}

.bet-free-image {
  width: 100%;
  height: auto;
  text-align: center;
}

.bet-free-content {
  width: 100%;
  height: auto;
  text-align: center;
}

.bet-free-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.bet-free-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-light);
  margin-bottom: 0;
}

/* =============== BET FREE CSS ENDS HERE =============== */

/* =============== THREE STEP AREA CSS STARTS HERE =============== */

.three-step-area {
  width: 100%;
  height: auto;
}

.three-step-area .step-container {
  position: relative;
}

.three-step-area .step-container::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      #8b5cf6 0%,
      #cbb5fd 36.32%,
      #ffffff 76.64%);
  z-index: 1;
}

.three-step-area .step-item {
  position: relative;
  z-index: 2;
}

.three-step-area .shape-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.three-step-area .shape {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: var(--white);
  background-color: var(--primary-color);
  position: relative;
  border: 4px solid var(--black);
}

.three-step-area .triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #5e28d9;
  color: var(--white);
  padding-top: 10px;
}

.three-step-area .circle {
  border-radius: 50%;
  background-color: #cbb5fd;
  color: #8b5cf6;
}

.three-step-area h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.three-step-area .content p {
  color: var(--white-light);
  font-size: 18px;
  padding: 0 15px;
  margin: 0;
}

/* =============== THREE STEP AREA CSS ENDS HERE =============== */

/* =============== TOOLS AREA CSS STARTS HERE =============== */

.tools-area {
  width: 100%;
  height: auto;
}
/* Card Styling */
.tools-area .tool-card {
  background: var(--black);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.tools-area .tool-card:hover {
  border-color: #333;
  transform: translateY(-5px);
  background: #141414;
}

.tools-area .tool-content {
  flex: 1;
  padding-right: 20px;
}

.tools-area .tool-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tools-area .tool-card p {
  color: var(--white-light);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.tools-area .icon-box {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tools-area .tool-image {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tools-area .tool-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =============== TOOLS AREA CSS ENDS HERE =============== */

/*=============== FAQ AREA CSS STARTS HERE =============== */

.faq-area {
  width: 100%;
  height: auto;
}

.faq-area .accordion-item {
  background-color: #0f0f0f;
  border: 1px solid #222 !important;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-area .accordion-item:has(.show) {
  border-color: #444 !important;
}

.faq-area .accordion-button {
  background-color: transparent !important;
  color: var(--white) !important;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 25px;
  box-shadow: none !important;
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--white);
}

.faq-area .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  transform: none;
  color: var(--white);
}

.faq-area .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq-area .accordion-body {
  padding: 0 25px 25px 25px;
  color: var(--white-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-area .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
/* =============== FAQ AREA CSS ENDS HERE =============== */

/* =============== CTA AREA CSS STARTS HERE =============== */

.cta-area {
  width: 100%;
  height: auto;
}

.cta-area .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-area .cta-content p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white-light);
  margin-bottom: 0;
}

.cta-area .cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.cta-area .cta-btns .appstore img,
.cta-area .cta-btns .playstore img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

/* =============== CTA AREA CSS ENDS HERE =============== */

/* =============== FOOTER CSS STARTS HERE =============== */

.footer-area {
  width: 100%;
  height: auto;
  background-color: var(--black);
  color: var(--white);
}

.footer-area .text-light-custom {
  color: var(--white-light);
  opacity: 0.8;
}

.footer-area .footer-brand p {
  max-width: 350px;
  font-size: 0.95rem;
}

.footer-area .social-links a {
  color: var(--white);
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  margin-right: 12px;
  transition: var(--transition);
}

.footer-area .social-links a:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.footer-area .link-group h6 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-area .link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-area .link-group ul li {
  margin-bottom: 12px;
}

.footer-area .link-group ul li a {
  color: var(--white-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-area .link-group ul li a:hover {
  color: var(--white);
  opacity: 1;
  padding-left: 5px;
}

.footer-area .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-area .copyright {
  font-size: 0.85rem;
}

.footer-area .contact-links a {
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-area .contact-links a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-area .contact-links a i {
  color: var(--white-light);
}

/* =============== FOOTER CSS ENDS HERE =============== */

/* =============== INNER PAGE CSS STARTS HERE =============== */

.inner-banner {
  width: 100%;
  height: auto;
  padding: 60px 0;
  background: url("../images/banner-img.jpg") center center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.inner-banner .breadcrumb {
  margin-bottom: 10px;
  font-size: 14px;
}

.inner-banner .breadcrumb a {
  text-decoration: none;
  color: var(--white-light);
}

.inner-banner .breadcrumb a:hover {
  color: var(--primary-color);
}

.inner-banner .breadcrumb .separator {
  margin: 0 5px;
  color: var(--white-light);
}

.inner-banner .breadcrumb .current {
  color: var(--white);
  font-weight: 600;
}

.inner-banner h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.pillar-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 1rem;
  border-radius: 20px;
  height: 100%;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.pillar-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.pillar-card h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.pillar-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.plan-box {
  padding: 50px;
  border-radius: 24px;
  height: 100%;
  position: relative;
}

.plan-box.free {
  background: #0a0a0a;
  border: 1px solid #222;
}

.plan-box.premium {
  background: linear-gradient(145deg, #111 0%, #000 100%);
  border: 1px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.premium-tag {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.feature-list li {
  color: var(--white-light);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.feature-list li i {
  margin-right: 15px;
  font-size: 1rem;
}

.reward-item-card {
  background: #0f0f0f;
  border: 1px solid #222;
  padding: 35px;
  border-radius: 24px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.reward-item-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.reward-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.reward-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.reward-item-card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.reward-item-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.reward-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.xp-cost {
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.btn-redeem {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-redeem:hover {
  background: #7c4dff;
  color: var(--white);
}

.btn-redeem.locked {
  background: #222;
  color: #555;
  cursor: not-allowed;
}

.feature-card-alt {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 40px;
  border-radius: 24px;
  height: 100%;
  transition: var(--transition);
}

.feature-card-alt:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.feature-card-alt .icon-wrap {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card-alt h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-card-alt p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Leaderboard Table */
.leaderboard-wrapper {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 40px;
  border-radius: 24px;
}

.view-all {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.clan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}

.clan-table thead th {
  color: var(--secondary);
  font-weight: 600;
  padding: 0 20px;
  border: none;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.clan-table tbody tr {
  background: #111;
  transition: var(--transition);
}

.clan-table tbody td {
  padding: 20px;
  vertical-align: middle;
}

.clan-table tbody tr:hover {
  background: #161616;
}

.rank-num {
  color: var(--primary-color);
  font-weight: 800;
}

.join-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 6px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.join-btn:hover:not(.full) {
  background: var(--primary-color);
  color: #fff;
}

.join-btn.full {
  border-color: #333;
  color: #555;
  cursor: not-allowed;
}


.badge-custom {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Mission Section */
.about-mission-area .about-image-wrap {
  position: relative;
}

.about-mission-area .image-border-box {
  text-align: end;
}

.science-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: var(--transition);
}

.science-card:hover {
  border-color: var(--primary-color);
  background: #121212;
}

.science-card .sc-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.science-card h5 {
  color: var(--white);
  margin-bottom: 12px;
}

.science-card p {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.value-item {
  border-left: 2px solid #222;
  padding-left: 30px;
  transition: var(--transition);
}

.value-item:hover {
  border-left-color: var(--primary-color);
}

.value-item .v-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.value-item h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.value-item p {
  color: var(--white-light);
  font-size: 0.95rem;
}

.contact-area .text-theme {
  color: var(--primary-color);
}

.contact-area .text-light-custom {
  color: var(--white-light);
}

.contact-area .badge-custom {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.contact-area .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background: #0f0f0f;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #1f1f1f;
  transition: var(--transition);
}

.contact-area .info-item:hover {
  border-color: var(--primary-color);
}

.contact-area .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-right: 20px;
}

.contact-area .info-text h6 {
  margin: 0;
  font-weight: 700;
  color: var(--white);
}

.contact-area .info-text p {
  margin: 0;
  color: var(--white-light);
  font-size: 0.9rem;
}

.contact-area .contact-form-wrapper {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 50px;
  border-radius: 24px;
}

.contact-area label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-light);
}

.contact-area .form-control-custom {
  width: 100%;
  background: #111;
  border: 1px solid #222;
  padding: 15px 20px;
  border-radius: 12px;
  color: var(--white);
  transition: var(--transition);
}

.contact-area .form-control-custom:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #161616;
}

.pricing-area .text-theme {
  color: var(--primary-color);
}

.pricing-area .text-light-custom {
  color: var(--white-light);
}

.pricing-area .badge-custom {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.pricing-area .price-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 40px 30px;
  border-radius: 24px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-area .price-card:hover {
  border-color: #333;
  transform: translateY(-5px);
}

.pricing-area .price-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(180deg, #111 0%, #050505 100%);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.pricing-area .popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-area .card-header h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-area .price-value {
  margin-bottom: 10px;
}

.pricing-area .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-area .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-area .duration {
  color: var(--secondary);
  font-size: 1rem;
}

.pricing-area .feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  flex-grow: 1;
}

.pricing-area .feature-list li {
  margin-bottom: 15px;
  color: var(--white-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.pricing-area .feature-list li i {
  margin-right: 12px;
  font-size: 1.1rem;
  color: #333;
}


.terms-area .terms-sidebar {
  position: sticky;
  top: 100px;
  background: #0f0f0f;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #1f1f1f;
}

.terms-area .terms-sidebar h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-area .nav-link {
  color: var(--white-light);
  padding: 10px 0;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 1px solid #111;
}

.terms-area .nav-link:hover,
.terms-area .nav-link.active {
  color: var(--primary-color);
  padding-left: 5px;
}

.terms-area .last-updated {
  color: var(--white-light);
  font-size: 0.85rem;
  font-style: italic;
}

.terms-area .terms-section {
  margin-bottom: 60px;
}

.terms-area .terms-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.terms-area .terms-section p {
  color: var(--white-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.terms-area .terms-section ul {
  color: var(--white-light);
  line-height: 1.8;
}

.terms-area .terms-section ul li {
  margin-bottom: 10px;
}

.terms-area .warning-box {
  background: rgba(245, 158, 11, 0.05);
  border-left: 4px solid var(--accent);
  padding: 30px;
  border-radius: 0 15px 15px 0;
}

.terms-area .warning-box h3 {
  color: var(--accent);
}


.privacy-area .privacy-sidebar {
  position: sticky;
  top: 100px;
  background: #0f0f0f;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #1f1f1f;
}

.privacy-area .privacy-sidebar h5 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--white);
}

.privacy-area .nav-link {
  color: var(--secondary);
  padding: 12px 0;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 1px solid #161616;
}

.privacy-area .nav-link:hover,
.privacy-area .nav-link.active {
  color: var(--primary-color);
  padding-left: 8px;
}

.privacy-area .status-badge {
  display: inline-block;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.privacy-area .intro-text {
  font-size: 1.1rem;
  color: var(--white-light);
  margin-bottom: 40px;
}

.privacy-area .privacy-section {
  margin-bottom: 50px;
}

.privacy-area .privacy-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.privacy-area .privacy-section p,
.privacy-area .privacy-section li {
  color: var(--white-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-area .ai-highlight-box {
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  border: 1px solid var(--primary-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}

.privacy-area .ai-highlight-box h3 {
  color: var(--primary-color);
}

.privacy-area .contact-box {
  border-top: 1px solid #222;
  padding-top: 30px;
}

/* =============== INNER PAGE CSS ENDS HERE =============== */

@media (min-width: 1600px) {
  .cta-area .container-fluid {
    padding: 0 10rem;
  }
}

@media (max-width: 991px) {

  .banner-area .banner-content .banner-title {
    font-size: 40px;
  }

  .banner-image-box .bnr-layer{
    display: none;
  }

  .terms-area .terms-section {
    margin-bottom: 40px;
  }

  .title-box h2 {
    font-size: 30px;
  }

  .bet-free-box{
    padding: 0;
    margin-bottom: 2rem;
  }

  .three-step-area{
    padding: 0;
  }

  .faq-area{
    padding: 0;
  }

  .cta-area .cta-content h2{
    font-size: 30px;
  }

  .bet-free-area,
  .clans-leaderboard-area{
    padding-top: 0;
  }

  .leaderboard-wrapper {
    padding: 1rem;
  }

  .clan-table {
    text-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .tools-area .tool-card {
    flex-direction: column;
    text-align: left;
    padding: 30px;
  }

  .tools-area .tool-image {
      margin-top: 20px;
      width: 100px;
      align-self: flex-start;
  }

  .contact-area .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .three-step-area .step-container::before {
    display: none;
  }
  .three-step-area .step-item {
    margin-bottom: 40px;
  }
}

.error {
  color: red !important;
}
