@font-face {
  font-family: "NeoSansProBold";
  src: url("../font/NeoSansProBold.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NeoSansProMedium";
  src: url("../font/NeoSansProMedium.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NeoSansProRegular";
  src: url("../font/NeoSansProRegular.OTF");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary: #ff512f;
  --secondary: #dd2476;
  --dark: #0f172a;
  --darker: #0a0e1a;
  --light: #f8fafc;
  --gray: #94a3b8;
  --success: #10b981;
  --card-bg: rgba(30, 41, 59, 0.5);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, var(--darker), #1a0033, #1e293b);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

.bg-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 50%,
      rgba(221, 36, 118, 0.15) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(255, 81, 47, 0.15) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 81, 47, 0.1) 0%,
      transparent 25%
    );
  animation: float 20s ease-in-out infinite;
}

.bg-animation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cpolygon fill='%23dd2476' points='957 450 539 900 1396 900'/%3E%3Cpolygon fill='%23ff512f' points='957 450 872.9 900 1396 900'/%3E%3Cpolygon fill='%23dd2478' points='-60 900 398 662 816 900'/%3E%3Cpolygon fill='%23ff5131' points='337 900 398 662 816 900'/%3E%3Cpolygon fill='%23dd247a' points='1203 546 1552 900 876 900'/%3E%3Cpolygon fill='%23ff5133' points='1203 546 1552 900 1162 900'/%3E%3Cpolygon fill='%23dd247c' points='641 695 886 900 367 900'/%3E%3Cpolygon fill='%23ff5135' points='587 900 641 695 886 900'/%3E%3Cpolygon fill='%23dd247e' points='1710 900 1401 632 1096 900'/%3E%3Cpolygon fill='%23ff5137' points='1710 900 1401 632 1365 900'/%3E%3Cpolygon fill='%23dd2480' points='1210 900 971 687 725 900'/%3E%3Cpolygon fill='%23ff5139' points='943 900 1210 900 971 687'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

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

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

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255, 81, 47, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(255, 81, 47, 0.3);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.join-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(255, 81, 47, 0.3);
}

.join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(255, 81, 47, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section - Made Responsive */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 60px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.hero-content {
  z-index: 2;
  max-width: 650px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 81, 47, 0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 81, 47, 0.3);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  margin-right: 8px;
  color: var(--secondary);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    #ffffff,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(255, 81, 47, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 81, 47, 0.5);
}

.hero-visual {
  width: 100%;
  max-width: 1000px;
  z-index: 1;
}

.floating-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100%;
}

.floating-card {
  width: 100%;
  max-width: 300px;
  height: 350px;
  background: var(--card-bg);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 81, 47, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-top: 0;
}

.floating-card:nth-child(2) .card-icon,
.floating-card:nth-child(2) .card-title,
.floating-card:nth-child(2) .card-desc {
  color: white;
}

.floating-card:hover {
  transform: translateY(-10px);
}

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

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.card-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 120px 40px 80px;
    gap: 0;
  }

  .hero-content {
    text-align: left;
    max-width: 45%;
  }

  .hero-visual {
    width: 50%;
    max-width: 600px;
  }

  .floating-cards {
    display: block;
    position: relative;
    height: 500px;
  }

  .floating-card {
    position: absolute;
    width: 280px;
    height: 350px;
  }

  .floating-card:nth-child(1) {
    top: 60%;
    right: 0;
    animation: floatCard1 8s ease-in-out infinite;
  }

  .floating-card:nth-child(2) {
    top: 25%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    width: 300px;
    height: 370px;
    animation: floatCard2 10s ease-in-out infinite;
    z-index: 2;
  }

  .floating-card:nth-child(3) {
    top: 25%;
    right: 0;
    animation: floatCard3 9s ease-in-out infinite;
  }

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

  @keyframes floatCard2 {
    0%,
    100% {
      transform: translateX(50%) translateY(-50%) rotate(0deg);
    }
    50% {
      transform: translateX(50%) translateY(-60px) rotate(5deg);
    }
  }

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

@media (min-width: 992px) {
  .hero-section {
    padding: 120px 60px 80px;
  }

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

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

  .floating-card {
    width: 300px;
    height: 380px;
  }

  .floating-card:nth-child(2) {
    width: 320px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 100px 15px 40px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    height: 300px;
    max-width: 100%;
  }
}
/* Stats Section */
.stats-section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: var(--card-bg);
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 81, 47, 0.2);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 81, 47, 0.5);
  box-shadow: 0 20px 60px rgba(255, 81, 47, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
}

/* Game Categories - Grid Layout */
.games-section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--gray);
}

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

.game-category {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 81, 47, 0.2);
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 81, 47, 0.1),
    rgba(221, 36, 118, 0.1)
  );
  opacity: 0;
  transition: var(--transition);
}

