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

:root {
  --color-primary: #7fe7d9;
  --color-secondary: #ff69b4;
  --color-accent: #ffeb3b;
  --color-purple: #e0b0ff;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #333;
  --color-text-muted: #555;
  --color-background: #f8f8f8;
  --color-border: #ccc;
}


body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.navbar {
    background-color: #7FE7D9;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.logo-image {
    width: 70px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.nav-links a.active {
  color: #FF69B4;
  font-weight: 700;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FF69B4;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.nav-links a.active:hover::after {
  transform: scaleX(1);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s linear;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #7FE7D9;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-left {
    background: #FFEB3B;
    padding: 4rem 2rem;
    position: relative;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.stylish-label {
    background: #7FE7D9;
    padding: 0.5rem 1rem;
    transform: rotate(-2deg);
    display: inline-block;
}

.hero-text {
    max-width: 400px;
    margin-bottom: 2rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border: 2px solid #000;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.btn:hover {
    transform: rotate(0);
}

.customer-avatars {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.hero-right {
    background: #E0B0FF;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.fashion-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 4px solid #000;
    transform: rotate(3deg);
    transition: transform 0.3s;
}

.fashion-image:hover {
    transform: rotate(0);
}

/* Marquee */
.marquee-container {
    background: linear-gradient(90deg, #FF69B4, #E0B0FF);
    overflow: hidden;
    padding: 1rem 0;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee span {
    margin: 0 2rem;
    color: #fff;
    font-weight: 600;
}

/* Services Section */
.services {
    background: #FF69B4;
    padding: 4rem 2rem;
}

.services-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 1rem;
    border: 4px solid #000;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: rotate(0);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Decorative Elements */
.butterfly {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #FFEB3B;
    clip-path: polygon(50% 0%, 80% 50%, 50% 100%, 20% 50%);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}

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

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

    .nav-links {
        display: none;
    }
}


/* Existing styles remain unchanged */

.contact {
    background: #7fe7d9;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-title {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .contact-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-methods {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .contact-method {
    text-align: center;
    flex: 1;
    min-width: 200px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffeb3b;
    border-radius: 50%;
    transform: rotate(-5deg);
    transition: transform 0.3s;
  }
  
  .contact-method:hover .contact-icon {
    transform: rotate(0);
  }
  
  .contact-icon svg {
    stroke: #000;
  }
  
  .contact-method h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .contact-method p {
    font-size: 1rem;
  }
  
  .contact-method a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s;
  }
  
  .contact-method a:hover {
    color: #ff69b4;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border: 4px solid #000;
    transform: rotate(-2deg);
    transition: transform 0.3s;
  }
  
  .contact-form:hover {
    transform: rotate(0);
  }
  
  .contact-form h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Archivo Black", sans-serif;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    border: 2px solid #000;
    font-family: "Inter", sans-serif;
  }
  
  .contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .contact-form .btn {
    align-self: flex-start;
    background: #ffeb3b;
    color: #000;
    border: 2px solid #000;
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transform: rotate(-2deg);
    transition: transform 0.3s;
  }
  
  .contact-form .btn:hover {
    transform: rotate(0);
  }
  
  @media (max-width: 768px) {
    .contact-methods {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-method {
      width: 100%;
    }
  
    .contact-form {
      padding: 1.5rem;
    }
  }
  

  

  /* Existing styles remain unchanged */

/* Footer Styles */
/* .footer {
    background-color: #ffeb3b;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-content {
    flex: 1;
    min-width: 300px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-image {
    width: 80px;
    height: 80px;
    border: 3px solid #000;
    border-radius: 50%;
    transform: rotate(-5deg);
    transition: transform 0.3s;
  }
  
  .footer-image:hover {
    transform: rotate(0);
  }
  
  .footer-logo h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.5rem;
  }
  
  .footer-text {
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .footer-menu {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-menu h4 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-menu ul {
    list-style-type: none;
    padding: 0;
    columns: 2;
  }
  
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  
  .footer-menu a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-menu a:hover {
    color: #ff69b4;
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  
    .footer-menu ul {
      columns: 1;
    }
  }
   */


   
.footer {
  background-color: var(--color-primary);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  flex: 2;
}

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

.footer__age-badge {
  width: 48px;
  height: 48px;
  background-color: var(--color-background);
  border: 2px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.footer__title {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer__disclaimer {
  font-size: 0.9rem;
  max-width: 600px;
}

.footer__nav {
  flex: 1;
}

.footer__nav-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer__nav-list {
  list-style-type: none;
}

.footer__nav-link {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  padding: 0.5rem 0;
}

.footer__nav-link:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__copyright {
  font-size: 0.9rem;
}

.footer__decoration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  background-color: var(--color-secondary);
  transform: rotate(45deg);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
  }

  .footer__nav {
    margin-top: 2rem;
  }
}

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

.footer__brand,
.footer__nav {
  animation: fadeInUp 0.5s ease-out forwards;
}

.footer__nav {
  animation-delay: 0.2s;
}

/* Existing styles remain unchanged */

/* Reviews Section Styles */
.reviews {
    background-color: #e0b0ff;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .reviews-title {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
  }
  
  .reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .review-card {
    background-color: #fff;
    border: 4px solid #000;
    padding: 1.5rem;
    width: 100%;
    max-width: 350px;
    transform: rotate(-2deg);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .review-card:hover {
    transform: rotate(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .review-content p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #000;
  }
  
  .review-author h3 {
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
  
  .review-author p {
    font-size: 0.9rem;
    color: #555;
  }
  
  @media (max-width: 768px) {
    .reviews-container {
      flex-direction: column;
      align-items: center;
    }
  
    .review-card {
      max-width: 100%;
    }
  }
  
    



  
/* How to Play Styles */
.how-to-play {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .how-to-play h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ff69b4;
  }
  
  .how-to-play h2 {
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .step {
    background-color: #fff;
    border: 4px solid #000;
    padding: 1.5rem;
    transform: rotate(-1deg);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .step:nth-child(even) {
    transform: rotate(1deg);
  }
  
  .step:hover {
    transform: rotate(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .step h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff69b4;
  }
  
  .step p,
  .step ul {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }
  
  .step ul {
    padding-left: 1.5rem;
  }
  
  .step li {
    margin-bottom: 0.5rem;
  }
  
  .step strong {
    color: #ff69b4;
  }
  
  /* Footer Styles */
  .footer {
    background-color: #ffeb3b;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-content {
    flex: 1;
    min-width: 300px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-image {
    width: 80px;
    height: 80px;
    border: 3px solid #000;
    border-radius: 50%;
    transform: rotate(-5deg);
    transition: transform 0.3s;
  }
  
  .footer-image:hover {
    transform: rotate(0);
  }
  
  .footer-logo h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.5rem;
  }
  
  .footer-text {
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .footer-menu {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-menu h4 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-menu ul {
    list-style-type: none;
    padding: 0;
    columns: 2;
  }
  
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  
  .footer-menu a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-menu a:hover {
    color: #ff69b4;
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
  }
  
  .butterfly {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ff69b4;
    clip-path: polygon(50% 0%, 80% 50%, 50% 100%, 20% 50%);
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0) rotate(45deg);
    }
    50% {
      transform: translateY(-20px) rotate(45deg);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background-color: #7fe7d9;
      padding: 1rem;
      z-index: 1000;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .burger-menu {
      display: flex;
    }
  
    .how-to-play h1 {
      font-size: 2.5rem;
    }
  
    .how-to-play h2 {
      font-size: 1.2rem;
    }
  
    .step {
      padding: 1rem;
    }
  
    .step h3 {
      font-size: 1.2rem;
    }
  
    .footer-container {
      flex-direction: column;
    }
  
    .footer-menu ul {
      columns: 1;
    }
  }

  

  
  .fashion-image {
    border: 8px solid #000;
  }
  
  .hero-left {
    border: 8px solid #000;
  }
  
  .hero-right {
    border: 8px solid #000;
  }
  
  .service-card {
    border: 4px solid #000;
  }
  
  .contact {
    border: 8px solid #000;
  }
  
  .reviews {
    border: 8px solid #000;
  }
  
  .footer {
    border: 8px solid #000;
  }
  

  /* How to Play Hero Styles */
.how-to-play-hero {
  min-height: 400px;
}

.how-to-play-hero .hero-left {
  background: #ff69b4;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.how-to-play-hero .hero-right {
  background: #7fe7d9;
}

.how-to-play-hero .hero-title {
  font-size: 5rem;
  color: #fff;
}

.how-to-play-hero .stylish-label {
  background: #ffeb3b;
  color: #000;
}

.how-to-play-hero .hero-text {
  font-size: 1.5rem;
  color: #fff;
  max-width: 800px;
  text-align: center;
}

/* How to Play Content Styles */
.how-to-play-content {
  background: #e0b0ff;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  background-color: #fff;
  border: 8px solid #000;
  padding: 2rem;
  transform: rotate(-1deg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:nth-child(even) {
  transform: rotate(1deg);
}

.step:hover {
  transform: rotate(0);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff69b4;
}

.step p,
.step ol {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.step ol {
  padding-left: 1.5rem;
}

.step li {
  margin-bottom: 0.5rem;
}

.step strong {
  color: #ff69b4;
}

/* CTA Section Styles */
.cta {
  background: #ffeb3b;
  padding: 4rem 2rem;
  text-align: center;
}

.cta h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #000;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #ff69b4;
  color: #fff;
  border: 4px solid #000;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta .btn:hover {
  transform: rotate(-2deg);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .how-to-play-hero .hero-title {
    font-size: 3rem;
  }

  .how-to-play-hero .hero-text {
    font-size: 1.2rem;
  }

  .step {
    padding: 1.5rem;
  }

  .step h2 {
    font-size: 1.5rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

.how-to-play-hero.full-width .hero-left {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.how-to-play-hero.full-width {
  grid-template-columns: 1fr;
}


/* Point Systems Hero Styles */
.point-systems-hero {
  min-height: 400px;
}

.point-systems-hero .hero-left {
  background: #ff69b4;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  width: 100%;
}

.point-systems-hero .hero-title {
  font-size: 5rem;
  color: #fff;
}

.point-systems-hero .stylish-label {
  background: #ffeb3b;
  color: #000;
  padding: 0.5rem 1rem;
  transform: rotate(-2deg);
  display: inline-block;
}

.point-systems-hero .hero-text {
  font-size: 1.5rem;
  color: #fff;
  max-width: 800px;
  text-align: center;
}

/* Point Systems Content Styles */
.point-systems-content {
  background: #e0b0ff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.point-table {
  background-color: #fff;
  border: 8px solid #000;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  transform: rotate(-1deg);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.point-table h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff69b4;
  text-align: center;
}

.point-table table {
  width: 100%;
  border-collapse: collapse;
}

.point-table th,
.point-table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.point-table th {
  background-color: #ffeb3b;
  font-weight: bold;
}

.point-table tr:nth-child(even) {
  background-color: #f8f8f8;
}

.point-table tr:hover {
  background-color: #e6e6e6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .point-systems-hero .hero-title {
    font-size: 3rem;
  }

  .point-systems-hero .hero-text {
    font-size: 1.2rem;
  }

  .point-table {
    padding: 1rem;
  }

  .point-table h2 {
    font-size: 1.5rem;
  }

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

.point-systems-hero.full-width .hero-left {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.point-systems-hero.full-width {
  grid-template-columns: 1fr;
}


/* Contact Hero Styles */
.contact-hero {
  min-height: 400px;
}

.contact-hero .hero-left {
  background: #ff69b4;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-hero .hero-title {
  font-size: 5rem;
  color: #fff;
}

.contact-hero .stylish-label {
  background: #ffeb3b;
  color: #000;
  padding: 0.5rem 1rem;
  transform: rotate(-2deg);
  display: inline-block;
}

.contact-hero .hero-text {
  font-size: 1.5rem;
  color: #fff;
  max-width: 800px;
  text-align: center;
}

/* Contact Content Styles */
.contact-content {
  background: #e6d5f5; /* Lighter purple background */
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  min-height: 600px;

}

.contact-info,
.contact-form-container {
  background-color: #fff;
  border: 4px solid #000;
  padding: 3rem;
  max-width: 550px;
  width: 100%;
  transform: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.contact-info:hover,
.contact-form-container:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2);
}

.contact-info p,
.contact-info ul {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-form-container h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ff69b4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 1rem;
  border: 2px solid #000;
  background: #fff;
  width: 100%;
}

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

.contact-form .btn {
  align-self: flex-start;
  font-size: 1rem;
  padding: 1rem 2rem;
  background: #ff69b4;
  color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  width: auto;
}

.contact-form .btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

/* Notification Styles */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffeb3b;
  color: #000;
  padding: 1rem;
  border: 4px solid #000;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100000;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Add these styles to your existing CSS */
.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ffeb3b;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-hero .hero-title {
    font-size: 3rem;
  }

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

  .contact-info,
  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-form-container h2 {
    font-size: 1.5rem;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero.full-width .hero-left {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero.full-width {
  grid-template-columns: 1fr;
}
/* Общие стили */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Убираем горизонтальную прокрутку */
}

* {
  box-sizing: border-box;
}

/* Контейнер для политики cookies */
.cookies-policy-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border: 8px solid #000;
  box-shadow: 12px 12px 0 #FF69B4;
}

.cookies-policy-container h1, 
.cookies-policy-container h2, 
.cookies-policy-container h3 {
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 1rem;
  text-align: center;
}

.cookies-policy-container h1 {
  font-size: 3rem;
  color: #FF69B4;
}

.cookies-policy-container h2 {
  font-size: 2rem;
  color: #7FE7D9;
  margin-top: 2rem;
}

.cookies-policy-container h3 {
  font-size: 1.5rem;
  color: #FFEB3B;
  margin-top: 1.5rem;
}

.cookies-policy-container p, 
.cookies-policy-container ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookies-policy-container ul {
  padding-left: 2rem;
}

.cookies-policy-container a {
  color: #FF69B4;
  text-decoration: none;
  border-bottom: 2px solid #FF69B4;
  transition: all 0.3s ease;
}

.cookies-policy-container a:hover {
  color: #7FE7D9;
  border-bottom-color: #7FE7D9;
}

/* Кнопка "Back to Top" */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFEB3B;
  color: #000;
  padding: 10px 15px;
  border: 2px solid #000;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #FF69B4;
  color: #fff;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
  .cookies-policy-container {
      margin: 1rem;
      padding: 1rem;
      border-width: 4px;
      box-shadow: 6px 6px 0 #FF69B4;
  }

  .cookies-policy-container h1 {
      font-size: 2rem;
  }

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

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

  .cookies-policy-container a {
      font-size: 1rem;
      word-wrap: break-word; /* Для переноса длинных слов */
      overflow-wrap: break-word; /* Альтернативный способ */
  
  }
}

/* Герой-секция */
.cookies-policy-hero {
  min-height: 200px;
}

.cookies-policy-hero .hero-left {
  padding: 2rem 0;
  text-align: center;
}

.cookies-policy-hero .hero-title {
  font-size: 2.5rem;
}

.cookies-policy-hero .hero-text {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

  .cookies-policy-hero .hero-text {
      font-size: 0.9rem;
  }
}

/* Полноширинные элементы */
.cookies-policy-hero.full-width .hero-left {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.cookies-policy-hero.full-width {
  grid-template-columns: 1fr;
}

/* Центрирование текста в hero-left */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.hero-text {
  font-size: 1.2rem;
  color: #000;
  max-width: 800px;
  margin: 0;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: var(--color-primary);
  margin: 15% auto;
  padding: 2rem;
  border: 4px solid var(--color-text);
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.modal-content p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border: 2px solid var(--color-text);
  background-color: var(--color-background);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn {
    width: 100%;
  }
}

@font-face {
  font-family: 'Archivo Black';
  src: url('/fonts/Archivo_Black/ArchivoBlack-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter/static/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}





:root {
  --color-primary: #4a90e2;
  --color-secondary: #50c878;
  --color-accent: #ffa500;
  --color-purple: #9370db;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #333;
  --color-text-muted: #555;
  --color-background: #f8f8f8;
  --color-border: #ccc;
}

/* Navbar */
.navbar {
  background-color: var(--color-primary);
}

.nav-links a.active {
  color: var(--color-secondary);
}

.nav-links a.active::after {
  background-color: var(--color-secondary);
}

/* Hero Section */
.hero-left {
  background: var(--color-accent);
}

.hero-right {
  background: var(--color-purple);
}

.stylish-label {
  background: var(--color-primary);
}

/* Services Section */
.services {
  background: var(--color-secondary);
}

/* Marquee */
.marquee-container {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-purple));
}

/* Contact Section */
.contact {
  background: var(--color-primary);
}

.contact-icon {
  background-color: var(--color-accent);
}

.contact-method a:hover {
  color: var(--color-secondary);
}

.contact-form .btn {
  background: var(--color-accent);
}

/* Reviews Section */
.reviews {
  background-color: var(--color-purple);
}

/* Footer */
.footer {
  background-color: var(--color-accent);
}

.footer-menu a:hover {
  color: var(--color-secondary);
}

/* How to Play */
.how-to-play-hero .hero-left {
  background: var(--color-secondary);
}

.how-to-play-hero .hero-right {
  background: var(--color-primary);
}

.how-to-play-hero .stylish-label {
  background: var(--color-accent);
}

.how-to-play-content {
  background: var(--color-purple);
}

.step h2 {
  color: var(--color-secondary);
}

/* CTA Section */
.cta {
  background: var(--color-accent);
}

.cta .btn {
  background: var(--color-secondary);
}

/* Point Systems */
.point-systems-hero .hero-left {
  background: var(--color-secondary);
}

.point-systems-hero .stylish-label {
  background: var(--color-accent);
}

.point-systems-content {
  background: var(--color-purple);
}

.point-table h2 {
  color: var(--color-secondary);
}

.point-table th {
  background-color: var(--color-accent);
}

/* Contact Page */
.contact-hero .hero-left {
  background: var(--color-secondary);
}

.contact-hero .stylish-label {
  background: var(--color-accent);
}

.contact-content {
  background: var(--color-purple);
}

.contact-form-container h2 {
  color: var(--color-secondary);
}

.contact-form .btn {
  background: var(--color-secondary);
}

/* Notification */
.notification {
  background-color: var(--color-accent);
}

/* Cookies Policy */
.cookies-policy-container {
  box-shadow: 12px 12px 0 var(--color-secondary);
}

.cookies-policy-container h1 {
  color: var(--color-secondary);
}

.cookies-policy-container h2 {
  color: var(--color-primary);
}

.cookies-policy-container h3 {
  color: var(--color-accent);
}

.cookies-policy-container a {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.cookies-policy-container a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.back-to-top {
  background-color: var(--color-accent);
}

.back-to-top:hover {
  background-color: var(--color-secondary);
}

/* Modal */
.modal-content {
  background-color: var(--color-primary);
}

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

/* Butterfly decoration */
.butterfly {
  background: var(--color-secondary);
}

