:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #6d28d9;
  --color-primary-light: #9333ea;
  --color-secondary: #f59e0b;
  --color-accent: #5b3ff5;

  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-black: #000000;

  --color-dark-bg: #0a0a0a;
  --color-dark-bg-light: #1a1a1a;
  --color-dark-text: #ffffff;
  --color-dark-text-muted: #cccccc;
  --color-dark-text-light: #e5e7eb;

  --color-light-bg: #ffffff;
  --color-light-bg-gray: #f8f9fa;
  --color-light-text: #333333;
  --color-light-text-muted: #666666;

  --color-success: #4ade80;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;

  --color-gold: #ffd700;

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

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

.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, #1e3a8a);
  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, #000000);
  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: 80px !important;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--features-title-color, #ffffff) !important;
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 60px !important;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 50px !important;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px !important;
  }
}
.hero-subtitle {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--spacing-md);
  color: var(--hero-subtitle-color, #e5e7eb);
  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, #d1d5db);
  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: var(--global-button-border-radius, 30px);
  background-color: var(--global-button-bg-color, #f59e0b);
  color: var(--global-button-text-color, #ffffff);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.hero-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  background-color: var(--global-button-bg-color, #f59e0b);
  color: var(--global-button-text-color, #ffffff);
  border: 2px solid var(--global-button-bg-color, #f59e0b);
  border-radius: var(--global-button-border-radius, 30px);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--global-button-bg-color, #f59e0b) 30%, transparent);
}

.hero-button:hover,
.hero-button:focus {
  transform: translateY(-2px);
}

.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 1fr;
}

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

.hero-layout-split .hero-image-column {
  display: flex;
  align-items: center;
  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, #f8f9fa);
  color: var(--features-bar-text-color, #333333);
}

.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: 8px;
  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;
  background-color: var(--features-bg-color, #1a1a1a);
  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-5xl);
  font-weight: 700;
  line-height: 1.2;
  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;
  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;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px
    color-mix(
      in srgb,
      var(--feature-border-color, rgba(0, 0, 0, 0.2)) 30%,
      transparent
    );
}

.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-color: var(--about-bg-color, #1a1a1a);
  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: 8px;
  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.2;
  color: inherit;
  color: var(--features-title-color, #ffffff);
}

.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, #f59e0b);
  color: var(--global-button-text-color, #ffffff);
  border-radius: var(--global-button-border-radius, 30px);
}

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

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

.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(--features-title-color, #ffffff);
}

.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;
  background-color: var(--game-banner-bg-color, #5b3ff5);
  color: var(--game-banner-text-color, #ffffff);
}

.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, #f59e0b);
  color: var(--global-button-text-color, #ffffff);
  border-radius: var(--global-button-border-radius, 30px);
  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;
  position: relative;
  background-color: var(--testimonials-bg-color, #f8f9fa);
  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: var(--font-5xl);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--features-title-color, #ffffff);
}

.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, #ffffff);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.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;
  color: #1a1a1a;
}

.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: var(--testimonials-accent-color, rgba(124, 58, 237, 0.2));
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: serif;
}

.testimonial-content p::after {
  content: '"';
  font-size: 48px;
  color: var(--testimonials-accent-color, rgba(124, 58, 237, 0.2));
  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: #1a1a1a;
}

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

.testimonials-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: start;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 16px;
  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, #1a1a1a);
  color: var(--faq-text-color, #ffffff);
}

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

.faq-title {
  font-size: var(--font-5xl);
  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 .faq-item {
  margin-bottom: 1rem;
}

.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;
}

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

.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.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.faq-accordion .faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e5b84b, #d4a03a);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion .faq-question:hover {
  transform: translateX(10px);
  color: #f0c456;
}

.faq-accordion .faq-question:hover::before {
  width: 100%;
}

.faq-toggle-icon {
  font-size: 24px;
  font-weight: 300;
  min-width: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-left: 20px;
  flex-shrink: 0;
  background: rgba(229, 184, 75, 0.1);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion .faq-question:hover .faq-toggle-icon {
  background: rgba(229, 184, 75, 0.2);
  transform: scale(1.1) rotate(180deg);
}

.faq-accordion .faq-item[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
  background: rgba(229, 184, 75, 0.3);
}

.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;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(229, 184, 75, 0.03);
  border-radius: 8px;
  margin-top: 10px;
}

.faq-accordion .faq-answer.faq-open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
  border: 1px solid rgba(229, 184, 75, 0.1);
}

.faq-accordion .faq-answer-content {
  font-size: 16px;
  line-height: 1.6;
  animation: slideInContent 0.4s ease 0.1s both;
}

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

.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, #1a1a1a);
  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: 8px;
  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, #f59e0b);
  color: var(--global-button-text-color, #ffffff);
  border-radius: var(--global-button-border-radius, 30px);
}

.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, #1a1a1a);
  color: var(--footer-description-color, #cccccc);
  border-top: 1px solid var(--footer-border-color, rgba(255, 255, 255, 0.1));
}

.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: 2fr 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);
  max-width: 400px;
  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;
  flex-direction: column;
  gap: 15px;
}

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

