:root {
    --primary-blue: #0066ff;
    --background: #000033;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-color: #ffffff;
    --border-color: rgba(0, 102, 255, 0.3);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Space Grotesk", sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Background Animation */
  .background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #000033, #000066, #0000cc, #0033cc);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
  }
  
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Header Styles */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 51, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .logo-img {
    height: 60px;
    object-fit: cover;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--primary-blue);
  }
  
  .burger {
    display: none;
    cursor: pointer;
  }

  /* Hero Section Styles */
.hero {
    min-height: 100vh;
    padding: 80px 0; /* Account for fixed header */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000033 0%, #000066 100%);
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-text {
    animation: fadeInLeft 1s ease-out;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000033;
    background: #0066ff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .hero-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
  }
  
  .hero-button:hover::before {
    left: 100%;
  }
  
  .hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    background: #0052cc;
  }
  
  .hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
  }
  
  
  .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
  }
  
  .main-image:hover {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .floating-ball,
  .floating-bat {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    filter: drop-shadow(0 10px 15px rgba(0, 102, 255, 0.3));
  }
  
  .floating-ball {
    width: 50px;
    height: 50px;
    background-color: #cc0000;
    border-radius: 50%;
    top: -20px;
    right: 40px;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-bat {
    width: 100px;
    height: 20px;
    background-color: #8b4513;
    bottom: -30px;
    left: 30px;
    transform: rotate(-45deg);
    animation: float 8s ease-in-out infinite reverse;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0) rotate(-45deg);
    }
    50% {
      transform: translateY(-20px) rotate(-45deg);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .hero-title {
      font-size: 3rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
  
    .hero-text {
      order: 2;
    }
  
    .hero-image {
      order: 1;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .floating-ball,
    .floating-bat {
      display: none;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-button {
      padding: 0.8rem 2rem;
      font-size: 1rem;
    }
  }
  

  .pixel-border {
    height: 60px;
    width: 100%;
    background-image: url("");
    background-size: contain;
    position: fixed;
    left: 0;
    z-index: 100;
  }
  
  .pixel-border.top {
    top: 0;
  }
  
  .pixel-border.bottom {
    bottom: 0;
    transform: rotate(180deg);
  }
  
  .benefits-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 var(--spacing);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-indicator {
    font-size: 1.2rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }
  
  h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .benefit-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  
  .benefit-card:hover::before {
    transform: translateX(100%);
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }
  
  .number {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.5;
  }
  
  .benefit-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .benefit-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    .benefits-section {
      margin: 40px auto;
    }
  
    .benefit-card {
      padding: 1.5rem;
    }
  
    .number {
      font-size: 1.5rem;
    }
  
    .benefit-header h2 {
      font-size: 1.2rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
  
    .section-indicator {
      font-size: 1rem;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Reviews Section */
  .reviews {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--background), #000066);
  }
  
  .reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    margin: -20px -20px;
    padding: 20px;
  }
  
  .review-card {
    flex: 0 0 calc(100% - 40px);
    max-width: 600px;
    scroll-snap-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .company {
    font-weight: 600;
    color: var(--primary-blue);
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .stars {
    color: #ffd700;
  }
  
  .review-content {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .slider-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nav-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
  }
  .footer {
    background-color: #000033;
    padding: 60px 0 20px;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-title {
    color: #0066ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .footer-tagline {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #0066ff;
  }
  
  .disclaimer-section {
    position: relative;
  }
  
  .age-restriction {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4444;
  }
  
  .disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
  
    .disclaimer-section {
      grid-column: 1 / -1;
    }
  }
  
  @media screen and (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .footer {
      padding: 40px 0 20px;
    }
  
    .age-restriction {
      position: relative;
      display: block;
      text-align: left;
      margin-bottom: 1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer-title {
      font-size: 1.1rem;
    }
  
    .age-restriction {
      font-size: 2.5rem;
    }
  }
  
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .nav-links {
      position: fixed;
      right: -100%;
      top: 70px;
      flex-direction: column;
      background: rgba(0, 0, 51, 0.95);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      padding: 20px 0;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .burger {
      display: block;
    }
  
    .burger div {
      width: 25px;
      height: 3px;
      background: var(--text-color);
      margin: 5px;
      transition: all 0.3s ease;
    }
  
    .burger.active .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .burger.active .line2 {
      opacity: 0;
    }
  
    .burger.active .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  }
  
  
/* How to Play Page Styles */
#how-to-play {
  padding: 120px 0 60px;
  background: linear-gradient(45deg, #000033, #000066);
  position: relative;
}

#how-to-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("cricket-stadium.jpg") no-repeat center center / cover;
  opacity: 0.1;
  z-index: -1;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-top: 80px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #0066ff;
}

.section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #0066ff;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.benefit-card:hover::before {
  transform: translateX(100%);
}

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

.benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.number {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.5;
  color: #0066ff;
}

.benefit-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #cccccc;
}

.cta-container {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0066ff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0052cc;
}
  



/* Point Systems Page Styles */
.point-systems {
    padding: 120px 0 60px;
    background: linear-gradient(45deg, var(--background), #000066);
    position: relative;
}

.point-systems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/') no-repeat center center/cover;
    opacity: 0.1;
    z-index: -1;
}

.point-systems .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.point-systems .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-blue);
}

.point-systems .section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-blue);
}

.point-systems .info-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.point-systems .info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.1);
    border-color: var(--primary-blue);
}

