@charset "UTF-8";
@font-face {
  font-family: "Source Sans 3";
  src: url("SourceSans3-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #1e293b 100%);
  color: #1e293b;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

.site-header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.site-header .container {
  padding: 0 40px;
}
.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 50px;
}
.site-header .header-brand {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  transition: opacity 0.2s ease;
  position: relative;
}
.site-header .header-brand::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.3s ease;
}
.site-header .header-brand:hover {
  opacity: 0.8;
}
.site-header .header-brand:hover::after {
  width: 100%;
}
.site-header .header-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.site-header .header-nav.active {
  display: flex;
}
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  transition: all 0.2s ease;
  border-radius: 8px;
  position: relative;
}
.site-header .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.site-header .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.site-header .header-actions {
  display: flex;
  gap: 12px;
}
.site-header .header-actions.active {
  display: flex;
}
.site-header .btn-ghost {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}
.site-header .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.site-header .btn-primary {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
.site-header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}
.site-header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.site-header .menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 992px) {
  .site-header .container {
    padding: 0 20px;
  }
  .site-header .header-content {
    gap: 20px;
  }
  .site-header .header-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: none;
  }
  .site-header .header-nav.active {
    display: flex;
  }
  .site-header .header-nav .nav-link {
    padding: 14px 20px;
    border-radius: 8px;
  }
  .site-header .header-actions {
    position: fixed;
    top: 315px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: none;
  }
  .site-header .header-actions.active {
    display: flex;
  }
  .site-header .header-actions .btn-ghost,
  .site-header .header-actions .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  .site-header .menu-toggle {
    display: flex;
  }
}
@media (max-width: 576px) {
  .site-header .header-content {
    min-height: 65px;
  }
  .site-header .header-brand {
    font-size: 22px;
  }
}

.age-notice {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.age-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shine 3s infinite;
}
@media (max-width: 576px) {
  .age-notice {
    font-size: 10px;
    padding: 8px 16px;
  }
}

@keyframes shine {
  to {
    left: 100%;
  }
}
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 40px;
}
.main-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  transition: all 0.3s ease;
}
.main-header__brand:hover {
  color: #6366f1;
}
.main-header__icon {
  width: 32px;
  height: 32px;
  color: #6366f1;
}
.main-header__nav {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.main-header__nav.active {
  display: flex;
}
.main-header__link {
  color: rgba(15, 23, 42, 0.7);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}
.main-header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #6366f1;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-header__link:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.05);
}
.main-header__link:hover::after {
  transform: scaleX(1);
}
.main-header__actions {
  display: flex;
  gap: 12px;
}
.main-header__actions.active {
  display: flex;
}
.main-header__btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}
.main-header__btn--secondary {
  border: 2px solid #e5e7eb;
  color: #0f172a;
  background: transparent;
}
.main-header__btn--secondary:hover {
  border-color: #6366f1;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.05);
}
.main-header__btn--primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border: none;
}
.main-header__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.main-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.main-header__burger span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.main-header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-header__burger.active span:nth-child(2) {
  opacity: 0;
}
.main-header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 992px) {
  .main-header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .main-header__nav.active {
    display: flex;
  }
  .main-header__actions {
    position: fixed;
    top: 300px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .main-header__actions.active {
    display: flex;
  }
  .main-header__burger {
    display: flex;
  }
}
@media (max-width: 576px) {
  .main-header__container {
    min-height: 60px;
  }
  .main-header__brand {
    font-size: 18px;
  }
  .main-header__icon {
    width: 28px;
    height: 28px;
  }
}

.top-warning {
  background: linear-gradient(135deg, #ef4444, rgb(234.9802955665, 21.0197044335, 21.0197044335));
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.top-warning::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s infinite;
}
@media (max-width: 576px) {
  .top-warning {
    font-size: 12px;
    padding: 10px 16px;
  }
}

@keyframes shine {
  to {
    left: 100%;
  }
}
.intro-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.stage-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.bg-shape.shape-alpha {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: morph-alpha 15s ease-in-out infinite;
}
.bg-shape.shape-beta {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: morph-beta 18s ease-in-out infinite;
}
.bg-shape.shape-gamma {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: morph-gamma 20s ease-in-out infinite;
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}
.particle.p-1 {
  top: 20%;
  left: 15%;
  animation: drift 8s ease-in-out infinite;
}
.particle.p-2 {
  top: 40%;
  left: 80%;
  animation: drift 10s ease-in-out infinite 2s;
}
.particle.p-3 {
  top: 60%;
  left: 25%;
  animation: drift 12s ease-in-out infinite 4s;
}
.particle.p-4 {
  top: 75%;
  left: 70%;
  animation: drift 9s ease-in-out infinite 1s;
}
.particle.p-5 {
  top: 30%;
  left: 50%;
  animation: drift 11s ease-in-out infinite 3s;
}
.particle.p-6 {
  top: 85%;
  left: 40%;
  animation: drift 13s ease-in-out infinite 5s;
}

.stage-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-primary {
  color: #fff;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 36px;
  animation: fade-slide-down 1s ease-out;
}

.pill-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
  animation: pulse-glow 2s ease-in-out infinite;
}

.pill-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mega-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  animation: fade-slide-down 1s ease-out 0.2s both;
}