.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: #ffffff;
  }
}

.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;
  max-width: 400px;
  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: 26px;
  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-color: var(--contact-bg-color, #1a1a1a);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 80px 0;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--contact-overlay-color, #000000);
  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 {
  width: 100%;
  max-width: 800px;
  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: 12px;
  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: 12px;
  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: #0f0f0f;
  border-top-color: rgba(255, 255, 255, 0.05);
}

.footer-theme-light {
  background-color: #f8f9fa;
  color: #333333;
  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: #ffffff;
  color: #333333;
}

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

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

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

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: #1a1a1a;
  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: #666666;
}

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

.page-content pre {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  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: #f9fafb;
  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: 8px;
  background-color: var(--contact-input-bg-color, rgba(255, 255, 255, 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: var(--global-button-border-radius, 30px);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background-color: var(--global-button-bg-color, #f59e0b);
  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: 8px;
  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: repeat(auto-fit, minmax(300px, 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: 768px) {
  .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-image-column {
    order: 2;
  }

  .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 {
    gap: 8px;
    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: 16px;
  }

  .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: 8px;
}

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

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

.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: 6px;
  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: 768px) {
  .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;
  }
}

.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: 12px;
  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: gold;
}

.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: #1e3a8a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  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: 8px;
  }

  .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;
  }
}

.gtm-noscript-iframe {
  display: none;
  visibility: hidden;
  height: 0;
  width: 0;
}

.mobile-menu-logo img {
  height: 35px;
}

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

.hero-overlay-dark {
  background-color: #1e1e1e;
  opacity: 1;
}

.contact-section-dark {
  background-color: #1e1e1e;
}

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

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

.contact-info-text {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
}

.footer-white-bg {
  background-color: #ffffff;
  --footer-accent-color: #e5b84b;
  --footer-menu-hover-color: #e5b84b;
  --footer-title-color: #ffffff;
  --footer-description-color: #000000;
}

.section-footer,
.section-testimonials {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

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

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

.cookie-accept-yellow {
  background-color: #e5b84b;
  color: #ffffff;
}

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

.age-verification-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-submit-green {
  background-color: #33ea82;
  color: #ffffff;
}

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

.section-features-dark {
  background-color: #1e1e1e;
}

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

.feature-card-bordered {
  border: 3px solid #e5b84b;
  border-radius: 15px;
  --feature-border-color: #e5b84b;
}

.about-card-title {
  color: #e5b84b;
}

.about-card-content {
  color: #ffffff;
}

.game-banner-default {
  background-color: #f59e0b;
}

.banner-text-gold {
  color: #ffd700;
}

.banner-text-white {
  color: #ffffff;
}

.faq-title-gold {
  color: #e5b84b;
}

.faq-subtitle-gray {
  color: rgba(255, 255, 255, 0.7);
}

.subscription-section-dark {
  background-color: #1e1e1e;
}

.subscription-title-gold {
  color: #e5b84b;
}

.subscription-subtitle-gray {
  color: rgba(255, 255, 255, 0.7);
}

.section-why-choose {
  padding: 80px 0;
  background: #1e1e1e;
  position: relative;
  overflow: hidden;
}

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

.why-choose-title {
  font-weight: 700;
  color: #e5b84b;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: var(--font-5xl);
}

.why-choose-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 184, 75, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e5b84b, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.why-choose-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(229, 184, 75, 0.4);
  box-shadow: 0 10px 30px rgba(229, 184, 75, 0.1);
}