.point-systems h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.point-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.point-table th,
.point-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.point-table th {
    background-color: rgba(0, 102, 255, 0.1);
    font-weight: bold;
    color: var(--primary-blue);
}

.point-table tr:hover {
    background-color: rgba(0, 102, 255, 0.05);
}

.note {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 10px;
}

/* Responsive Design for Point Systems Page */
@media screen and (max-width: 768px) {
    .point-systems .section-title {
        font-size: 2rem;
    }

    .point-systems .section-subtitle {
        font-size: 1.5rem;
    }

    .point-systems .info-block {
        padding: 20px;
    }

    .point-table th,
    .point-table td {
        padding: 8px;
    }
}

@media screen and (max-width: 480px) {
    .point-systems .section-title {
        font-size: 1.8rem;
    }

    .point-systems .section-subtitle {
        font-size: 1.3rem;
    }

    .point-systems h3 {
        font-size: 1.3rem;
    }

    .point-table th,
    .point-table td {
        padding: 6px;
        font-size: 0.9rem;
    }
}




/* Contact Page Styles */
.contact {
    padding: 120px 0 60px;
    background: linear-gradient(45deg, var(--background), #000066);
    position: relative;
  }
  
  .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("cricket-stadium.jpg") no-repeat center center / cover;
    opacity: 0.1;
    z-index: -1;
  }
  
  .contact .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
  }
  
  .contact .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-blue);
  }
  
  .contact .section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-blue);
  }
  
  .contact-wrapper {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      margin-top: 40px;
  }
  
  .contact-info {
      flex: 1;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 30px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
  }
  
  .contact-image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
  }
  
  .info-text p {
      margin-bottom: 20px;
      color: var(--text-color);
  }
  
  .contact-details {
      list-style-type: none;
      padding: 0;
  }
  
  .contact-details li {
      margin-bottom: 10px;
      color: var(--text-color);
  }
  
  .contact-form-wrapper {
      flex: 1;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 30px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
  }
  
  .contact-form-wrapper h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--primary-blue);
  }
  
  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .form-group {
      display: flex;
      flex-direction: column;
  }
  
  .form-group label {
      margin-bottom: 5px;
      color: var(--text-color);
  }
  
  .form-group input,
  .form-group textarea {
      padding: 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--text-color);
  }
  
  .form-group textarea {
      height: 150px;
      resize: vertical;
  }
  
  .submit-btn {
      background-color: var(--primary-blue);
      color: var(--text-color);
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      align-self: flex-start;
  }
  
  .submit-btn:hover {
      background-color: #0052cc;
  }
  
  .notification {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #4CAF50;
      color: white;
      padding: 15px;
      border-radius: 5px;
      display: none;
      z-index: 1000;
  }
  
  /* Responsive Design for Contact Page */
  @media screen and (max-width: 768px) {
      .contact .section-title {
          font-size: 2rem;
      }
  
      .contact .section-subtitle {
          font-size: 1.5rem;
      }
  
      .contact-wrapper {
          flex-direction: column;
      }
  
      .contact-info,
      .contact-form-wrapper {
          width: 100%;
      }
  }
  
  @media screen and (max-width: 480px) {
      .contact .section-title {
          font-size: 1.8rem;
      }
  
      .contact .section-subtitle {
          font-size: 1.3rem;
      }
  
      .contact-form-wrapper h3 {
          font-size: 1.3rem;
      }
  }
  



  /* Cookies Policy Page Styles */
.cookies-policy {
    padding: 120px 0 60px;
    background: linear-gradient(45deg, var(--background), #000066);
    position: relative;
}

.cookies-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('cricket-stadium.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: -1;
}

.cookies-policy .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.cookies-policy .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-blue);
}

.cookies-policy h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.cookies-policy h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cookies-policy p, .cookies-policy ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookies-policy ul {
    padding-left: 20px;
}

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

.cookies-policy a:hover {
    color: #ffffff;
}

/* Responsive Design for Cookies Policy Page */
@media screen and (max-width: 768px) {
    .cookies-policy .section-title {
        font-size: 2rem;
    }

    .cookies-policy h2 {
        font-size: 1.8rem;
    }

    .cookies-policy h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .cookies-policy .section-title {
        font-size: 1.8rem;
    }

    .cookies-policy h2 {
        font-size: 1.5rem;
    }

    .cookies-policy h3 {
        font-size: 1.2rem;
    }
}





/* Age Verification Styles */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 51, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.age-verification-modal {
  background: linear-gradient(135deg, rgba(0, 0, 102, 0.95), rgba(0, 102, 255, 0.95));
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
  animation: modalAppear 0.3s ease-out;
}

.age-icon {
  background: #ff0000;
  color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.age-verification-modal h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.age-verification-modal p {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.age-verification-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.verify-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
}

.verify-yes {
  background: #0066ff;
  color: #ffffff;
}

.verify-yes:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

.verify-no {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.verify-no:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

@keyframes modalShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.shake {
  animation: modalShake 0.5s ease-in-out;
}

/* Responsive design for age verification */
@media screen and (max-width: 480px) {
  .age-verification-modal {
    padding: 30px;
  }

  .age-verification-modal h2 {
    font-size: 1.5rem;
  }

  .age-verification-modal p {
    font-size: 1rem;
  }

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

  .age-verification-buttons {
    flex-direction: column;
    gap: 10px;
  }
}



@font-face {
  font-family: 'Space Grotesk';
  src: url('/font/Space_Grotesk/static/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/font/Space_Grotesk/static/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

