@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}
body {
  color: #e5e5e5;
  background: #0f1a3d;
  min-height: 100vh;
  font-family: Inter, Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
body:before {
  content: "";
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(128, 128, 128, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(128, 128, 128, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(128, 128, 128, 0.05) 0%,
      transparent 50%
    );
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.inter-font {
  font-family: Inter, Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}
.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #e5e5e5;
  z-index: 1000;
  background: #1a2a5c;
  border-bottom: 1px solid rgba(15, 26, 61, 0.4);
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 20px rgba(15, 26, 61, 0.3);
}
.header:before,
.header:after {
  content: none;
  display: none;
}
.header-content {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  position: relative;
}
.logo {
  color: #e5e5e5;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}
.logo img {
  width: auto;
  height: 35px;
  max-height: 50px;
}
.nav {
  align-items: center;
  gap: 2rem;
  display: flex;
  position: absolute;
  right: 50%;
  transform: translate(50%);
}
.nav-link {
  color: #e5e5e5;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-link:hover {
  color: #fff;
  background: rgba(128, 128, 128, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}
.nav-links {
  gap: 0.5rem;
  margin: 0;
  list-style: none;
  display: flex;
}
.nav-links a {
  color: #3a4a7c;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-links a:hover {
  color: #e5e5e5;
  background: rgba(128, 128, 128, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}
.header-actions {
  z-index: 10;
  align-items: center;
  gap: 0.8rem;
  display: flex;
  position: relative;
}
.mobile-menu-btn {
  cursor: pointer;
  z-index: 1001;
  background: 0 0;
  border: none;
  order: -1;
  padding: 0.5rem;
  display: none;
}
.hamburger {
  flex-direction: column;
  width: 24px;
  height: 18px;
  display: flex;
  position: relative;
}
.hamburger span {
  transform-origin: 50%;
  background: #e5e5e5;
  border-radius: 1px;
  width: 100%;
  height: 2px;
  transition: all 0.3s;
  display: block;
}
.hamburger span:first-child,
.hamburger span:nth-child(2) {
  margin-bottom: 6px;
}
.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.mobile-menu {
  z-index: 1000;
  opacity: 0;
  background: #1e1e1e;
  border-top: 1px solid #333;
  transition: all 0.3s;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav {
  flex-direction: column;
  padding: 1rem 0;
  display: flex;
}
.mobile-nav-link {
  color: #e5e5e5;
  border-bottom: 1px solid #333;
  padding: 1rem 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.mobile-nav-link:hover {
  color: #fff;
  background: rgba(128, 128, 128, 0.1);
}
.mobile-actions {
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  display: flex;
}
.mobile-actions .btn {
  text-align: center;
  width: 100%;
  padding: 0.8rem 1.5rem;
}
.header-actions .btn {
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 0.9rem;
}
.header-buttons {
  z-index: 10;
  gap: 1rem;
  display: flex;
  position: relative;
}
.btn {
  cursor: pointer;
  text-align: center;
  pointer-events: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn * {
  z-index: 2;
  position: relative;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.5);
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover {
  opacity: 0.9;
}
.btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #ff6b6b;
}
.btn-primary {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  background: linear-gradient(135deg, #2a3a6c 0%, #1a2a5c 100%);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  position: relative;
  box-shadow: 0 4px 15px rgba(15, 26, 61, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  z-index: 11;
  background: linear-gradient(135deg, #3a4a7c 0%, #2a3a6c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 26, 61, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.3);
}
.btn-secondary {
  color: #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 10;
  background: 0 0;
  border: 2px solid #2a3a6c;
  border-radius: 8px;
  font-weight: 700;
  position: relative;
  box-shadow: 0 0 10px rgba(15, 26, 61, 0.4);
}
.btn-secondary:hover {
  color: #e5e5e5;
  z-index: 11;
  background: rgba(15, 26, 61, 0.2);
  border-color: #3a4a7c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 26, 61, 0.5), 0 0 15px rgba(15, 26, 61, 0.4);
}
.btn-join {
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  position: relative;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.2);
}
.btn-join:hover {
  z-index: 11;
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.3);
}
.main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}
.hero {
  color: #e5e5e5;
  text-align: center;
  background: #0f1a3d;
  border-radius: 0;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  z-index: 3;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-background {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-bg-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: brightness(0.6);
  width: 100%;
  height: 100%;
}
.hero-overlay-bg {
  z-index: 2;
  background: linear-gradient(
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-content {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 20px;
  display: flex;
  position: relative;
}
.hero-content.image-left {
  flex-direction: row;
}
.hero-content.image-left .hero-image {
  flex: 1;
  order: 1;
}
.hero-content.image-left .hero-text {
  flex: 1;
  order: 2;
}
.hero-content.two-images {
  flex-direction: row;
}
.hero-content.two-images .hero-images {
  flex-direction: column;
  flex: 1;
  order: 1;
  gap: 1rem;
  display: flex;
}
.hero-content.two-images .hero-text {
  flex: 1;
  order: 2;
}
.hero-text {
  text-align: center;
  margin-bottom: 0;
}
.hero-text h1 {
  order: 1;
}
.hero-text p {
  order: 2;
}
.hero-buttons {
  order: 3;
}
.hero-image {
  display: none;
}
.hero-text h1 {
  color: #e5e5e5;
  z-index: 1;
  text-shadow: 0 0 20px rgba(128, 128, 128, 0.3);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  position: relative;
}
.hero-text p {
  color: #e5e5e5;
  z-index: 1;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  line-height: 1.6;
  position: relative;
}
.hero-buttons {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
}
.hero-buttons .btn {
  text-align: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.hero-image {
  text-align: center;
}
.hero-image img {
  z-index: 1;
  border-radius: 15px;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  position: relative;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
}
.hero-image img:hover {
  transform: scale(1.05);
}
.section {
  margin: 2rem;
  padding: 4rem 0;
}
.section h2 {
  color: #e5e5e5;
  text-shadow: 0 0 15px rgba(128, 128, 128, 0.4);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
}
.section p {
  color: #e5e5e5;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.7;
}
.section.alternate {
  margin: 2rem;
  padding: 4rem 0;
}
.section.alternate .container {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  display: flex;
}
.section.alternate .section-content {
  flex: 1;
}
.section.alternate .section-image {
  text-align: center;
  flex: 1;
}
.section.alternate .section-image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  box-shadow: 0 20px 40px rgba(245, 101, 101, 0.4);
}
.section.alternate .section-image img:hover {
  transform: scale(1.05);
}
.section.two-images {
  margin: 2rem;
  padding: 4rem 0;
}
.section.two-images .container {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  display: flex;
}
.section.two-images .section-content {
  flex: 1;
}
.section.two-images .section-images {
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
  display: flex;
}
.section.two-images .section-images img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  box-shadow: 0 20px 40px rgba(245, 101, 101, 0.4);
}
.section.two-images .section-images img:hover {
  transform: scale(1.05);
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  color: #f1f5f9;
  z-index: 1;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}
.section-title p {
  color: #e2e8f0;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
}
.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.card {
  background-color: #1a2a5c;
  border: 1px solid #2a3a6c;
  border-radius: 25px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 26, 61, 0.5);
}
.card-link {
  color: inherit;
  cursor: pointer;
  background-color: #000;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}
.card-link:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 26, 61, 0.5);
}
.card-link:focus {
  outline-offset: 2px;
  outline: 2px solid #ff6b6b;
}
.card-link:active {
  transform: translateY(-4px) scale(1.01);
}
.card h3 {
  color: #fff;
  z-index: 1;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}
.card p {
  color: #fff;
  z-index: 1;
  line-height: 1.7;
  position: relative;
}
.card p a {
  color: #3a4a7c;
  font-weight: inherit;
  text-decoration: none;
}
.card p a:hover {
  color: #3a4a7c;
  text-decoration: none;
}
.table-container {
  border-radius: 25px;
  margin: 2rem 0;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .table-container,
  .rtp-table,
  .stats-table,
  .limits-table {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) transparent;
    overflow-x: auto;
  }
  .table-container::-webkit-scrollbar {
    height: 8px;
  }
  .rtp-table::-webkit-scrollbar {
    height: 8px;
  }
  .stats-table::-webkit-scrollbar {
    height: 8px;
  }
  .limits-table::-webkit-scrollbar {
    height: 8px;
  }
  .table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .rtp-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .stats-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .limits-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .table-container::-webkit-scrollbar-thumb {
    background: #edb74a;
    border-radius: 10px;
  }
  .rtp-table::-webkit-scrollbar-thumb {
    background: #edb74a;
    border-radius: 10px;
  }
  .stats-table::-webkit-scrollbar-thumb {
    background: #edb74a;
    border-radius: 10px;
  }
  .limits-table::-webkit-scrollbar-thumb {
    background: #edb74a;
    border-radius: 10px;
  }
  .table-container::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
  }
  .rtp-table::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
  }
  .stats-table::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
  }
  .limits-table::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
  }
}
.table {
  border-collapse: collapse;
  background: 0 0;
  width: 100%;
  min-width: 600px;
}
.table th,
.table td {
  text-align: left;
  color: #e5e5e5;
  border-bottom: 1px solid rgba(32, 178, 170, 0.2);
  padding: 1rem;
}
.table th {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #2a3a6c 0%, #3a4a7c 100%);
  font-weight: 700;
}
.table tr:hover {
  background: rgba(15, 26, 61, 0.2);
}
.faq {
  margin: 0 auto;
}
.faq-item {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    rgba(26, 42, 92, 0.95) 0%,
    rgba(15, 26, 61, 0.95) 100%
  );
  border: 1px solid rgba(15, 26, 61, 0.5);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 26, 61, 0.3);
}
.faq-item:before {
  content: "";
  opacity: 0.85;
  height: 3px;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.faq-item:hover {
  background: linear-gradient(
    135deg,
    rgba(42, 58, 108, 0.95) 0%,
    rgba(26, 42, 92, 0.95) 100%
  );
  border-color: #2a3a6c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 26, 61, 0.5);
}
.faq-item:hover:before {
  opacity: 1;
}
.faq-question {
  color: #fff;
  cursor: pointer;
  text-align: left;
  z-index: 1;
  pointer-events: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: 0 0;
  border: none;
  width: 100%;
  padding: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s;
  display: block;
  position: relative;
}
.faq-question:hover {
  color: #b3e5fc;
}
.faq-question:before {
  content: "Q:";
  color: #3a4a7c;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
}
.faq-question:after {
  content: "+";
  color: #3a4a7c;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}
.faq-question.active:after {
  content: "−";
  transform: rotate(180deg);
}
.faq-answer {
  color: #fff;
  z-index: 1;
  opacity: 0;
  max-height: 0;
  padding: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.faq-answer.active {
  opacity: 1;
  max-height: 200px;
  padding: 0.5rem 0 0;
}
.faq-answer:before {
  content: "A:";
  color: #3a4a7c;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer {
  color: #e5e5e5;
  background: linear-gradient(135deg, #1a2a5c 0%, #0f1a3d 100%);
  border-top: 1px solid rgba(15, 26, 61, 0.4);
  border-radius: 0;
  margin: 0;
  padding: 2rem 0;
  box-shadow: 0 -4px 20px rgba(15, 26, 61, 0.3);
}
.footer-content {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  display: grid;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 2rem;
}
.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.brand-logo {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  display: flex;
}
.brand-logo h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
}
.footer-logo {
  width: auto;
  height: 50px;
  margin: 15px auto;
}
.navigation-links {
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
}
.navigation-links a {
  color: #8ba5d8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}
.navigation-links a:hover {
  color: #fff;
}
.navigation-links {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  display: flex;
}
.navigation-links a {
  color: #3a4a7c;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.navigation-links a:hover {
  color: #0284c7;
  text-decoration: underline;
}
.social-icons {
  gap: 0.5rem;
  margin-top: 1rem;
  display: flex;
}
.social-icons a {
  background-color: #1e293b;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
  display: flex;
}
.social-icons a:hover {
  background-color: #0369a1;
  transform: translateY(-2px);
}
.social-icons img {
  filter: brightness(0) invert();
  transition: filter 0.3s;
}
.social-icons a:hover img {
  filter: brightness(0) invert();
}
.social-icon {
  color: #fff;
  background-color: #333;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 3px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background-color 0.3s;
  display: flex;
}
.social-icon:hover {
  background-color: #6b7280;
}
.social-icon img {
  filter: brightness(0) invert();
  transition: all 0.3s;
}
.social-icon:hover img {
  filter: brightness(0) invert(0);
}
.payment-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  display: grid;
}
.payment-method {
  text-align: center;
  color: #fff;
  background-color: #333;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background-color 0.3s;
  display: flex;
}
.payment-method:hover {
  background-color: #6b7280;
}
.payment-method img {
  max-width: 100%;
  height: auto;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #8ba5d8;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #fff;
  transform: translate(5px);
}
.footer-actions {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  display: flex;
}
.footer-actions .btn {
  white-space: nowrap;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.payment-methods {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  display: grid;
}
.payment-method {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1rem;
  transition: all 0.3s;
  display: flex;
}
.payment-method:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}
.payment-method span {
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-bottom {
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1rem;
}
.game-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.game-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}
.game-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.rtp-table {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin: 2rem 0;
  padding: 1.5rem;
  overflow-x: auto;
}
.rtp-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}
.rtp-table th,
.rtp-table td {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}
.rtp-table th {
  color: #fff;
  background: rgba(255, 71, 87, 0.8);
  font-weight: 600;
}
.rtp-table .positive {
  color: #22c55e;
}
.rtp-table .negative {
  color: #ef4444;
}
.rtp-table .stable {
  color: #f59e0b;
}
.rtp-note {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  margin-top: 1rem;
  padding: 1rem;
}
.filter-section {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  display: grid;
}
.filter-item label {
  color: #d4af37;
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}
.filter-item input,
.filter-item select {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}
.filter-item input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.feature-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}
.feature-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}
.stats-table {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin: 2rem 0;
  padding: 1.5rem;
  overflow-x: auto;
}
.stats-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}
.stats-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}
.stats-table td:first-child {
  color: #d4af37;
  font-weight: 600;
}
.how-to-play {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.step {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
}
.step h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}
.advantages-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.advantage-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}
.advantage-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.step-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
}
.step-number {
  color: #fff;
  background: #3b82f6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -15px;
  left: 20px;
}
.step-card h3 {
  color: #d4af37;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.limits-table {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin: 2rem 0;
  padding: 1.5rem;
  overflow-x: auto;
}
.limits-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}
.limits-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}
.limits-table td:first-child {
  color: #d4af37;
  font-weight: 600;
}
.security-features {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.security-item {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}
.security-item h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}
.contact-methods {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  display: grid;
}
.contact-item {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}
.contact-item h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}
.tips-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.tip-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}
.tip-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}
.related-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  display: flex;
}
.recommendations {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  display: grid;
}
.recommendation-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}
.recommendation-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}
.responsibility-note {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  margin: 2rem 0;
  padding: 2rem;
}
.help-links {
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}
.demo-cta {
  text-align: center;
  margin: 2rem 0;
}
.btn-small {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
@media (max-width: 1200px) {
  .nav {
    position: static;
    transform: none;
  }
  .logo img {
    width: auto;
    max-width: 50px;
    height: auto;
    max-height: 50px;
  }
  .hero-content {
    text-align: center;
    flex-direction: column;
  }
  .hero-text {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }
  .hero-text h1 {
    order: 1;
  }
  .hero-buttons {
    order: 2;
  }
  .hero-text p {
    order: 3;
  }
  .nav {
    display: none;
  }
  .mobile-menu-btn {
    order: 1;
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-section:last-child {
    grid-column: 1/-1;
  }
  .header-buttons {
    gap: 0.5rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .main {
    margin: 0.5rem;
  }
  .hero,
  .section {
    margin: 1rem;
  }
  .footer {
    margin: 2rem 0.5rem 0;
  }
  .section.alternate .container {
    flex-direction: column;
    gap: 2rem;
  }
  .section.alternate .section-content {
    order: 2;
  }
  .section.alternate .section-image {
    order: 1;
  }
  .section.two-images .container {
    flex-direction: column;
    gap: 2rem;
  }
  .section.two-images .section-content {
    order: 2;
  }
  .section.two-images .section-images {
    order: 1;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .footer {
    margin: 0;
    padding: 0.5rem 0;
  }
  .footer-content {
    padding: 0 5px;
  }
  .footer-section p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .payment-method {
    padding: 0.3rem;
    font-size: 0.7rem;
  }
  .hero {
    margin: 0.5rem;
    padding: 2rem 0;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .section {
    margin: 0.5rem;
    padding: 2rem 0;
  }
  .card {
    padding: 1.5rem;
  }
  .footer-top {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-section {
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    height: 40px;
  }
  .footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  .payment-method {
    padding: 0.6rem 0.8rem;
  }
  .payment-method span {
    font-size: 0.8rem;
  }
  .navigation-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .payment-method {
    justify-content: center;
    padding: 0.5rem 0.6rem;
  }
  .navigation-links a {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
  .social-icons {
    justify-content: center;
    gap: 0.8rem;
  }
  .social-icon {
    width: 35px;
    height: 35px;
  }
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .payment-method {
    min-height: 45px;
    padding: 0.8rem;
  }
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .footer-bottom h2 {
    font-size: 1.3rem;
  }
  .footer-bottom p {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .main {
    margin: 0.25rem;
  }
  .footer {
    margin: 1rem 0.25rem 0;
  }
}
.text-center {
  text-align: center;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.hidden {
  display: none;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: 0.6s ease-out fadeInUp;
}
@media (max-width: 768px) {
  .logo {
    display: none;
  }
  .btn {
    padding: 10px;
  }
  .header-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-actions .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .footer {
    margin: 0;
    padding: 1rem 0;
  }
  .footer-content {
    padding: 0 10px;
  }
  .footer-section {
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-section p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .payment-method {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .table {
    min-width: auto;
    font-size: 0.8rem;
  }
  .table th,
  .table td {
    padding: 0.5rem;
  }
  .rtp-table table,
  .stats-table table,
  .limits-table table {
    min-width: auto;
    font-size: 0.8rem;
  }
  .rtp-table th,
  .rtp-table td,
  .stats-table th,
  .stats-table td,
  .limits-table th,
  .limits-table td {
    padding: 0.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-actions {
    justify-content: center;
    gap: 0.8rem;
  }
  .footer-actions .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .navigation-links,
  .social-icons {
    justify-content: center;
  }
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .header-content {
    justify-content: space-between;
  }
  .nav {
    display: none;
  }
  .mobile-menu-btn {
    order: -1;
    display: block;
  }
  .header-actions {
    order: 1;
    gap: 0.5rem;
    display: flex;
  }
  .header-actions .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
@keyframes float {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.floating {
  animation: 3s ease-in-out infinite float;
}
a {
  transition: all 0.3s;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #3a4a7c;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2a3a6c;
}
a {
  color: #88a6ff;
  text-decoration: none;
}
.language-switcher {
  align-items: center;
  gap: 8px;
  display: flex;
}
.lang-btn {
  color: #333;
  cursor: pointer;
  background: 0 0;
  border: 2px solid #333;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.lang-btn:hover {
  color: #fff;
  background: #333;
  text-decoration: none;
}
.lang-btn.active {
  color: #fff;
  background: #333;
}
.lang-btn:not(.active) {
  color: #666;
  background: #f5f5f5;
  border-color: #666;
}
.payment-methods-table {
  margin: 2rem 0;
  overflow-x: auto;
}
.payment-methods-table table {
  border-collapse: collapse;
  background: #2a2a2a;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.payment-methods-table th,
.payment-methods-table td {
  text-align: left;
  border-bottom: 1px solid #3a3a3a;
  padding: 12px 16px;
}
.payment-methods-table th {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #3a3a3a;
  font-size: 0.9rem;
  font-weight: 600;
}
.payment-methods-table td {
  color: #e5e5e5;
  font-size: 0.9rem;
}
.payment-methods-table tr:hover {
  background: #333;
}
.payment-methods-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .payment-methods-table {
    font-size: 0.8rem;
  }
  .payment-methods-table th,
  .payment-methods-table td {
    padding: 8px 12px;
  }
}