.why-choose-item:hover::before {
  transform: translateX(100%);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(229, 184, 75, 0.1);
  border: 2px solid #e5b84b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #e5b84b;
  transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
  background: rgba(229, 184, 75, 0.2);
  transform: rotate(5deg) scale(1.05);
}

.why-choose-item-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-choose-item-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .section-why-choose {
    padding: 60px 0;
  }

  .why-choose-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .why-choose-title {
    font-size: 36px;
  }

  .why-choose-subtitle {
    font-size: 16px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .why-choose-item {
    padding: 30px 20px;
  }

  .why-choose-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 20px;
  }

  .why-choose-item-title {
    font-size: 20px;
  }

  .why-choose-item-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .why-choose-title {
    font-size: 28px;
  }

  .why-choose-item {
    padding: 25px 15px;
  }

  .why-choose-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .why-choose-item-title {
    font-size: 18px;
  }

  .why-choose-item-description {
    font-size: 14px;
  }
}

.section-responsible-gaming {
  padding: 80px 0;
  background: #1e1e1e;
  position: relative;
  overflow: hidden;
}

.responsible-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.responsible-title {
  font-size: 48px;
  font-weight: 700;
  color: #e5b84b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.responsible-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.responsible-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.responsible-main-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(229, 184, 75, 0.3);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.responsible-commitment {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(229, 184, 75, 0.2);
}

.responsible-commitment-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e5b84b 0%, #d4a03a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 10px 30px rgba(229, 184, 75, 0.3);
}

.responsible-commitment-text {
  flex: 1;
}

.responsible-commitment-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.responsible-commitment-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.responsible-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.responsible-tip {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.responsible-tip-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(229, 184, 75, 0.15);
  border: 2px solid #e5b84b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 5px;
}

.responsible-tip-text {
  flex: 1;
}

.responsible-tip-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.responsible-tip-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.responsible-resources {
  background: rgba(229, 184, 75, 0.05);
  border: 1px solid rgba(229, 184, 75, 0.2);
  border-radius: 15px;
  padding: 30px;
}

.responsible-resources-title {
  font-size: 24px;
  font-weight: 600;
  color: #e5b84b;
  margin-bottom: 20px;
  text-align: center;
}

.responsible-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.responsible-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 184, 75, 0.2);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.responsible-resource-link:hover {
  background: rgba(229, 184, 75, 0.1);
  border-color: #e5b84b;
  transform: translateY(-2px);
}

.responsible-resource-icon {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 184, 75, 0.2);
  color: #e5b84b;
  font-size: 16px;
}

.responsible-resource-info {
  flex: 1;
}

.responsible-resource-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  display: block;
}

.responsible-resource-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.responsible-reminder {
  margin-top: 40px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(229, 184, 75, 0.1) 0%,
    rgba(229, 184, 75, 0.05) 100%
  );
  border-left: 4px solid #e5b84b;
  border-radius: 10px;
}