.title-line {
  display: block;
}

.highlight-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-flow 4s linear infinite;
}

.intro-text {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  max-width: 580px;
  animation: fade-slide-down 1s ease-out 0.4s both;
}

.action-zone {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  animation: fade-slide-down 1s ease-out 0.6s both;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-action.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}
.btn-action.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-action.btn-primary .btn-text,
.btn-action.btn-primary .btn-icon {
  position: relative;
  z-index: 1;
}
.btn-action.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}
.btn-action.btn-primary:hover::before {
  opacity: 1;
}
.btn-action.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}
.btn-action.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-action.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-icon {
  display: flex;
  transition: transform 0.3s ease;
}

.metrics-row {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fade-slide-down 1s ease-out 0.8s both;
}

.metric-box {
  flex: 1;
}

.metric-num {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.content-visual {
  position: relative;
  animation: fade-slide-up 1s ease-out 0.4s both;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.game-tile {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.game-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.game-tile:hover::before {
  opacity: 1;
}
.game-tile.tile-a {
  grid-column: 1/2;
  grid-row: 1/2;
  animation: tile-appear 0.6s ease-out 0.6s both;
}
.game-tile.tile-b {
  grid-column: 2/3;
  grid-row: 1/2;
  animation: tile-appear 0.6s ease-out 0.8s both;
}
.game-tile.tile-c {
  grid-column: 1/3;
  grid-row: 2/3;
  animation: tile-appear 0.6s ease-out 1s both;
}

.tile-header {
  margin-bottom: 20px;
}

.tile-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.tile-body {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.tile-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.tile-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.tile-footer {
  position: relative;
  z-index: 1;
}

.tile-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.ornament-circle {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate-slow 30s linear infinite;
}

.ornament-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ornament-lines span {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.ornament-lines span:nth-child(1) {
  transform: rotate(0deg);
}
.ornament-lines span:nth-child(2) {
  transform: rotate(60deg);
}
.ornament-lines span:nth-child(3) {
  transform: rotate(120deg);
}

@media (max-width: 992px) {
  .intro-stage {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .stage-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mega-title {
    font-size: 56px;
  }
  .content-primary {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .action-zone {
    justify-content: center;
  }
  .metrics-row {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .mega-title {
    font-size: 44px;
  }
  .intro-text {
    font-size: 17px;
  }
  .metrics-row {
    gap: 32px;
  }
  .metric-num {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .intro-stage {
    padding: 80px 0 50px;
  }
  .mega-title {
    font-size: 36px;
  }
  .intro-text {
    font-size: 16px;
  }
  .action-zone {
    flex-direction: column;
    width: 100%;
  }
  .btn-action {
    width: 100%;
    justify-content: center;
  }
  .metrics-row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .metric-box {
    min-width: 100px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .game-tile.tile-a, .game-tile.tile-b, .game-tile.tile-c {
    grid-column: 1/2;
  }
  .game-tile.tile-a {
    grid-row: 1/2;
  }
  .game-tile.tile-b {
    grid-row: 2/3;
  }
  .game-tile.tile-c {
    grid-row: 3/4;
  }
}
@keyframes morph-alpha {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    border-radius: 50% 40% 60% 50%;
  }
  33% {
    transform: scale(1.1) translate(20px, -20px);
    border-radius: 60% 50% 40% 60%;
  }
  66% {
    transform: scale(0.9) translate(-10px, 15px);
    border-radius: 40% 60% 50% 40%;
  }
}
@keyframes morph-beta {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    border-radius: 40% 60% 50% 50%;
  }
  33% {
    transform: scale(1.15) translate(-25px, 15px);
    border-radius: 50% 40% 60% 50%;
  }
  66% {
    transform: scale(0.95) translate(10px, -20px);
    border-radius: 60% 50% 40% 60%;
  }
}
@keyframes morph-gamma {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50% 50% 40% 60%;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    border-radius: 40% 60% 50% 50%;
  }
}
@keyframes drift {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  25% {
    transform: translate(15px, -25px);
    opacity: 0.7;
  }
  50% {
    transform: translate(-10px, -40px);
    opacity: 1;
  }
  75% {
    transform: translate(-20px, -15px);
    opacity: 0.5;
  }
}
@keyframes fade-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes tile-appear {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float-circle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}
@keyframes pulse-icon {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes float-card-1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}
@keyframes float-card-2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(-2deg);
  }
}
@keyframes float-card-3 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.games-showcase {
  padding: 120px 0;
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  position: relative;
  overflow: hidden;
}
.games-showcase::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}
.games-showcase::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 2px solid rgba(99, 102, 241, 0.15);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badge-float 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  animation: pulse-glow 2s ease-in-out infinite;
}

.badge-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.title-accent {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.game-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.game-card.card-featured {
  grid-column: span 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
}

.card-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.card-status {
  position: relative;
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.status-badge.trending {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
}
.status-badge.popular {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
}
.status-badge.new {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  color: #fff;
}

.card-visual {
  padding: 24px 24px 0;
}

.visual-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 10/10;
}
.visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 28px 24px 24px;
}

.card-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.feature-item svg {
  flex-shrink: 0;
  color: #6366f1;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s ease;
}
.card-action:hover {
  background: rgba(99, 102, 241, 0.12);
}

@media (max-width: 992px) {
  .games-showcase {
    padding: 80px 0;
  }
  .section-title {
    font-size: 44px;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .game-card.card-featured {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
  .section-title {
    font-size: 36px;
  }
  .section-description {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .games-showcase {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .game-card.card-featured {
    grid-column: span 1;
  }
  .card-title {
    font-size: 22px;
  }
}
@keyframes badge-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media (max-width: 992px) {
  .lottery-games {
    padding: 80px 0;
  }
  .lottery-games__header {
    margin-bottom: 50px;
  }
  .lottery-games__title {
    font-size: 40px;
  }
  .lottery-games__list {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .lottery-games {
    padding: 60px 0;
  }
  .lottery-games__title {
    font-size: 32px;
  }
  .lottery-games__subtitle {
    font-size: 16px;
  }
  .lottery-games__list {
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .lottery-games {
    padding: 50px 0;
  }
  .lottery-games__title {
    font-size: 28px;
  }
}
.play-guides {
  padding: 100px 0;
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  position: relative;
  overflow: hidden;
}
.play-guides::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.guides-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.guides-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.title-highlight {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.guide-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.guide-item:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.guide-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.guide-type {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.guide-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.guide-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-steps li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  position: relative;
}
.guide-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
}

.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.meta-value {
  font-size: 13px;
  color: #6366f1;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 6px;
}

.guides-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.guides-notice svg {
  flex-shrink: 0;
  color: #6366f1;
  margin-top: 2px;
}
.guides-notice p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.guides-notice p strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 992px) {
  .play-guides {
    padding: 80px 0;
  }
  .guides-title {
    font-size: 42px;
  }
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .play-guides {
    padding: 60px 0;
  }
  .guides-header {
    margin-bottom: 48px;
  }
  .guides-title {
    font-size: 36px;
  }
  .guides-subtitle {
    font-size: 16px;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .guide-item {
    padding: 28px;
  }
  .guide-name {
    font-size: 22px;
  }
}
.lottery-guides {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.lottery-guides__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.lottery-guides__title {
  font-size: 48px;
  font-weight: 800;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.lottery-guides__subtitle {
  font-size: 18px;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.6;
}
.lottery-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.lottery-guides .guide-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lottery-guides .guide-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
  transform: translateY(-8px);
}
.lottery-guides .guide-card:hover .guide-card__badge {
  transform: scale(1.1) rotate(-5deg);
}
.lottery-guides .guide-card__badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.lottery-guides .guide-card__title {
  font-size: 24px;
  font-weight: 800;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}
.lottery-guides .guide-card__tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.lottery-guides .guide-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 24px;
  flex-grow: 1;
}
.lottery-guides .guide-card__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lottery-guides .guide-card__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lottery-guides .guide-card__steps li .step-number {
  width: 28px;
  height: 28px;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.lottery-guides .guide-card__steps li .step-text {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.8);
}
.lottery-guides .guide-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  color: #6366f1;
  font-size: 14px;
  font-weight: 600;
}
.lottery-guides .guide-card__footer svg {
  flex-shrink: 0;
}
.lottery-guides__notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 40px;
  background: rgba(99, 102, 241, 0.05);
  border-left: 4px solid #6366f1;
  border-radius: 12px;
}
.lottery-guides__notice-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #6366f1;
  margin-top: 2px;
}
.lottery-guides__notice p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.8);
  margin: 0;
}
.lottery-guides__notice p strong {
  color: #0f172a;
  font-weight: 700;
}
@media (max-width: 992px) {
  .lottery-guides {
    padding: 80px 0;
  }
  .lottery-guides__title {
    font-size: 40px;
  }
  .lottery-guides__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .lottery-guides .guide-card__title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .lottery-guides {
    padding: 60px 0;
  }
  .lottery-guides__header {
    margin-bottom: 40px;
  }
  .lottery-guides__title {
    font-size: 32px;
  }
  .lottery-guides__subtitle {
    font-size: 16px;
  }
  .lottery-guides__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lottery-guides .guide-card {
    padding: 30px 25px;
  }
  .lottery-guides .guide-card__badge {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .lottery-guides .guide-card__title {
    font-size: 22px;
  }
  .lottery-guides__notice {
    padding: 25px 30px;
  }
}
@media (max-width: 576px) {
  .lottery-guides {
    padding: 50px 0;
  }
  .lottery-guides__title {
    font-size: 28px;
  }
  .lottery-guides .guide-card {
    padding: 25px 20px;
  }
  .lottery-guides .guide-card__badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .lottery-guides .guide-card__title {
    font-size: 20px;
  }
  .lottery-guides .guide-card__text {
    font-size: 14px;
  }
  .lottery-guides__notice {
    flex-direction: column;
    padding: 20px 25px;
  }
  .lottery-guides__notice p {
    font-size: 14px;
  }
}

.faq-zone {
  padding: 100px 0;
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  position: relative;
  overflow: hidden;
}
.faq-zone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}
.faq-zone::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.faq-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.faq-accent {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.faq-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.faq-card.active {
  border-color: rgba(99, 102, 241, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.faq-card.active .faq-icon {
  transform: rotate(180deg);
}
.faq-card.active .faq-icon svg {
  color: #6366f1;
}
.faq-card.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 28px;
  opacity: 1;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}
.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.faq-icon svg {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  opacity: 0;
  transition: all 0.3s ease;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .faq-zone {
    padding: 80px 0;
  }
  .faq-header {
    margin-bottom: 48px;
  }
  .faq-title {
    font-size: 40px;
  }
  .faq-subtitle {
    font-size: 16px;
  }
  .faq-question {
    padding: 20px 24px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .faq-card.active .faq-answer {
    padding: 0 24px 24px;
  }
}
@media (max-width: 576px) {
  .faq-zone {
    padding: 60px 0;
  }
  .faq-title {
    font-size: 32px;
  }
  .faq-list {
    gap: 12px;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
  }
}
.faq-section {
  padding: 100px 0;
  background: #ffffff;
}
.faq-section__wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-section__sidebar {
  position: sticky;
  top: 100px;
}
.faq-section__title {
  font-size: 42px;
  font-weight: 800;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.faq-section__description {
  font-size: 16px;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}
.faq-section__stats {
  display: flex;
  gap: 20px;
}
.faq-section .stat-item {
  flex: 1;
  padding: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.faq-section .stat-item__number {
  font-size: 32px;
  font-weight: 900;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #6366f1;
  margin-bottom: 4px;
}
.faq-section .stat-item__label {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.faq-section__content {
  min-width: 0;
}
.faq-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-section .accordion-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .accordion-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}
.faq-section .accordion-item.active {
  border-color: #6366f1;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}
.faq-section .accordion-item.active .accordion-item__trigger {
  background: rgba(99, 102, 241, 0.05);
  color: #6366f1;
}
.faq-section .accordion-item.active .accordion-item__icon {
  transform: rotate(180deg);
  color: #6366f1;
}
.faq-section .accordion-item.active .accordion-item__panel {
  max-height: 300px;
  padding: 0 24px 24px;
  opacity: 1;
}
.faq-section .accordion-item__trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  text-align: left;
  border: none;
  cursor: pointer;
}
.faq-section .accordion-item__trigger:hover {
  background: rgba(99, 102, 241, 0.03);
}
.faq-section .accordion-item__question {
  font-size: 17px;
  font-weight: 700;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  flex: 1;
}
.faq-section .accordion-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: rgba(15, 23, 42, 0.4);
  transition: all 0.3s ease;
}
.faq-section .accordion-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
  opacity: 0;
}
.faq-section .accordion-item__panel p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}
@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-section__wrapper {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }
  .faq-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section__sidebar {
    position: static;
  }
  .faq-section__title {
    font-size: 32px;
  }
  .faq-section__description {
    font-size: 15px;
  }
  .faq-section .accordion-item__trigger {
    padding: 18px 20px;
  }
  .faq-section .accordion-item__question {
    font-size: 16px;
  }
  .faq-section .accordion-item__icon {
    width: 20px;
    height: 20px;
  }
  .faq-section .accordion-item__panel p {
    font-size: 14px;
  }
  .faq-section .accordion-item.active .accordion-item__panel {
    padding: 0 20px 20px;
  }
}
@media (max-width: 576px) {
  .faq-section {
    padding: 50px 0;
  }
  .faq-section__title {
    font-size: 28px;
  }
  .faq-section__stats {
    flex-direction: column;
  }
  .faq-section .stat-item {
    padding: 16px;
  }
  .faq-section .stat-item__number {
    font-size: 28px;
  }
  .faq-section .accordion {
    gap: 12px;
  }
  .faq-section .accordion-item__trigger {
    padding: 16px 18px;
  }
  .faq-section .accordion-item__question {
    font-size: 15px;
  }
  .faq-section .accordion-item__panel p {
    font-size: 14px;
  }
  .faq-section .accordion-item.active .accordion-item__panel {
    padding: 0 18px 18px;
  }
}

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(5px);
}
.thankyou-popup__content {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.thankyou-popup__content h3 {
  color: #8b5cf6;
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 900;
}
.thankyou-popup__content p {
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.6;
}
.thankyou-popup__content button {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  background: #8b5cf6;
  transition: all 0.3s ease;
}
.thankyou-popup__content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}
.thankyou-popup.active {
  display: flex;
}

.site-footer {
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 50%, transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -200px;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 380px 1fr 280px;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.footer-main::after {
  content: "";
  position: absolute;
  left: 380px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
}

.footer-intro .brand-logo {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-intro .legal-text {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  max-width: 340px;
}
.footer-intro .brand-badges {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.footer-intro .brand-badges .badge {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.footer-intro .brand-badges .badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  color: #6366f1;
}

.footer-nav-columns {
  display: flex;
  gap: 80px;
  padding-left: 40px;
}

.nav-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-col ul li {
  position: relative;
  padding-left: 12px;
}
.nav-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.nav-col ul li:hover::before {
  background: #6366f1;
  transform: scale(1.5);
}
.nav-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  display: inline-block;
}
.nav-col ul a:hover {
  color: #ffffff;
}

.footer-partners h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-partners .partner-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-partners .partner-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.footer-partners .partner-grid a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}
.footer-partners .partner-grid a img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.footer-bottom .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 340px 1fr 260px;
    gap: 40px;
  }
  .footer-main::after {
    left: 340px;
  }
  .footer-nav-columns {
    gap: 60px;
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-main::after {
    display: none;
  }
  .footer-intro {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
  }
  .footer-intro .brand-tagline {
    max-width: 100%;
  }
  .footer-nav-columns {
    padding-left: 0;
    gap: 50px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0;
  }
  .footer-main {
    gap: 40px;
  }
  .footer-nav-columns {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0 0;
  }
  .footer-intro .brand-logo {
    font-size: 26px;
  }
  .nav-col h4,
  .footer-partners h4 {
    font-size: 11px;
  }
  .footer-bottom {
    padding: 20px 0;
  }
  .footer-bottom p {
    font-size: 11px;
  }
}
/* ================================
   AUTH PAGES (LOGIN & REGISTER)
   ================================ */
.auth-section {
  min-height: 100vh;
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.auth-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.auth-container {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.auth-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.auth-box:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.auth-header {
  text-align: center;
  margin-bottom: 10px;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2px;
}

.field-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 15px;
  color: #ffffff;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all 0.2s ease;
}
.field-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.field-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.field-input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: -8px 0 8px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #6366f1;
}

.checkbox-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.remember-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.forgot-link {
  font-size: 14px;
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.forgot-link:hover {
  color: #8b5cf6;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.btn-submit:active {
  transform: translateY(0);
}

.auth-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-switch {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.auth-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.2s ease;
}
.auth-link:hover {
  color: #8b5cf6;
}

/* Success Modal / Popup */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.success-modal.active {
  display: flex;
}

.modal-content {
  background: rgba(26, 31, 58, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: modalSlideIn 0.4s ease;
}

.modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.modal-icon svg {
  animation: scaleIn 0.5s ease 0.2s both;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.modal-message {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Auth Pages Responsive */
@media (max-width: 576px) {
  .auth-box {
    padding: 36px 28px;
  }
  .auth-title {
    font-size: 28px;
  }
  .auth-subtitle {
    font-size: 14px;
  }
  .form-field {
    gap: 6px;
  }
  .field-label {
    font-size: 13px;
  }
  .field-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .btn-submit {
    padding: 14px;
    font-size: 15px;
  }
  .remember-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .modal-content {
    padding: 36px 28px;
  }
  .modal-title {
    font-size: 22px;
  }
  .modal-message {
    font-size: 14px;
  }
}
/* ================================
   POLICY/LEGAL PAGES
   ================================ */
.policy-section {
  min-height: 100vh;
  background: linear-gradient(145deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3d 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.policy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%), radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.policy-section .container {
  position: relative;
  z-index: 1;
}

.policy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.policy-intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 36px;
  transition: all 0.3s ease;
}
.policy-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}
.policy-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-card h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}
.policy-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
}
.policy-card p:last-child {
  margin-bottom: 0;
}
.policy-card p strong {
  color: #ffffff;
  font-weight: 600;
}
.policy-card p a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.policy-card p a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}
.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.policy-card ul li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}
.policy-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
}
.policy-card ul li:last-child {
  margin-bottom: 0;
}

.policy-notice {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  position: relative;
}
.policy-notice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  border-radius: 12px 0 0 12px;
}
.policy-notice p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding-left: 12px;
}
.policy-notice p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Policy Pages Responsive */
@media (max-width: 992px) {
  .policy-section {
    padding: 100px 0 60px;
  }
  .policy-title {
    font-size: 40px;
  }
  .policy-intro {
    font-size: 16px;
  }
  .policy-card {
    padding: 28px 30px;
  }
  .policy-card h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .policy-section {
    padding: 90px 0 50px;
  }
  .policy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .policy-title {
    font-size: 34px;
  }
  .policy-intro {
    font-size: 15px;
  }
  .policy-card {
    padding: 24px 26px;
  }
  .policy-card h3 {
    font-size: 19px;
  }
  .policy-card p {
    font-size: 14px;
  }
  .policy-card ul li {
    font-size: 14px;
  }
  .policy-notice {
    padding: 24px 28px;
  }
  .policy-notice p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .policy-section {
    padding: 80px 0 40px;
  }
  .policy-title {
    font-size: 30px;
  }
  .policy-card {
    padding: 20px 22px;
  }
  .policy-card h3 {
    font-size: 18px;
  }
  .policy-card h3::before {
    height: 18px;
  }
  .policy-notice {
    padding: 20px 24px;
  }
}
.main-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e5e7eb;
  padding: 80px 0 30px;
}
.main-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}
.main-footer__brand {
  max-width: 400px;
}
.main-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 20px;
}
.main-footer__logo svg {
  width: 32px;
  height: 32px;
  color: #6366f1;
}
.main-footer__text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.65);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 2px solid rgba(99, 102, 241, 0.15);
}
.main-footer__text:last-of-type {
  margin-bottom: 20px;
}
.main-footer__description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.6);
  margin-bottom: 20px;
}
.main-footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.main-footer .footer-badge {
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
}
.main-footer .footer-nav__title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 16px;
}
.main-footer .footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .footer-nav__list a {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}
.main-footer .footer-nav__list a:hover {
  color: #6366f1;
  padding-left: 4px;
}
.main-footer .footer-partners__title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 16px;
}
.main-footer .footer-partners__logos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-footer .footer-partners__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #000000;
  transition: all 0.3s ease;
}
.main-footer .footer-partners__logos a:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}
.main-footer .footer-partners__logos a img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.main-footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.main-footer__bottom p {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.5);
  margin: 0;
}
@media (max-width: 992px) {
  .main-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .main-footer__brand {
    grid-column: 1/-1;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 30px;
  }
  .main-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .main-footer {
    padding: 50px 0 20px;
  }
  .main-footer__grid {
    gap: 30px;
  }
  .main-footer__logo {
    font-size: 20px;
  }
  .main-footer__logo svg {
    width: 28px;
    height: 28px;
  }
  .main-footer__description {
    font-size: 13px;
  }
  .main-footer .footer-nav__title,
  .main-footer .footer-partners__title {
    font-size: 15px;
  }
  .main-footer__bottom p {
    font-size: 12px;
  }
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 100px 20px 80px;
  position: relative;
}
@media (max-width: 768px) {
  .auth-page {
    padding: 60px 20px 40px;
  }
}
.auth-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.auth-page__container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.auth-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.auth-card:hover {
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}
.auth-card__header {
  text-align: center;
  padding: 48px 40px 32px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(139, 92, 246, 0.03));
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 576px) {
  .auth-card__header {
    padding: 32px 24px 20px;
  }
}
.auth-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 18px;
  border: 2px solid rgba(99, 102, 241, 0.2);
}
.auth-card__icon svg {
  color: #6366f1;
}
.auth-card__title {
  font-size: 32px;
  font-weight: 900;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}
