:root {
  --color-primary: #00b4ff;
  --color-primary-dark: #0090cc;
  --color-primary-light: #00b4ff;
  --color-secondary: #00b4ff;
  --color-accent: #00b4ff;

  --color-white: #ffffff;
  --color-gray-50: #b0b3c0;
  --color-gray-100: #b0b3c0;
  --color-gray-200: #b0b3c0;
  --color-gray-300: #b0b3c0;
  --color-gray-400: #b0b3c0;
  --color-gray-500: #b0b3c0;
  --color-gray-600: #b0b3c0;
  --color-gray-700: #1c1c2b;
  --color-gray-800: #151522;
  --color-gray-900: #0e0e16;
  --color-black: #0e0e16;

  --color-dark-bg: #0e0e16;
  --color-dark-bg-light: #1c1c2b;
  --color-dark-text: #ffffff;
  --color-dark-text-muted: #b0b3c0;
  --color-dark-text-light: #ffffff;

  --color-light-bg: #1c1c2b;
  --color-light-bg-gray: #151522;
  --color-light-text: #ffffff;
  --color-light-text-muted: #b0b3c0;

  --color-success: #4ade80;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #00b4ff;

  --color-gold: #ffd700;

  --opacity-overlay: 0.7;
  --opacity-muted: 0.9;
  --opacity-light: 0.8;
  --opacity-disabled: 0.5;
}

body {
  background-color: #151522;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
}

.section-about,
.section-game,
.section-features,
.section-testimonials,
.section-faq,
.section-responsible-gaming {
  position: relative;
}