.responsible-reminder-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (max-width: 992px) {
  .responsible-main-card {
    padding: 40px 30px;
  }

  .responsible-tips {
    grid-template-columns: 1fr;
  }

  .responsible-commitment {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-responsible-gaming {
    padding: 60px 0;
  }

  .responsible-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .responsible-title {
    font-size: 36px;
  }

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

  .responsible-main-card {
    padding: 30px 20px;
    margin: 0 15px 30px;
  }

  .responsible-commitment-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .responsible-commitment-title {
    font-size: 24px;
  }

  .responsible-commitment-description {
    font-size: 16px;
  }

  .responsible-resources-grid {
    grid-template-columns: 1fr;
  }

  .responsible-reminder {
    padding: 20px;
  }

  .responsible-reminder-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .responsible-title {
    font-size: 28px;
  }

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

  .responsible-main-card {
    padding: 25px 15px;
  }

  .responsible-commitment-title {
    font-size: 20px;
  }

  .responsible-tip-title {
    font-size: 16px;
  }

  .responsible-tip-description {
    font-size: 14px;
  }

  .responsible-resource-link {
    padding: 12px 15px;
  }

  .responsible-resource-name {
    font-size: 14px;
  }

  .responsible-reminder-text {
    font-size: 14px;
  }
}

.section-game-week {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #1e1e1e;
}

.game-week-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.game-week-text {
  flex: 1;
  max-width: 600px;
}

.game-week-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e5b84b 0%, #d4a03a 100%);
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(229, 184, 75, 0.3);
}

.game-week-badge-icon {
  font-size: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.game-week-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-week-subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #e5b84b;
  margin-bottom: 25px;
  line-height: 1.2;
}

.game-week-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
}

.game-week-features {
  display: grid;
  gap: 15px;
  margin-bottom: 35px;
}

.game-week-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 184, 75, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.game-week-feature:hover {
  background: rgba(229, 184, 75, 0.1);
  border-color: rgba(229, 184, 75, 0.4);
  transform: translateX(5px);
}

.game-week-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 184, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #e5b84b;
  flex-shrink: 0;
}

.game-week-feature-text {
  flex: 1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.game-week-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.game-week-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #e5b84b 0%, #d4a03a 100%);
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(229, 184, 75, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-week-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(229, 184, 75, 0.5);
  background: linear-gradient(135deg, #f0c456 0%, #e5b84b 100%);
}

.game-week-play-icon {
  font-size: 24px;
}

.game-week-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.game-week-visual {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.game-week-screenshot {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(229, 184, 75, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.game-week-screenshot:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 30px 80px rgba(229, 184, 75, 0.3);
  border-color: #e5b84b;
}

.game-week-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(
    circle,
    rgba(229, 184, 75, 0.3) 0%,
    transparent 70%
  );
  border-radius: 20px;
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.game-week-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(229, 184, 75, 0.2);
}

.game-week-stat {
  text-align: center;
}

.game-week-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #e5b84b;
  display: block;
  margin-bottom: 5px;
}

.game-week-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .game-week-content {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .game-week-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .game-week-text {
    max-width: 100%;
  }

  .game-week-title {
    font-size: 48px;
  }

  .game-week-subtitle {
    font-size: 28px;
  }

  .game-week-buttons {
    justify-content: center;
  }

  .game-week-stats {
    justify-content: center;
  }

  .game-week-visual {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-game-week {
    padding: 80px 0;
  }

  .game-week-content {
    padding: 0 15px;
  }

  .game-week-title {
    font-size: 36px;
  }

  .game-week-subtitle {
    font-size: 24px;
  }

  .game-week-description {
    font-size: 16px;
  }

  .game-week-features {
    gap: 10px;
  }

  .game-week-feature {
    padding: 12px 15px;
  }

  .game-week-feature-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .game-week-feature-text {
    font-size: 15px;
  }

  .game-week-play-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  .game-week-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .game-week-stat-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-game-week {
    padding: 60px 0;
  }

  .game-week-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .game-week-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .game-week-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .game-week-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .game-week-feature {
    padding: 10px 12px;
  }

  .game-week-feature-text {
    font-size: 14px;
  }

  .game-week-play-btn {
    padding: 12px 25px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .game-week-visual {
    max-width: 100%;
  }

  .game-week-screenshot {
    border-radius: 15px;
  }

  .game-week-stat-value {
    font-size: 24px;
  }

  .game-week-stat-label {
    font-size: 12px;
  }
}

.contact-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 184, 75, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(229, 184, 75, 0.3), transparent);
  border-radius: 0 0 100% 0;
}

.contact-form::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent, rgba(229, 184, 75, 0.3));
  border-radius: 100% 0 0 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.floating-label {
  position: relative;
  margin-bottom: 30px;
}

.form-label {
  display: block;
  color: #e5b84b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.floating-label .form-label {
  position: absolute;
  left: 15px;
  top: 15px;
  background: rgba(30, 30, 30, 0.9);
  padding: 0 8px;
  margin: 0;
  font-size: 16px;
  color: rgba(229, 184, 75, 0.7);
  transform-origin: left top;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 2;
}

.floating-label .form-textarea + .form-label {
  top: 20px;
}

.floating-label .form-input:focus + .form-label,
.floating-label .form-input:not(:placeholder-shown) + .form-label,
.floating-label .form-textarea:focus + .form-label,
.floating-label .form-textarea:not(:placeholder-shown) + .form-label {
  transform: translateY(-35px) scale(0.85);
  color: #e5b84b;
  font-weight: 700;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 184, 75, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: inherit;
  position: relative;
  z-index: 1;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  transition: opacity 0.3s ease;
}

.form-input:hover,
.form-textarea:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(229, 184, 75, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(229, 184, 75, 0.1);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #e5b84b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 184, 75, 0.2),
    0 0 0 3px rgba(229, 184, 75, 0.1);
}

.form-input:focus::before,
.form-textarea:focus::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(229, 184, 75, 0.1),
    transparent
  );
  border-radius: 10px;
  z-index: -1;
  animation: gentleGlow 2s ease-in-out infinite;
}