@media (max-width: 576px) {
  .auth-card__title {
    font-size: 28px;
  }
}
.auth-card__subtitle {
  font-size: 15px;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.5;
}
.auth-card__footer {
  padding: 24px 40px;
  background: rgba(99, 102, 241, 0.02);
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.auth-card__switch {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}
.auth-card__switch a {
  color: #6366f1;
  font-weight: 700;
  margin-left: 4px;
  transition: all 0.2s ease;
}
.auth-card__switch a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

.auth-form {
  padding: 40px;
}
.auth-form__group {
  margin-bottom: 24px;
  text-align: left;
}
.auth-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}
.auth-form__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  color: #0f172a;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.auth-form__input::placeholder {
  color: rgba(15, 23, 42, 0.4);
}
.auth-form__input:focus {
  outline: none;
  border-color: #6366f1;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.auth-form__checkbox {
  margin-bottom: 28px;
  text-align: left;
}
.auth-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  line-height: 1.5;
}
.auth-form__checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #6366f1;
}
.auth-form__checkbox-label:hover {
  color: #0f172a;
}
.auth-form__btn {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.auth-form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}
.auth-form__btn:active {
  transform: translateY(0);
}
@media (max-width: 576px) {
  .auth-form {
    padding: 32px 24px;
  }
  .auth-form__input {
    padding: 12px 16px;
  }
  .auth-form__btn {
    padding: 14px;
    font-size: 15px;
  }
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
.auth::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.auth__card {
  width: 100%;
  max-width: 520px;
  padding: 60px 55px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
.auth__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  border-radius: 24px 24px 0 0;
}
.auth__title {
  font-size: 42px;
  font-weight: 900;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.auth__text {
  color: rgba(241, 245, 249, 0.6);
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 16px;
}
.auth__group {
  margin-bottom: 20px;
}
.auth__group input {
  width: 100%;
  padding: 18px 24px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #1e293b;
  font-size: 16px;
  transition: all 0.3s ease;
}
.auth__group input::placeholder {
  color: rgba(241, 245, 249, 0.4);
}
.auth__group input:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.6);
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.auth__checkbox {
  text-align: left;
  margin-bottom: 30px;
}
.auth__checkbox label {
  font-size: 15px;
  color: rgba(241, 245, 249, 0.7);
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.6;
  cursor: pointer;
}
.auth__checkbox label input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.auth__btn {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.auth__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.auth__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}
.auth__btn:hover::before {
  width: 400px;
  height: 400px;
}
.auth__btn:active {
  transform: translateY(0);
}
.auth__switch {
  margin-top: 32px;
  font-size: 15px;
  color: rgba(241, 245, 249, 0.6);
}
.auth__switch a {
  color: #6366f1;
  font-weight: 700;
  transition: color 0.3s ease;
}
.auth__switch a:hover {
  color: #8b5cf6;
}
@media (max-width: 768px) {
  .auth__card {
    max-width: 90%;
    padding: 50px 40px;
  }
  .auth__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .auth__card {
    padding: 40px 30px;
  }
  .auth__title {
    font-size: 32px;
  }
  .auth__text {
    font-size: 15px;
  }
  .auth__group input {
    padding: 16px 20px;
    font-size: 15px;
  }
  .auth__btn {
    padding: 16px;
    font-size: 16px;
  }
}

.auth-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(10px);
}
.auth-popup__content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 50px 60px;
  text-align: center;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}