.section-about::before,
.section-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 180, 255, 0.3),
    transparent
  );
  z-index: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  padding: 2rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 500px;
  background-color: var(--hero-bg-color, #1c1c2b);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--hero-overlay-color, #0e0e16);
  opacity: var(--hero-overlay-opacity, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  color: var(--hero-text-color, #ffffff);
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.hero-title {
  font-size: var(--hero-title-font-size, 56px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--spacing-md);
  color: var(--hero-title-color, #ffffff);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  color: var(--hero-subtitle-color, #b0b3c0);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: var(--font-lg);
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
  color: var(--hero-description-color, #b0b3c0);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-button-wrapper {
  margin-top: var(--spacing-lg);
}

.btn-base {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  background-color: #00b4ff;
  color: #ffffff;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.btn-base:hover {
  background-color: #0090cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 144, 204, 0.4);
}

.hero-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  background-color: #00b4ff;
  color: #ffffff;
  border: 2px solid #00b4ff;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.hero-button:hover,
.hero-button:focus {
  background-color: #0090cc;
  border-color: #0090cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 144, 204, 0.4);
}

.hero-button:active {
  transform: translateY(0);
}

.hero-layout-split .hero-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.hero-layout-split .hero-split-wrapper.image-left {
  grid-template-columns: 1fr 1fr;
}

.hero-layout-split .hero-split-wrapper.image-right {
  grid-template-columns: 1fr;
}

.hero-layout-split .hero-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-layout-split .hero-feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-layout-split .hero-content {
  text-align: center;
}

.hero-layout-split .hero-inner {
  max-width: none;
  margin: 0;
}

.hero-layout-centered .hero-content {
  text-align: center;
}

.hero-layout-centered .hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-features-bar {
  padding: 10px 0px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--features-bar-bg-color, #151522);
  color: var(--features-bar-text-color, #b0b3c0);
}

.feature-bar-icon {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.feature-bar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features-bar-icons-only {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.features-bar-icons-only .feature-bar-icon {
  margin: 0;
  padding: 12px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-bar-icons-only .feature-bar-icon img {
  height: 40px;
}

.features-bar-text-only {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

.features-bar-text-only p {
  margin: 0;
}

.features-bar-both {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.features-bar-both.layout-centered {
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
}

.features-bar-both.layout-centered .features-text-side {
  flex: 0 1 auto;
}

.features-bar-both.layout-centered .features-icons-side {
  flex-shrink: 0;
}

.features-icons-side {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.features-text-side {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.features-text-side p {
  margin: 0;
}

.features-bar-both.text-left .features-text-side {
  text-align: left;
}

.features-bar-both.text-right .features-text-side {
  text-align: right;
}

.section-features {
  position: relative;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
  color: var(--features-text-color, #ffffff);
}

.features-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-section-title {
  font-size: var(--font-4xl);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  color: var(--features-title-color, #ffffff);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-section-subtitle {
  font-size: var(--font-base);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  color: var(--features-subtitle-color, #cccccc);
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.feature-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #01b4ff !important;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 12px rgba(1, 180, 255, 0.15),
    0 2px 8px rgba(135, 206, 235, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #00b4ff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 20px rgba(1, 180, 255, 0.3),
    0 0 35px rgba(0, 180, 255, 0.2), 0 4px 15px rgba(135, 206, 235, 0.25);
}

.feature-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px;
}

.feature-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.feature-content {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.feature-content p {
  margin: 0 0 0.5rem 0;
}

.feature-content p:last-child {
  margin-bottom: 0;
}

.section-about {
  position: relative;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--about-text-color, #ffffff);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-wrapper.image-right {
  direction: ltr;
}

.about-wrapper.image-left {
  direction: ltr;
}

.about-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content-column {
  display: flex;
  align-items: center;
}

.about-content {
  width: 100%;
}

.about-feature-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-feature-image:hover {
  transform: scale(1.03);
}

.about-title {
  font-size: var(--font-5xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  color: inherit;
}

.about-subtitle {
  font-size: var(--font-2xl);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  color: inherit;
  opacity: 0.9;
}

.about-description {
  font-size: var(--font-base);
  line-height: 1.5;
  color: inherit;
  opacity: 0.85;
}

.about-description p {
  margin-bottom: var(--spacing-xs);
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-button-wrapper {
  margin-top: var(--spacing-lg);
}

.about-button {
  background-color: var(--global-button-bg-color, #00b4ff);
  color: var(--global-button-text-color, #ffffff);
  border-radius: 10px;
}

.about-button:hover {
  transform: translateY(-2px);
}

.section-game {
  position: relative;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
  background-color: var(--game-bg-color, #1c1c2b);
}

.game-top {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.game-title {
  font-size: var(--font-5xl);
  font-weight: 900;
  margin: 0 0 var(--spacing-xs) 0;
  letter-spacing: 2px;
  color: var(--game-title-color, var(--color-primary));
}

.game-subtitle {
  font-size: var(--font-2xl);
  font-weight: 600;
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: 1px;
  color: var(--game-subtitle-color, #ffffff);
}

.game-description {
  font-size: var(--font-base);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  color: var(--game-description-color, #cccccc);
}

.game-banner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  text-align: center;
  color: var(--game-banner-text-color, #ffffff);
  background-color: #00b4ff;
}

.banner-title {
  font-size: var(--font-4xl);
  font-weight: 900;
  margin: 0 0 var(--spacing-xs) 0;
  letter-spacing: 3px;
}

.banner-text {
  font-size: var(--font-base);
  line-height: 1.5;
  margin: 0 0 var(--spacing-xs) 0;
}

.banner-footer {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.game-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.game-column-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.game-column-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-title {
  font-size: var(--font-4xl);
  font-weight: 900;
  margin: 0;
  letter-spacing: 1px;
  color: var(--game-left-title-color, var(--color-primary));
}

.column-content {
  font-size: var(--font-base);
  line-height: 1.5;
  color: var(--game-left-content-color, #ffffff);
}

.column-content p {
  margin: 0 0 var(--spacing-xs) 0;
}

.column-content p:last-child {
  margin-bottom: 0;
}

.game-button {
  background-color: var(--global-button-bg-color, #00b4ff);
  color: var(--global-button-text-color, #ffffff);
  border-radius: 10px;
  margin-top: var(--spacing-sm);
}

.game-button:hover {
  transform: translateY(-2px);
}

.game-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-testimonials {
  padding: 80px 0 0 0;
  position: relative;
  background-color: var(--testimonials-bg-color, #151522);
  color: var(--testimonials-text-color, #333333);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--testimonials-title-color, #1a1a1a);
}

.testimonials-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: var(--testimonials-subtitle-color, #666666);
}

.testimonial-box,
.testimonial-slide {
  background: var(--testimonials-box-bg-color, #1c1c2b);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(1, 180, 255, 0.15),
    0 2px 10px rgba(135, 206, 235, 0.1);
  border: 2px solid #01b4ff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-box:hover,
.testimonial-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 25px rgba(1, 180, 255, 0.4),
    0 0 40px rgba(0, 180, 255, 0.2), 0 4px 20px rgba(135, 206, 235, 0.3);
  border-color: #00b4ff;
}

.testimonial-rating {
  margin-bottom: 1rem;
  text-align: center;
}

.testimonial-rating .star {
  font-size: 20px;
  color: #ddd;
  margin: 0 2px;
  transition: color 0.3s ease;
}

.testimonial-rating .star.filled {
  color: #ffd700;
  text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.testimonial-content {
  margin-bottom: 1rem;
  text-align: center;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  color: inherit;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 48px;
  color: #01b4ff;
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: serif;
}

.testimonial-content p::after {
  content: '"';
  font-size: 48px;
  color: #01b4ff;
  opacity: 0.2;
  position: absolute;
  bottom: -35px;
  right: -10px;
  font-family: serif;
}

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

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

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #01b4ff;
}

.author-position {
  font-size: 16px;
  color: #b0b3c0;
  margin: 0;
  font-weight: 500;
}

.testimonials-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: start;
}
@media (max-width: 767px) {
  .testimonials-boxes {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;
}

.testimonial-slide {
  display: none;
}

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

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

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: color-mix(
    in srgb,
    var(--testimonials-accent-color, var(--color-primary)) 10%,
    transparent
  );
  border: 2px solid
    color-mix(
      in srgb,
      var(--testimonials-accent-color, var(--color-primary)) 20%,
      transparent
    );
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--testimonials-accent-color, var(--color-primary));
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: color-mix(
    in srgb,
    var(--testimonials-accent-color, var(--color-primary)) 30%,
    transparent
  );
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--testimonials-accent-color, var(--color-primary));
  transform: scale(1.2);
}

.carousel-dot:hover {
  transform: scale(1.1);
}

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

.testimonial-box {
  animation: slideIn 0.6s ease-out;
  height: 100%;
}

.testimonial-box:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-box:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-box:nth-child(3) {
  animation-delay: 0.3s;
}

.section-faq {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--faq-bg-color, #1c1c2b);
  color: var(--faq-text-color, #ffffff);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.faq-subtitle {
  font-size: 16px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 1rem auto;
}

.faq-plain {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-plain .faq-item {
  margin-bottom: 2rem;
  text-align: center;
}

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

.faq-plain .faq-question {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #00b4ff !important;
}

.faq-plain .faq-answer {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.faq-plain .faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-plain .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-accordion .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.faq-accordion .faq-item:last-child {
  border-bottom: none;
}

.faq-accordion .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.faq-accordion .faq-question:hover {
  opacity: 0.8;
}

.faq-toggle-icon {
  font-size: 24px;
  font-weight: 300;
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-accordion .faq-answer {
  padding-bottom: 25px;
  transition: all 0.3s ease;
}

.faq-accordion .faq-answer-content {
  font-size: 16px;
  line-height: 1.5;
}

.faq-accordion .faq-answer-content p {
  margin-bottom: 0.5rem;
}

.faq-accordion .faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-accordion .faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq-accordion .faq-answer.faq-open {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 25px;
}

.faq-columns-2 .faq-plain,
.faq-columns-2 .faq-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.faq-columns-2 .faq-plain .faq-item,
.faq-columns-2 .faq-accordion .faq-item {
  break-inside: avoid;
  margin-bottom: 0;
}

.faq-columns-2 .faq-plain .faq-item {
  margin-bottom: 1rem;
}

.faq-columns-2 .faq-accordion .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subscription {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--subscription-bg-color, #151522);
  color: var(--subscription-text-color, #ffffff);
}

.subscription-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.subscription-form-wrapper,
.subscription-thank-you {
  text-align: center;
}

.subscription-layout-default .subscription-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subscription-layout-text-below .subscription-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subscription-layout-text-below .subscription-form-content {
  order: 1;
  margin-bottom: 1rem;
}

.subscription-layout-text-below .subscription-text-content {
  order: 2;
}

.subscription-layout-text-left .subscription-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.subscription-layout-text-left .subscription-text-content {
  order: 1;
}

.subscription-layout-text-left .subscription-form-content {
  order: 2;
}

.subscription-layout-text-right .subscription-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: right;
}

.subscription-layout-text-right .subscription-text-content {
  order: 2;
  text-align: right;
}

.subscription-layout-text-right .subscription-form-content {
  order: 1;
}

.subscription-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: 2px;
}

.subscription-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.subscription-form {
  max-width: 600px;
  margin: 0 auto;
}
.subscription-form-content {
  width: 100%;
}
.subscription-input-wrapper {
  margin-bottom: 1rem;
}

#subscription-email {
  width: 100%;
  padding: 20px 25px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: inherit;
}

#subscription-email:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subscription-button-wrapper {
  display: flex;
  justify-content: center;
}

.subscription-button {
  min-width: 200px;
  background-color: var(--global-button-bg-color, #00b4ff);
  color: var(--global-button-text-color, #ffffff);
  border-radius: 10px;
}

.subscription-button:hover {
  transform: translateY(-2px);
}

.subscription-thank-you {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.subscription-thank-you.show {
  opacity: 1;
  transform: translateY(0);
  display: block !important;
}

.thank-you-content {
  text-align: center;
}

.thank-you-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.thank-you-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.thank-you-icon {
  margin-top: 30px;
}

.checkmark {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: #4ade80;
  border-radius: 50%;
  color: white;
  font-size: 40px;
  line-height: 1.5;
  font-weight: bold;
  animation: checkmarkBounce 0.6s ease-in-out;
}

@keyframes checkmarkBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.subscription-form-wrapper.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}

.subscription-button.loading {
  position: relative;
  color: transparent !important;
  cursor: not-allowed;
  opacity: 0.8;
}

.subscription-button .button-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: buttonSpinner 1s linear infinite;
  opacity: 1;
}

@keyframes buttonSpinner {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.subscription-button .button-text {
  transition: opacity 0.3s ease;
}

.subscription-button.loading .button-text {
  opacity: 0;
}

.subscription-input-wrapper.error #subscription-email {
  border: 2px solid #ef4444;
  animation: shake 0.5s ease-in-out;
}

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

.error-message-text {
  color: #ef4444;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message-text.show {
  opacity: 1;
  transform: translateY(0);
}

.section-footer {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
  background-color: var(--footer-bg-color, #0b0b12);
  color: var(--footer-description-color, #cccccc);
  border-top: 1px solid var(--footer-border-color, rgba(255, 255, 255, 0.1));
}
.section-footer {
  background: #01b4ff !important;
}
.footer-layout-classic {
  text-align: center;
}

.footer-layout-classic .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-layout-classic.has-logo:not(.has-description) .footer-content {
  gap: 40px;
}

.footer-layout-classic.has-description:not(.has-logo) .footer-content {
  gap: 35px;
}

.footer-layout-classic:not(.has-menu) .footer-content {
  gap: 30px;
}

.footer-layout-classic.has-logo.has-description.has-menu .footer-content {
  gap: 45px;
}

.footer-layout-split .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-layout-split .footer-left {
  text-align: left;
}

.footer-layout-split .footer-right {
  text-align: right;
}

.footer-layout-split:not(.has-contact) .footer-content {
  gap: 60px;
}

.footer-layout-split:not(.has-menu) .footer-content {
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-layout-split:not(.has-menu) .footer-left {
  text-align: center;
}

.footer-layout-split.has-contact:not(.has-description) .footer-left > * {
  margin-bottom: 1rem;
}

.footer-layout-split.has-contact:not(.has-description)
  .footer-left
  > *:last-child {
  margin-bottom: 0;
}

.footer-layout-columns .footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr;
  gap: 50px;
  align-items: start;
  width: 100%;
}

.footer-layout-columns .footer-column {
  text-align: left;
  min-width: 0;
}

.footer-layout-columns .footer-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--footer-description-color, #cccccc);
}

.footer-layout-columns .footer-column:nth-child(1) {
  grid-column: 1;
}
.footer-layout-columns .footer-column:nth-child(2) {
  grid-column: 2;
}
.footer-layout-columns .footer-column:nth-child(3) {
  grid-column: 3;
}

.footer-layout-columns:not(.has-menu) .footer-content {
  grid-template-columns: 2fr 2fr;
  gap: 60px;
}

.footer-layout-columns:not(.has-contact) .footer-content {
  grid-template-columns: 2fr 1fr;
}

.footer-layout-columns:not(.has-menu):not(.has-contact) .footer-content {
  grid-template-columns: 1fr;
  gap: 80px;
}

.footer-layout-minimal .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-layout-minimal .footer-menu {
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

.footer-layout-minimal:not(.has-menu) .footer-content {
  justify-content: center;
  gap: 20px;
}

.footer-layout-minimal:not(.has-logo) .footer-content {
  justify-content: center;
}

.footer-logo {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-layout-split .footer-logo,
.footer-layout-columns .footer-logo {
  justify-content: flex-start;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

.footer-logo .site-title,
.footer-logo h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--footer-description-color, #cccccc);
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
}

.footer-logo .site-title:hover,
.footer-logo h4:hover {
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

.footer-logo a {
  color: inherit;
  text-decoration: none;
}

.footer-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--footer-description-color, #cccccc);
  margin: 0;
}

.footer-menu {
  margin: 20px 0;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer-layout-split .footer-menu ul,
.footer-layout-columns .footer-menu ul {
  justify-content: flex-start;
  gap: 15px;
}

.footer-layout-split .footer-right .footer-menu ul {
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 992px) {
  .footer-layout-split .footer-right .footer-menu ul {
    justify-content: center;
    align-items: center;
  }
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: var(--footer-description-color, #cccccc);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-menu a:hover {
  transform: translateY(-2px);
}

.footer-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--footer-menu-hover-color, var(--color-primary));
  transition: width 0.3s ease;
}

.footer-menu a:hover::after {
  width: 100%;
}

.footer-contact {
  margin: 20px 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--footer-description-color, #cccccc);
  font-size: 16px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: var(--footer-accent-color, var(--color-primary));
}

.footer-contact a {
  color: var(--footer-description-color, #cccccc);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  transform: translateY(-1px);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .footer-icon-link,
  .footer-icon-item {
    background: #1c1c2b;
  }
}

.footer-copyright {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--footer-description-color, #cccccc);
  font-size: 14px;
}

.footer-layout-minimal .footer-copyright {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  text-align: left;
}

.footer-copyright a {
  color: var(--footer-accent-color, var(--color-primary));
  text-decoration: none;
}

.footer-copyright a:hover {
  transform: translateY(-1px);
}

.footer-icons {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-icon-link,
.footer-icon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-icon-link:hover {
  transform: translateY(-3px) scale(1.05);
}

.footer-icon-image {
  height: 22px;
  object-fit: contain;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.footer-icon-link:hover .footer-icon-image {
  filter: brightness(1.1);
}

.section-footer.has-icons .footer-content {
  margin-bottom: 1rem;
}

.section-footer.has-icons .footer-copyright {
  margin-top: 30px;
}

.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 80px 0;
}
.contact-section > .container {
  width: 100%;
}
.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--contact-overlay-color, #0e0e16);
  opacity: var(--contact-overlay-opacity, 0.7);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--contact-title-color, #ffffff);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--contact-subtitle-color, #cccccc);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-section.simple .contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-section.left .contact-content-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-section.right .contact-content-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-image-wrapper:hover .contact-image {
  transform: scale(1.02);
}

.contact-form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section:not(.simple) .contact-header {
  text-align: left;
  margin-bottom: 2rem;
}

.footer-layout-minimal .footer-icons {
  margin-top: 20px;
  padding-top: 20px;
}

.footer-layout-columns .footer-icons-container {
  max-width: 100%;
  gap: 20px;
}

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

.section-footer {
  animation: footerFadeIn 0.6s ease-out;
}

.footer-menu a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-theme-dark {
  background-color: #0b0b12;
  border-top-color: rgba(255, 255, 255, 0.05);
}

.footer-theme-light {
  background-color: #151522;
  color: #b0b3c0;
  border-top-color: rgba(0, 0, 0, 0.1);
}

.footer-theme-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-content {
  padding: 80px 0;
  background-color: #1c1c2b;
  color: #ffffff;
}

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

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.page-content {
  font-size: 16px;
  line-height: 1.5;
  color: #b0b3c0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.page-content h1 {
  font-size: 36px;
}
.page-content h2 {
  font-size: 32px;
}
.page-content h3 {
  font-size: 28px;
}
.page-content h4 {
  font-size: 24px;
}
.page-content h5 {
  font-size: 20px;
}
.page-content h6 {
  font-size: 16px;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1rem;
  padding-left: 30px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content a {
  color: var(--color-primary, var(--color-primary));
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-content a:hover {
  transform: translateY(-1px);
}

.page-content blockquote {
  border-left: 4px solid var(--color-primary, var(--color-primary));
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #b0b3c0;
}

.page-content code {
  background-color: #151522;
  padding: 2px 6px;
  border-radius: 10px;
  font-family: "Courier New", monospace;
  font-size: 16px;
}

.page-content pre {
  background-color: #151522;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 24px 0;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.page-content table th,
.page-content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.page-content table th {
  background-color: #151522;
  font-weight: 600;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.wpcf7-not-valid {
  border-color: #ef4444 !important;
  background-color: #fff;
}

.wpcf7-not-valid-tip {
  color: #ef4444 !important;
  font-size: 14px !important;
  margin-top: 5px !important;
  display: block !important;
}

.wpcf7-form .hidden-fields-container {
  display: none;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--contact-label-color, rgba(255, 255, 255, 0.9));
}

.wpcf7-form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: var(--contact-input-bg-color, rgba(176, 179, 192, 0.1));
  color: var(--contact-form-text-color, #ffffff);
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--global-button-bg-color);
  transform: translateY(-2px);
  background-color: #fff;
  box-shadow: 0 5px 20px
    color-mix(in srgb, var(--global-button-bg-color) 20%, transparent);
}

.wpcf7-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-submit {
  align-self: flex-start;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background-color: var(--global-button-bg-color, #00b4ff);
  color: var(--global-button-text-color, #ffffff);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--global-button-bg-color, #f59e0b) 30%, transparent);
}

.wpcf7-submit:hover {
  transform: translateY(-2px);
}

.wpcf7-submit:active {
  transform: translateY(0);
}

.wpcf7-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

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

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  color: var(--contact-thank-you-color, var(--color-primary));
  background-color: color-mix(
    in srgb,
    var(--contact-thank-you-color, var(--color-primary)) 10%,
    transparent
  );
  border: 1px solid
    color-mix(
      in srgb,
      var(--contact-thank-you-color, var(--color-primary)) 30%,
      transparent
    );
}

.wpcf7-mail-sent-ok {
  color: var(--contact-thank-you-color, var(--color-primary));
  background-color: rgba(76, 222, 128, 0.1);
  border-color: rgba(76, 222, 128, 0.3);
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 0 30px;
  }

  .hero-title {
    font-size: calc(var(--hero-title-font-size, 56px) * 0.71);
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-layout-split .hero-split-wrapper {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-layout-minimal .footer-copyright {
    text-align: center;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-content-grid {
    gap: 3rem;
  }

  .contact-section {
    padding: 60px 0;
  }

  .features-header {
    margin-bottom: 3rem;
  }

  .features-section-title {
    font-size: 32px;
  }

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

  .feature-card {
    padding: 35px 25px;
  }

  .feature-title {
    font-size: 22px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    display: flex;
    flex-direction: column;
  }

  .about-content-column {
    order: 1;
  }

  .about-image-column {
    order: 2;
  }

  .about-content {
    text-align: center;
  }

  .about-title {
    font-size: calc(var(--font-4xl) * 0.8);
  }

  .about-subtitle {
    font-size: calc(var(--font-2xl) * 0.83);
  }

  .game-columns {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .game-column-left {
    text-align: center;
  }

  .game-title {
    font-size: calc(var(--font-5xl) * 0.8);
  }

  .column-title {
    font-size: 32px;
  }

  .faq-columns-2 .faq-plain,
  .faq-columns-2 .faq-accordion {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-columns-2 .faq-plain .faq-item {
    margin-bottom: 1rem;
  }

  .subscription-layout-text-left .subscription-content,
  .subscription-layout-text-right .subscription-content {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 30px;
    text-align: center;
  }

  .subscription-layout-text-left .subscription-text-content,
  .subscription-layout-text-right .subscription-text-content {
    order: 1;
    text-align: center;
    margin-bottom: 1rem;
  }

  .subscription-layout-text-left .subscription-form-content,
  .subscription-layout-text-right .subscription-form-content {
    order: 2;
  }

  .section-testimonials {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonials-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .testimonial-box,
  .testimonial-slide {
    padding: 30px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .section-footer {
    padding: 50px 0 25px;
  }

  .footer-layout-split .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-layout-split .footer-left,
  .footer-layout-split .footer-right {
    text-align: center;
  }

  .footer-layout-split .footer-logo,
  .footer-layout-split .footer-menu ul {
    justify-content: center;
  }

  .footer-layout-columns .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    text-align: center;
  }

  .footer-layout-columns .footer-column {
    text-align: center;
  }

  .footer-layout-columns .footer-logo {
    justify-content: center;
  }

  .footer-menu ul {
    justify-content: center;
    gap: 30px;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-icons-container {
    gap: 20px;
    max-width: 350px;
  }

  .footer-icon-link,
  .footer-icon-item {
    height: 55px;
  }

  .footer-icon-image {
    height: 28px;
  }
}

@media (max-width: 1023px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-section:not(.simple) .contact-header {
    text-align: center;
  }

  .contact-section {
    padding: 40px 0;
    min-height: auto;
  }

  .contact-content {
    padding: 0 15px;
  }

  .hero-section {
    min-height: 400px;
    padding: 40px 0;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: calc(var(--hero-title-font-size, 56px) * 0.57);
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero-layout-split .hero-split-wrapper,
  .hero-layout-split .hero-split-wrapper.image-left,
  .hero-layout-split .hero-split-wrapper.image-right {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
  }

  .hero-layout-split .hero-content-column {
    order: 1;
  }

  .hero-layout-split .hero-content {
    text-align: center;
  }

  .hero-layout-split .hero-feature-image {
    max-width: 80%;
  }

  .features-bar-both {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .features-bar-both.layout-centered {
    max-width: 100%;
  }

  .features-bar-both .features-text-side,
  .features-bar-both.text-right .features-text-side {
    text-align: center;
    order: 1;
  }

  .features-bar-both .features-icons-side {
    order: 2;
  }

  .features-bar-text-only {
    font-size: 14px;
    padding: 30px 0;
  }

  .features-bar-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: var(--features-bar-text-color, #ffffff);
  }

  .features-section-title {
    font-size: calc(var(--font-4xl) * 0.7);
  }

  .features-section-subtitle {
    font-size: var(--font-base);
  }

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

  .feature-card {
    padding: 25px 20px;
    text-align: center;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-content {
    font-size: 16px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-content h1 {
    font-size: 32px;
  }

  .page-content h2 {
    font-size: 28px;
  }

  .page-content h3 {
    font-size: 20px;
  }

  .page-content h4 {
    font-size: 18px;
  }

  .page-content h5 {
    font-size: 16px;
  }

  .page-content h6 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-header {
    margin-bottom: 2rem;
  }

  .hero-section {
    min-height: 350px;
    padding: 30px 0;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: calc(var(--hero-title-font-size, 56px) * 0.5);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-layout-split .hero-split-wrapper {
    gap: 20px;
  }

  .features-bar-icons-only {
    gap: 10px;
  }

  .features-bar-icons-only .feature-bar-icon {
    padding: 8px;
    width: 44px;
    height: 44px;
  }

  .features-bar-icons-only .feature-bar-icon img {
    width: 28px;
    height: 28px;
  }

  .section-container {
    padding: 0 15px;
  }

  .features-header {
    margin-bottom: 1rem;
  }

  .features-section-title {
    font-size: calc(var(--font-4xl) * 0.7);
  }

  .features-section-subtitle {
    font-size: var(--font-base);
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-content {
    font-size: 16px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .feature-icon img {
    width: 50px;
    height: 50px;
  }

  .about-title {
    font-size: calc(var(--font-4xl) * 0.7);
  }

  .about-subtitle {
    font-size: calc(var(--font-2xl) * 0.75);
  }

  .game-title {
    font-size: calc(var(--font-5xl) * 0.5);
  }

  .game-subtitle {
    font-size: calc(var(--font-2xl) * 0.75);
  }

  .game-banner {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .banner-title {
    font-size: 20px;
  }

  .section-testimonials {
    padding: 40px 0;
  }

  .testimonials-content {
    padding: 0 10px;
  }

  .testimonial-box,
  .testimonial-slide {
    padding: 20px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .carousel-controls {
    gap: 10px;
  }

  .testimonial-content {
    margin-bottom: 1rem;
  }

  .testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonial-rating .star {
    font-size: 16px;
  }

  .author-name {
    font-size: 16px;
  }

  .author-position {
    font-size: 14px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-plain .faq-question {
    font-size: 22px;
  }

  .faq-accordion .faq-question {
    font-size: 16px;
    padding: 18px 0;
  }

  .faq-toggle-icon {
    margin-left: 10px;
  }

  .subscription-container {
    padding: 0 15px;
  }

  .subscription-title {
    font-size: 28px;
  }

  .subscription-subtitle {
    font-size: 16px;
  }

  #subscription-email {
    padding: 16px 18px;
    font-size: 14px;
  }

  .subscription-button {
    min-width: 160px;
    padding: 12px 28px;
    font-size: 14px;
  }

  .thank-you-title {
    font-size: 28px;
  }

  .section-footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo .site-title {
    font-size: 24px;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .footer-icons-container {
    gap: 15px;
    max-width: 280px;
  }

  .footer-icon-link,
  .footer-icon-item {
    height: 45px;
  }

  .footer-icon-image {
    height: 24px;
  }

  .footer-copyright {
    margin-top: 25px;
    padding-top: 15px;
    font-size: 12px;
  }

  .section-content {
    padding: 40px 0;
  }

  .page-title {
    font-size: 28px;
  }

  .page-content {
    font-size: 15px;
  }

  .content-wrapper {
    max-width: 100%;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

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

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.m-0 {
  margin: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

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

.mt-3 {
  margin-top: 3rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-full {
  max-width: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-10 {
  z-index: 10;
}

.rounded {
  border-radius: 10px;
}

.rounded-lg {
  border-radius: 10px;
}

.rounded-xl {
  border-radius: 10px;
}

.rounded-full {
  border-radius: 50%;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.overflow-hidden {
  overflow: hidden;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.cookie-bar.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-content {
  flex: 1;
}

.cookie-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 1023px) {
  .cookie-bar-container {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    margin-top: 1rem;
  }

  .cookie-btn {
    flex: 1;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-btn {
    max-width: none;
  }

  .section-features,
  .section-about,
  .section-game,
  .section-testimonials,
  .section-faq,
  .section-subscription,
  .section-contact,
  .section-content {
    padding: 40px 0;
  }
}

.site-header {
  background-color: #00b4ff;
  border-bottom: 1px solid rgba(176, 179, 192, 0.1);
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.main-navigation a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.main-navigation a:hover,
.main-navigation a:focus {
  color: #000;
  transform: translateY(-1px);
}

.main-navigation a.current_page_item,
.main-navigation a.current-menu-item {
  color: #000;
}

.section-about {
  background-color: #151522 !important;
}

.section-game {
  background-color: #1c1c2b;
}

.section-testimonials {
  background-color: #151522;
}

.section-faq {
  background-color: #151522;
}

.section-subscription {
  background-color: #151522;
}

.section-footer {
  background-color: #0b0b12;
  border-top: 1px solid rgba(176, 179, 192, 0.05);
}

.about-button,
.game-button,
.subscription-button {
  background-color: #00b4ff !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.about-button:hover,
.game-button:hover,
.subscription-button:hover {
  background-color: #0090cc !important;
  box-shadow: 0 6px 20px rgba(0, 144, 204, 0.4);
}

.features-section-subtitle,
.about-description,
.game-description,
.testimonials-subtitle,
.faq-subtitle,
.subscription-subtitle {
  color: #b0b3c0 !important;
}

.features-section-title,
.about-title,
.game-title,
.testimonials-title,
.faq-title,
.subscription-title {
  color: #ffffff !important;
}

.wpcf7-submit {
  background-color: #00b4ff !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.wpcf7-submit:hover {
  background-color: #0090cc !important;
  box-shadow: 0 6px 20px rgba(0, 144, 204, 0.4);
}

.custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #01b4ff;
  border-radius: 10px;
  background-color: rgba(28, 28, 43, 0.8);
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 8px rgba(1, 180, 255, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00b4ff;
  transform: translateY(-2px);
  background-color: rgba(28, 28, 43, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 180, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b3c0;
  opacity: 0.7;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.contact-submit-btn {
  padding: 15px 40px;
  background-color: #00b4ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

.contact-submit-btn:hover {
  background-color: #0090cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 144, 204, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-thank-you-message {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(28, 28, 43, 0.9);
  border: 2px solid #01b4ff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(1, 180, 255, 0.2);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.contact-thank-you-message.show {
  opacity: 1;
  transform: translateY(0);
}

.thank-you-icon {
  margin-bottom: 1.5rem;
}

.thank-you-icon .checkmark {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: #00b4ff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  line-height: 80px;
  font-weight: bold;
  animation: checkmarkBounce 0.6s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.4);
}

.thank-you-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.thank-you-text {
  font-size: 1.1rem;
  color: #b0b3c0;
  margin: 0;
  line-height: 1.6;
}

.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.age-modal-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: ageModalSlideIn 0.3s ease-out;
}

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

.age-modal-logo {
  margin-bottom: 1rem;
}

.age-modal-logo img {
  max-width: 120px;
  max-height: 60px;
  height: auto;
  width: auto;
}

.age-modal-site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

.age-modal-header {
  margin-bottom: 1.5rem;
}

.age-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.age-modal-subtitle {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.8;
}

.age-modal-checkboxes {
  margin: 1.5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.age-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: max-content;
}

.age-checkbox {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: black;
}

.age-checkbox-text {
  flex: 1;
  color: inherit;
}

.age-modal-text {
  margin: 1.5rem 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.age-modal-text p {
  margin: 0;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.age-modal-button {
  background-color: #00b4ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
  flex: 1;
  max-width: 200px;
}

.age-modal-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.age-modal-button:active:not(:disabled) {
  transform: translateY(0);
}

.age-modal-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.age-modal-button:focus {
  outline: 3px solid rgba(30, 58, 138, 0.3);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .age-modal-content {
    margin: 1rem;
    padding: 1.5rem;
    max-height: 85vh;
  }

  .age-modal-title {
    font-size: 1.3rem;
  }

  .age-modal-subtitle {
    font-size: 0.9rem;
  }

  .age-modal-site-title {
    font-size: 1.3rem;
  }

  .age-checkbox-label {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .age-checkbox {
    width: 16px;
    height: 16px;
  }

  .age-modal-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .age-modal-button {
    width: 100%;
    padding: 1rem;
    max-width: none;
    flex: none;
  }
}

@media (max-width: 400px) {
  .age-verification-modal {
    padding: 0.5rem;
  }

  .age-modal-content {
    padding: 1.25rem;
    border-radius: 10px;
  }

  .age-modal-title {
    font-size: 1.2rem;
  }

  .age-modal-site-title {
    font-size: 1.2rem;
  }
}

@media (prefers-contrast: high) {
  .age-modal-content {
    border-width: 3px;
  }

  .age-modal-button:focus {
    outline-width: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-modal-content {
    animation: none;
  }

  .age-modal-button {
    transition: none;
  }

  .age-modal-button:hover:not(:disabled) {
    transform: none;
  }
}

.feature-icon {
  background: #00b4ff !important;
  border-radius: 10% !important;
}

.feature-icon img {
  border-radius: 10% !important;
}

.features-section-title,
.feature-title {
  color: #ffffff !important;
}

.features-section-subtitle,
.feature-content {
  color: #ffffff !important;
}

.game-banner {
  border-radius: 10px !important;
}

.game-image {
  border-radius: 10px !important;
}

.section-about {
  color: #ffffff !important;
}

.site-header[style*="background-color: #ffffff"] {
  background-color: #151522 !important;
}

.site-header[style*="color: #000000"] {
  color: #ffffff !important;
}

.logo-height-35 {
  height: 35px !important;
}

.hero-overlay-custom {
  background-color: #0e0e16 !important;
  opacity: 0 !important;
}

.footer-container-full {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1440px) {
  .footer-container-full {
    padding: 0 20px;
  }
}

.testimonial-box,
.testimonial-slide {
  border: 2px solid #01b4ff !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(1, 180, 255, 0.25),
    0 4px 15px rgba(135, 206, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  transform: translateY(0);
  transition: all 0.3s ease;
  border-radius: 10px !important;
}

.testimonial-box:hover,
.testimonial-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(1, 180, 255, 0.35),
    0 6px 20px rgba(135, 206, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.feature-card {
  border: 2px solid #00b4ff !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 180, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  background: linear-gradient(135deg, #1c1c2b 0%, #151522 100%) !important;
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 180, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 180, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.feature-card:hover::before {
  left: 100%;
}

.btn-base,
.hero-button,
.about-button,
.game-button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(0, 180, 255, 0.3) !important;
}

.btn-base::before,
.hero-button::before,
.about-button::before,
.game-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.btn-base:hover::before,
.hero-button:hover::before,
.about-button:hover::before,
.game-button:hover::before {
  left: 100%;
}

.btn-base:hover,
.hero-button:hover,
.about-button:hover,
.game-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.4) !important;
}

.game-image {
  border-radius: 10px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 180, 255, 0.15);
  transition: all 0.3s ease;
}

.game-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 180, 255, 0.25);
}

.about-feature-image {
  border-radius: 10px !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 180, 255, 0.1);
  transition: all 0.3s ease;
}

.about-feature-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 180, 255, 0.2);
}

.game-banner {
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #1c1c2b 0%, #151522 100%) !important;
  border: 1px solid rgba(0, 180, 255, 0.2) !important;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 255, 0.05) 0%,
    rgba(28, 28, 43, 0.3) 100%
  ) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0, 180, 255, 0.15) !important;
  margin-bottom: 15px !important;
  padding: 20px !important;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 255, 0.1) 0%,
    rgba(28, 28, 43, 0.4) 100%
  ) !important;
  border-color: rgba(0, 180, 255, 0.3) !important;
  transform: translateX(5px);
}

.hero-section {
  border-bottom: 2px solid rgba(0, 180, 255, 0.3);
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 180, 255, 0.6),
    transparent
  );
}

.section-game,
.section-features,
.section-testimonials {
  position: relative;
}

.section-game::before,
.section-features::before,
.section-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 180, 255, 0.4),
    transparent
  );
}

.top-game-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 80px 0;
  box-shadow: inset 0 0 100px rgba(0, 180, 255, 0.1);
}

.top-game-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7),
    rgba(28, 28, 43, 0.8)
  );
  z-index: 1;
}

.top-game-banner-content {
  text-align: center;
  color: white;
}

.top-game-banner-badge {
  background: linear-gradient(45deg, #00b4ff, #01b4ff);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-game-banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.top-game-banner-description {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.4;
}

.top-game-banner-button {
  background: linear-gradient(45deg, #00b4ff, #0099dd);
  color: white;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.top-game-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 255, 0.4);
}

.faq-title-white {
  color: #ffffff !important;
}

.faq-subtitle-white {
  color: #ffffff !important;
}

.faq-question-red {
  color: #00b4ff !important;
}

.faq-answer-white {
  color: #ffffff !important;
}

.cookie-bar-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.cookie-accept-button {
  background-color: #05896a;
  color: #ffffff;
}

.cookie-decline-button {
  background-color: #666666;
  color: #ffffff;
}

.age-modal-hidden {
  display: none;
}

.age-modal-overlay-dark {
  background-color: #000000;
  opacity: 0.8;
}

.age-modal-content-light {
  background-color: #ffffff;
  border-color: #e5e5e5;
  color: #333333;
}

.age-modal-continue-button {
  background-color: #33ea82;
  color: #ffffff;
}

.age-modal-exit-button {
  background-color: #dc2626;
  color: #ffffff;
}

.responsible-gaming-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0e0e16 100%);
  padding: 60px 0;
  border-top: 2px solid #00b4ff;
  box-shadow: inset 0 0 50px rgba(0, 180, 255, 0.1),
    0 -10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.responsible-gaming-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.responsible-gaming-header {
  margin-bottom: 40px;
}

.responsible-gaming-title {
  color: #00b4ff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.responsible-gaming-description {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

.responsible-gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.gaming-tip {
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.3);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.gaming-tip-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.gaming-tip-title {
  color: #00b4ff;
  font-size: 18px;
  margin-bottom: 10px;
}

.gaming-tip-text {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.8;
}

.responsible-gaming-resources {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
}

.responsible-gaming-resources-title {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.responsible-gaming-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.responsible-gaming-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00b4ff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.responsible-gaming-link:hover {
  opacity: 0.8;
}

.responsible-gaming-disclaimer {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
  line-height: 1.5;
}

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

.text-center-white {
  text-align: center;
  color: white;
}

.contact-title-white {
  color: #ffffff !important;
}

.contact-subtitle-white {
  color: #ffffff !important;
}

.contact-form-hidden {
  display: none;
}

.footer-description-dark {
  color: #000000;
}

.features-section-title-white {
  color: #ffffff !important;
}

.features-section-subtitle-white {
  color: #ffffff !important;
}

.feature-title-white {
  color: #ffffff !important;
}

.feature-content-white {
  color: #ffffff !important;
}

.feature-icon-bg {
  background: #ffffff;
  border-radius: 10%;
}

.feature-icon-img {
  border-radius: 10%;
}

.hero-overlay-dark {
  background-color: #000000;
  opacity: 0;
}

.logo-height-35 {
  height: 35px;
}

.features-bar-light {
  background-color: #ffffff;
  color: #000000;
}