@keyframes gentleGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

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

.form-submit-wrapper {
  text-align: center;
  margin-top: 30px;
}

.form-submit-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #e5b84b 0%, #d4a03a 100%);
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(229, 184, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.form-submit-btn::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.6s;
}

.form-submit-btn:hover::before {
  left: 100%;
}

.form-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(229, 184, 75, 0.4);
  background: linear-gradient(135deg, #f0c456 0%, #e5b84b 100%);
}

.form-submit-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-block;
}

.thank-you-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(229, 184, 75, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

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

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e5b84b 0%, #d4a03a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #1a1a1a;
  box-shadow: 0 5px 20px rgba(229, 184, 75, 0.3);
  animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-title {
  font-size: 36px;
  font-weight: 700;
  color: #e5b84b;
  margin-bottom: 15px;
  animation: fadeIn 0.5s ease 0.3s both;
}

.thank-you-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeIn 0.5s ease 0.4s both;
}

.thank-you-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #e5b84b;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #e5b84b;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeIn 0.5s ease 0.5s both;
}

.thank-you-btn:hover {
  background: #e5b84b;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 184, 75, 0.3);
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: block !important;
  }

  .primary-menu-container {
    display: none;
  }

  .primary-menu-container.active {
    display: block !important;
  }

  .nav-menu .sub-menu,
  .primary-menu-container .sub-menu {
    background-color: var(--nav-submenu-bg-color);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(229, 184, 75, 0.2);
  }

  .mobile-menu-close {
    background: none;
    border: none;
    color: var(--nav-text-color, #e5b84b);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .mobile-menu-close:hover {
    color: #f0c456;
    transform: rotate(90deg);
  }

  .mobile-menu-logo img {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none !important;
  }

  .primary-menu-container {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 20px;
  }

  .form-input,
  .form-textarea {
    padding: 12px;
    font-size: 15px;
  }

  .form-submit-btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .thank-you-wrapper {
    padding: 40px 30px;
  }

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

  .thank-you-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 25px 15px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 14px;
  }

  .form-input,
  .form-textarea {
    padding: 10px;
    font-size: 14px;
  }

  .form-submit-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }

  .thank-you-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

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

  .thank-you-text {
    font-size: 15px;
  }

  .thank-you-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