.game-category:hover::before {
  opacity: 1;
}

.game-category:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 81, 47, 0.5);
  box-shadow: 0 30px 80px rgba(255, 81, 47, 0.3);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(255, 81, 47, 0.3);
  position: relative;
  z-index: 2;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.category-desc {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.category-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.category-btn:hover {
  background: var(--primary);
  color: white;
}

/* Features Grid */
.features-section {
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 81, 47, 0.05),
    rgba(221, 36, 118, 0.05)
  );
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(255, 81, 47, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 81, 47, 0.5);
  box-shadow: 0 30px 80px rgba(255, 81, 47, 0.3);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(255, 81, 47, 0.4);
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-desc {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.testimonial-slide {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  border: 1px solid rgba(255, 81, 47, 0.2);
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 40px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}

.testimonial-text::before {
  top: -20px;
  left: -20px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

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

.author-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.author-location {
  color: var(--gray);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 100,0 100,100" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  animation: slidePattern 10s linear infinite;
}

@keyframes slidePattern {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}

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

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-desc {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  line-height: 1.6;
}

.cta-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--darker);
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255, 81, 47, 0.2);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
}

.responsible-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.responsible-links img {
  height: 2rem;
}

.responsible-links li {
  margin-bottom: 10px;
}

.responsible-links li a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.responsible-links li a:hover {
  color: var(--primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 15px;
}

.footer-section ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.footer-bottom img {
  height: 3rem;
}
.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-visual {
    width: 45%;
  }

  .floating-card {
    width: 250px;
    height: 330px;
  }

  .floating-card:nth-child(2) {
    width: 270px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
   
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 60px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    transform: none;
    top: auto;
    right: auto;
  }

  .floating-cards {
    height: 400px;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .floating-card:nth-child(1) {
    top: 0;
    right: auto;
    left: 30%;
    display: none;
  }

  .floating-card:nth-child(2) {
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .floating-card:nth-child(3) {
    bottom: 0;
    right: auto;
    left: 70%;
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .header-content {
    padding: 0 15px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

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

  .primary-btn,
  .secondary-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }

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

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

  .testimonial-slide {
    padding: 40px 30px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .floating-cards {
    height: 350px;
  }

  .floating-card {
    width: 220px;
    height: 300px;
  }

  .floating-card:nth-child(2) {
    width: 240px;
    height: 320px;
  }

  .card-title {
    font-size: 1.3rem;
  }
  .stats-section {
    padding: 50px 15px;
  }
  .games-section {
    padding: 50px 15px;
  }
  .features-section {
    padding: 50px 15px;
  }
  .testimonials-section {
    padding: 50px 15px;
  }
  .cta-section {
    padding: 50px 15px;
  }
  .game-category {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .mobile-nav-links li {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    font-size: 0.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .floating-cards {
    height: 300px;
  }

  .floating-card {
    width: 180px;
    height: 250px;
    padding: 20px;
  }

  .floating-card:nth-child(2) {
    width: 200px;
    height: 270px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .card-desc {
    font-size: 0.8rem;
    padding: 0 10px;
  }

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

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

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

  .cta-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: var(--dark);
  z-index: 1000;
  padding: 100px 30px 30px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 81, 47, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-link {
  display: block;
  color: var(--light);
  text-decoration: none;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 10px;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* table */

.table__items .table__item {
  display: flex;
  justify-content: space-between;
  background-color: #f8f9fa;
  border-radius: 20px;
  width: 100%;
  padding: 10px 40px 10px 10px;
  margin-bottom: 20px;
  height: 160px;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 18%);
  font-family: "NeoSansProRegular";
  border-bottom: 3px solid var(--dark-bg);
}

.table__items .table__item:last-child {
  margin-bottom: 0;
}

.table__items .item__logo {
  display: flex;
  flex-direction: column;
}

.table__items .item__logo .logo {
  display: flex;
  margin: auto 0;
}

.table__items .item__logo h3 {
  font-size: 16px;
  color: #000;
  text-align: center;
}

.table__items .item__offers {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  width: 100%;
  justify-content: center;
}

.table__items .item__offer {
  display: flex;
  flex-direction: column;
}

.table__items .item__offers .reputation {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #44c940;
  font-family: "NeoSansProMedium";
  margin: 10px 0;
}

.table__items .item__offers .reputation img {
  margin: 0 0 -2px 10px;
}

.table__items .item__offers .casino__info li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #525252;
  font-family: "NeoSansProMedium";
}

.table__items .item__offers .casino__info li > img {
  margin-right: 5px;
  margin-top: -2px;
}

.table__items .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 15px;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  background-color: #cc0012;
  border-radius: 3px;
  font-family: "NeoSansProBold";
}

.table__items .item__logo .badge {
  display: none !important;
}

.table__items .badge.none {
  background-color: transparent;
}

.table__items .item__info {
  margin: auto 0;
  max-width: 225px;
  width: 100%;
}

.table__items .item__info p {
  font-size: 14px;
  color: #cc0012;
  text-align: center;
  margin-bottom: 10px;
  font-family: "NeoSansProBold";
}

.table__items .item__info h4 {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  text-align: center;
  font-family: "NeoSansProBold";
}

.table__items .item__action {
  width: 100%;
  max-width: 280px;
  margin: auto 0;
}

.table__items .item__action .casino__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  border-radius: 30px;
  background-color: #ffde00;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  padding-top: 2px;
  text-decoration: none;
  font-family: "NeoSansProBold";
}

.table__items .item__action .casino__payments {
  display: block;
  position: relative;
  width: 250px;
  height: max-content;
  overflow: hidden;
  margin: 0 auto;
}

.table__items .item__action .casino__payments .items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table__items .item__action .casino__payments img {
  margin: 0 5px;
}
.items img {
  height: 35px;
}
.casino__info img {
  height: 9px;
}
.reputation img {
  height: 8px;
}

/* table responsive */

@media screen and (min-width: 1024px) and (max-width: 1140px) {
  .slick__offers .slide .casino__payments,
  .table__items .item__action .casino__payments {
    width: 200px;
  }

  .table__items .item__logo .badge {
    display: none !important;
  }

  .table__items .item__logo .logo img {
    width: 200px;
  }

  .table__items .item__action {
    max-width: 234px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .table__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .table__items .table__item {
    flex-direction: column;
    margin: 0;
    height: auto;
    padding: 10px;
    align-items: center;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__logo .badge.none {
    margin: 0;
  }

  .table__items .item__offers .badge.none {
    height: 0;
    margin: 0;
  }

  .table__items .item__info {
    margin: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .table__items .table__item {
    flex-direction: column;
    align-items: center;
    height: max-content;
    padding: 20px;
    margin-bottom: 5px;
  }

  .table__casinos thead tr th:nth-child(2),
  .table__casinos thead tr th:nth-child(4) {
    display: none;
  }

  .table__casinos tbody tr td:nth-child(2),
  .table__casinos tbody tr td:nth-child(4) {
    display: none;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__offers {
    display: none;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__info {
    margin: auto 0 15px;
  }

  .table__items .item__action .casino__payments {
    width: 230px;
  }
}

@media screen and (max-width: 320px) {
  .table__items .item__action .casino__link {
    height: 50px;
  }

  .table__casinos tbody tr td:first-child img {
    height: 45px;
  }
}

/* policy pages */

.privacy-main {
  padding-top: 50px;
  padding-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.privacy-content {
  padding: 40px;
  border-radius: 8px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.privacy-content h2 {
  font-size: 2.5em;
  color: var(--accent-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
}
.privacy-content h3 {
  font-size: 1.2rem;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .privacy-content h1 {
    font-size: 2.2em;
  }

  .privacy-content h2 {
    font-size: 1.5em;
  }
}

/* contact us */

.contact-section {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contact-container {
  background-color: var(--dark);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1100px;
  width: 100%;
  overflow: hidden;
}

.contact-info {
  background: linear-gradient(135deg, var(--darker), var(--primary));
  color: var(--white-color);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-form-container {
  padding: 4rem;
}

.contact-form-container h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  text-align: center;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: transparent;
  color: var(--text-color);
  outline: none;
  box-shadow: none;
}

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



.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
}

.success-message i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.success-message h3 {
  font-size: 1.8rem;
  color: var(--success-color);
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 3rem;
    text-align: center;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1rem;
  }
  .join-btn {
    display: none !important;
  }
  .section-desc{
    font-size: 1rem;
  }
}

/* age verification */

#age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.age-verification-content {
  background-color: var(--dark);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.age-verification-content .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.age-verification-content h2 {
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 15px;
}

.age-verification-content p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.age-btn {
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
}

.age-btn.confirm {
  background-color: var(--secondary);
  color: #fff;
}

.age-btn.confirm:hover {
  background-color: var(--primary);
  transform: scale(1.05);
}

.age-btn.deny {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.age-btn.deny:hover {
  background-color: #e2e6ea;
  transform: scale(1.05);
}

.responsible-gaming {
  font-size: 0.8rem;
  color: #999;
  margin-top: 30px;
}

/* age restriction page */

.age-verification-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.age-gate-container {
  text-align: center;
  background-color: var(--light);
  padding: 4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  max-width: 500px;
  width: 90%;
  animation: fadeIn 1s ease-in-out;
  color: var(--dark);
}

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

.age-gate-container h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.age-gate-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.age-gate-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.age-gate-btn {
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

.leave-btn {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.leave-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}