.auth-popup__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 20px 20px 0 0;
}
.auth-popup__content::after {
  content: "✓";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
  color: #6366f1;
  font-size: 24px;
  font-weight: 700;
}
.auth-popup__content h3 {
  color: #0f172a;
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 900;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.5px;
}
.auth-popup__content p {
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.6;
  font-size: 15px;
}
.auth-popup.active {
  display: flex;
}
@media (max-width: 576px) {
  .auth-popup__content {
    max-width: 90%;
    padding: 40px 30px;
  }
  .auth-popup__content h3 {
    font-size: 28px;
  }
  .auth-popup__content::after {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.legal-page {
  padding: 100px 0 80px;
  background: #ffffff;
  min-height: 100vh;
}
.legal-page__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
  position: relative;
}
.legal-page__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(99, 102, 241, 0.2);
}
.legal-page__icon svg {
  color: #6366f1;
}
.legal-page__title {
  font-size: 48px;
  font-weight: 900;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
  line-height: 1.2;
}
.legal-page__subtitle {
  font-size: 18px;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}
.legal-page__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-page__notice {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border: 2px solid rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.legal-page__notice::before {
  content: "ℹ";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  opacity: 0.1;
  color: #6366f1;
}
.legal-page__notice p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
  position: relative;
  z-index: 1;
}
.legal-page__notice p strong {
  color: #0f172a;
  font-weight: 700;
}
.legal-page .legal-block {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
}
.legal-page .legal-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s ease;
}
.legal-page .legal-block:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}
.legal-page .legal-block:hover::before {
  height: 100%;
}
.legal-page .legal-block h3 {
  font-size: 26px;
  font-weight: 800;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-page .legal-block h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}
.legal-page .legal-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 16px;
}
.legal-page .legal-block p:last-child {
  margin-bottom: 0;
}
.legal-page .legal-block p strong {
  color: #0f172a;
  font-weight: 700;
}
.legal-page .legal-block p a {
  color: #6366f1;
  font-weight: 600;
  transition: all 0.2s ease;
}
.legal-page .legal-block p a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}
.legal-page .legal-block ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.legal-page .legal-block ul li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  padding-left: 32px;
  margin-bottom: 14px;
  position: relative;
}
.legal-page .legal-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
  font-size: 18px;
}
.legal-page .legal-block ul li:last-child {
  margin-bottom: 0;
}
.legal-page .legal-block ol {
  padding-left: 24px;
  margin: 20px 0;
}
.legal-page .legal-block ol li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 14px;
}
.legal-page .legal-block ol li::marker {
  color: #6366f1;
  font-weight: 700;
}
@media (max-width: 992px) {
  .legal-page {
    padding: 80px 0 60px;
  }
  .legal-page__title {
    font-size: 40px;
  }
  .legal-page__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  .legal-page .legal-block {
    padding: 32px;
  }
  .legal-page .legal-block h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .legal-page {
    padding: 60px 0 40px;
  }
  .legal-page__header {
    margin-bottom: 50px;
  }
  .legal-page__title {
    font-size: 32px;
  }
  .legal-page__subtitle {
    font-size: 16px;
  }
  .legal-page__icon {
    width: 48px;
    height: 48px;
  }
  .legal-page .legal-block {
    padding: 28px 24px;
  }
  .legal-page .legal-block h3 {
    font-size: 22px;
  }
  .legal-page .legal-block p,
  .legal-page .legal-block ul li {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .legal-page__title {
    font-size: 28px;
  }
  .legal-page .legal-block {
    padding: 24px 20px;
  }
  .legal-page .legal-block h3 {
    font-size: 20px;
  }
}

.responsible-gaming {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
.responsible-gaming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.responsible-gaming__head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.responsible-gaming__title {
  font-size: 52px;
  font-weight: 900;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.responsible-gaming__subtitle {
  font-size: 18px;
  color: rgba(241, 245, 249, 0.6);
  line-height: 1.7;
}
.responsible-gaming__content {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.responsible-gaming__notice {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 50px;
  background: rgba(99, 102, 241, 0.08);
  backdrop-filter: blur(20px);
  border-left: 5px solid #6366f1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.responsible-gaming__notice::before {
  content: "ℹ️";
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 60px;
  opacity: 0.1;
}
.responsible-gaming__notice p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(241, 245, 249, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
}
.responsible-gaming__notice p strong {
  color: #1e293b;
  font-weight: 700;
}
.responsible-gaming .rg-block {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 40px 45px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.responsible-gaming .rg-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  transition: height 0.4s ease;
}
.responsible-gaming .rg-block:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}
.responsible-gaming .rg-block:hover::before {
  height: 100%;
}
.responsible-gaming .rg-block h3 {
  font-size: 24px;
  font-weight: 800;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.responsible-gaming .rg-block h3::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 10px #6366f1;
}
.responsible-gaming .rg-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 16px;
}
.responsible-gaming .rg-block p:last-child {
  margin-bottom: 0;
}
.responsible-gaming .rg-block ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.responsible-gaming .rg-block ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.7);
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}
.responsible-gaming .rg-block ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
}
@media (max-width: 992px) {
  .responsible-gaming {
    padding: 80px 0;
  }
  .responsible-gaming__title {
    font-size: 40px;
  }
  .responsible-gaming__content {
    gap: 24px;
  }
  .responsible-gaming .rg-block {
    padding: 35px 40px;
  }
}
@media (max-width: 768px) {
  .responsible-gaming {
    padding: 60px 0;
  }
  .responsible-gaming__head {
    margin-bottom: 50px;
  }
  .responsible-gaming__title {
    font-size: 32px;
  }
  .responsible-gaming__subtitle {
    font-size: 16px;
  }
  .responsible-gaming .rg-block {
    padding: 30px 35px;
  }
  .responsible-gaming .rg-block h3 {
    font-size: 22px;
  }
  .responsible-gaming .rg-block p {
    font-size: 15px;
  }
  .responsible-gaming__notice {
    padding: 30px 35px;
  }
}
@media (max-width: 576px) {
  .responsible-gaming__title {
    font-size: 28px;
  }
  .responsible-gaming .rg-block {
    padding: 25px 30px;
  }
  .responsible-gaming .rg-block h3 {
    font-size: 20px;
  }
  .responsible-gaming .rg-block p {
    font-size: 14px;
  }
  .responsible-gaming__notice {
    padding: 25px 30px;
  }
  .responsible-gaming__notice p {
    font-size: 14px;
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes grid-move {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, 100px 100px;
  }
}
@keyframes float-card {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__visual {
    height: 400px;
  }
  .hero__graphic {
    padding: 20px;
    gap: 15px;
  }
  .hero__card {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__visual {
    height: 300px;
  }
  .hero__graphic {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
    gap: 12px;
  }
  .hero__card {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .hero__badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .hero__btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .hero__visual {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
