@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* Cyberpunk Theme Base Styles */
.cyberpunk-theme {
  background: rgba(0, 0, 20, 0.9);
  border-bottom: 1px solid #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  font-family: "Rajdhani", "Courier New", monospace;
  z-index: 100;
}

@keyframes scanline {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
/* Container */
.cyberpunk-theme .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Age Banner */
.age-banner.glitch-effect {
  background: rgba(255, 0, 170, 0.2);
  padding: 10px 0;
  border-bottom: 1px solid #ff00aa;
  position: relative;
}

.age-banner.glitch-effect p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin: 0;
  position: relative;
  text-shadow: 0 0 5px #fff;
}

.age-banner.glitch-effect p::before,
.age-banner.glitch-effect p::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 20, 0.9);
}

.age-banner.glitch-effect p::before {
  left: 2px;
  text-shadow: -2px 0 #0ff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.age-banner.glitch-effect p::after {
  left: -2px;
  text-shadow: -2px 0 #ff00aa;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(32px, 9999px, 18px, 0);
  }
  20% {
    clip: rect(13px, 9999px, 37px, 0);
  }
  40% {
    clip: rect(45px, 9999px, 11px, 0);
  }
  60% {
    clip: rect(14px, 9999px, 40px, 0);
  }
  80% {
    clip: rect(28px, 9999px, 19px, 0);
  }
  100% {
    clip: rect(26px, 9999px, 39px, 0);
  }
}
@keyframes glitch-anim-2 {
  0% {
    clip: rect(100px, 9999px, 115px, 0);
  }
  20% {
    clip: rect(65px, 9999px, 30px, 0);
  }
  40% {
    clip: rect(79px, 9999px, 92px, 0);
  }
  60% {
    clip: rect(16px, 9999px, 75px, 0);
  }
  80% {
    clip: rect(66px, 9999px, 107px, 0);
  }
  100% {
    clip: rect(10px, 9999px, 61px, 0);
  }
}
/* Header Content */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

/* Logo Styles */
.neon-logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}

.tog-logo-main.flicker {
  color: #0ff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  position: relative;
  animation: flicker 3s linear infinite;
}

.tog-logo-badge.scanlines {
  background: #ff00aa;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  align-self: flex-start;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #fff;
  box-shadow: 0 0 10px #ff00aa;
  position: relative;
  overflow: hidden;
}

.tog-logo-badge.scanlines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  background-size: 100% 4px;
  animation: scan 0.5s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
/* Navigation */
.holographic-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-icon.pulse {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: #0ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #0ff;
  animation: pulse 2s infinite;
  position: relative;
}

.nav-icon.pulse::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #0ff;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.66);
    opacity: 1;
  }
  100% {
    transform: scale(1.33);
    opacity: 0;
  }
}
.nav-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, transparent);
  transition: width 0.3s;
}

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

.nav-link:hover {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

/* Auth Buttons */
.tog-auth {
  display: flex;
  gap: 15px;
}

.glitch-button {
  padding: 8px 20px;
  border: none;
  outline: none;
  color: white;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s;
  overflow: hidden;
}

.glitch-button::before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.glitch-button:hover::before {
  opacity: 1;
}

.glitch-button::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
}

.tog-login {
  border: 1px solid #0ff;
}

.tog-login:hover {
  box-shadow: 0 0 10px #0ff, inset 0 0 10px #0ff;
}

.tog-register {
  border: 1px solid #ff00aa;
}

.tog-register:hover {
  box-shadow: 0 0 10px #ff00aa, inset 0 0 10px #ff00aa;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/* Mobile Menu Toggle */
.holographic-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: relative;
}

.holographic-btn span {
  width: 100%;
  height: 2px;
  background: #0ff;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
  box-shadow: 0 0 5px #0ff;
}

.holographic-btn .line-1 {
  transform: rotate(0);
}

.holographic-btn .line-2 {
  opacity: 1;
  transform: translateX(0);
}

.holographic-btn .line-3 {
  transform: rotate(0);
}

.holographic-btn:hover span {
  background: #ff00aa;
  box-shadow: 0 0 10px #ff00aa;
}

/* Mobile Auth Buttons */
.mobile-auth {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .holographic-nav {
    position: fixed;
    top: 0;
    right: -110%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 20, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 5;
    border-left: 1px solid #0ff;
    box-shadow: -5px 0 30px rgba(0, 255, 255, 0.3);
  }
  .holographic-nav.active {
    right: 0;
  }
  .holographic-btn {
    display: flex;
  }
  .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
  }
  .mobile-auth .glitch-button {
    width: 100%;
    text-align: center;
  }
}
/* Additional Effects */
.cyberpunk-theme::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 20%, transparent 80%, rgba(255, 0, 170, 0.1) 100%), repeating-linear-gradient(45deg, rgba(0, 255, 255, 0.05) 0px, rgba(0, 255, 255, 0.05) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
  z-index: -1;
}

/* Cyberpunk Intro Section */
.cyberpunk-intro {
  position: relative;
  background: linear-gradient(135deg, #0a0a2a 0%, #1a003a 100%);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

/* Grid background */
.cyber-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridScroll 50s linear infinite;
  z-index: 1;
}

@keyframes gridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}
/* Glitch overlay */
.glitch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(255, 0, 170, 0.1) 50%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 10px 10px;
  opacity: 0.3;
  z-index: 2;
  animation: glitchOverlay 20s linear infinite;
}

@keyframes glitchOverlay {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}
/* Section header */
.glitch-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.neon-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.neon-title span {
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

.flicker {
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.7;
    text-shadow: 0 0 5px #0ff;
  }
}
.scanline-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.scanline-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, transparent);
}

.header-underline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
  margin: 20px auto 0;
  max-width: 300px;
  position: relative;
}

.header-underline::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #0ff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 10px #0ff;
}

/* Intro grid */
.dx-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 3;
}

/* Holographic cards */
.holographic-card {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 10, 20, 0.5);
}

.holographic-card:hover {
  transform: translateY(-10px);
  border-color: #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.holographic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 5px 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.card-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
  z-index: -1;
  animation: cardGlitch 8s infinite;
}

@keyframes cardGlitch {
  0%, 100% {
    opacity: 0;
  }
  10% {
    opacity: 0.2;
    background: rgba(0, 255, 255, 0.1);
  }
  15% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
    background: rgba(255, 0, 170, 0.1);
  }
  55% {
    opacity: 0;
  }
}
/* Icon circle */
.pulse-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s;
}

.holographic-card:hover .pulse-circle {
  background: rgba(0, 255, 255, 0.2);
  border-color: #0ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.neon-icon {
  width: 40px;
  height: 40px;
  z-index: 2;
}

.icon-aura {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  animation: pulseAura 3s infinite;
}

@keyframes pulseAura {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* Card content */
.card-title {
  font-size: 22px;
  color: #0ff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #0ff, transparent);
}

.card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

/* Binary decoration */
.binary-decoration {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: rgba(0, 255, 255, 0.3);
  letter-spacing: 2px;
  overflow: hidden;
  white-space: nowrap;
  animation: binaryScroll 30s linear infinite;
}

@keyframes binaryScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .neon-title {
    font-size: 36px;
  }
  .dx-intro-grid {
    grid-template-columns: 1fr;
  }
  .holographic-card {
    padding: 25px;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== DX-SHOWCASE SECTION - FEATURED GAMES ===== */
/* Main showcase section */
.dx-showcase {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .dx-showcase {
    padding: 80px 0;
  }
}
@media (max-width: 740px) {
  .dx-showcase {
    padding: 60px 0;
  }
}
@media (max-width: 514px) {
  .dx-showcase {
    padding: 50px 0;
  }
}
.dx-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 0, 170, 0.1) 0%, transparent 40%), radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.1) 0%, transparent 40%);
  z-index: 1;
}

/* Section header */
.dx-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.dx-section-header h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: "VinaSans";
}
.dx-section-header h2 span {
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
@media (max-width: 1300px) {
  .dx-section-header h2 {
    font-size: 42px;
  }
}
@media (max-width: 740px) {
  .dx-section-header h2 {
    font-size: 36px;
  }
}
@media (max-width: 514px) {
  .dx-section-header h2 {
    font-size: 30px;
  }
}

.dx-section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 740px) {
  .dx-section-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 514px) {
  .dx-section-subtitle {
    font-size: 14px;
  }
}

/* Showcase tabs */
.dx-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}
@media (max-width: 740px) {
  .dx-showcase-tabs {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 514px) {
  .dx-showcase-tabs {
    gap: 10px;
  }
}

.dx-tab-btn {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  font-family: "Poppins";
}
@media (max-width: 514px) {
  .dx-tab-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}
.dx-tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.dx-tab-btn:hover {
  border-color: #0ff;
  color: #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.dx-tab-btn:hover::before {
  left: 100%;
}
.dx-tab-btn.active {
  background: rgba(0, 255, 255, 0.1);
  border-color: #0ff;
  color: #0ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Games grid */
.dx-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 3;
  margin-bottom: 50px;
}
@media (max-width: 1300px) {
  .dx-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 740px) {
  .dx-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 514px) {
  .dx-games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Game card */
.dx-game-card {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease, opacity 0.3s ease;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 10, 20, 0.5);
  opacity: 1;
}
.dx-game-card:hover {
  transform: translateY(-10px);
  border-color: #0ff;
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}
.dx-game-card:hover .dx-game-overlay {
  opacity: 1;
}
.dx-game-card:hover .dx-game-thumbnail img {
  transform: scale(1.1);
}
.dx-game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 5px 5px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.dx-game-card:hover::before {
  opacity: 1;
}
.dx-game-card[style*="display: none"] {
  display: none !important;
}

/* Game thumbnail */
.dx-game-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dx-game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Game overlay */
.dx-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Play button */
.dx-play-btn {
  display: inline-block;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 25px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
  text-decoration: none;
  text-align: center;
}
.dx-play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.dx-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
}
.dx-play-btn:hover::before {
  left: 100%;
}
.dx-play-btn:focus, .dx-play-btn:active {
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Game info */
.dx-game-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.dx-game-rating {
  color: #ffd700;
  font-size: 14px;
}

.dx-game-category {
  background: rgba(255, 0, 170, 0.2);
  border: 1px solid #ff00aa;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 3px;
  color: #ff00aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Game content */
.dx-game-title {
  font-size: 20px;
  color: #0ff;
  margin: 15px 0 8px;
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
@media (max-width: 514px) {
  .dx-game-title {
    font-size: 18px;
  }
}

.dx-game-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px 20px;
  margin: 0;
}
@media (max-width: 514px) {
  .dx-game-desc {
    font-size: 13px;
  }
}

/* Showcase footer */
.dx-showcase-footer {
  text-align: center;
  position: relative;
  z-index: 3;
}

.dx-view-all {
  display: inline-block;
  background: transparent;
  border: 2px solid #0ff;
  color: #0ff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  font-family: "Poppins";
}
@media (max-width: 514px) {
  .dx-view-all {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.dx-view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0ff;
  transition: left 0.3s;
  z-index: -1;
}
.dx-view-all:hover {
  color: #000000;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}
.dx-view-all:hover::before {
  left: 0;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== DX-FEATURES SECTION ===== */
.dx-features {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .dx-features {
    padding: 80px 0;
  }
}
@media (max-width: 740px) {
  .dx-features {
    padding: 60px 0;
  }
}
.dx-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 0, 170, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.dx-features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 1300px) {
  .dx-features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.dx-features-text .dx-section-header {
  text-align: left;
  margin-bottom: 40px;
}
.dx-features-text .dx-section-header h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: "VinaSans";
}
.dx-features-text .dx-section-header h2 span {
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
@media (max-width: 1300px) {
  .dx-features-text .dx-section-header h2 {
    font-size: 36px;
  }
}
@media (max-width: 740px) {
  .dx-features-text .dx-section-header h2 {
    font-size: 30px;
  }
}
.dx-features-text .dx-section-header .dx-section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@media (max-width: 740px) {
  .dx-features-text .dx-section-header .dx-section-subtitle {
    font-size: 16px;
  }
}

.dx-features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dx-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(10, 10, 40, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.dx-feature-item:hover {
  border-color: #0ff;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  transform: translateX(10px);
}
.dx-feature-item:hover .dx-feature-number {
  background: linear-gradient(45deg, #0ff, #ff00aa);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.dx-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}
.dx-feature-item:hover::before {
  left: 100%;
}

.dx-feature-number {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #0ff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dx-feature-details h3 {
  font-size: 20px;
  color: #0ff;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 740px) {
  .dx-feature-details h3 {
    font-size: 18px;
  }
}
.dx-feature-details p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 740px) {
  .dx-feature-details p {
    font-size: 14px;
  }
}

.dx-features-visual {
  position: relative;
}

.container1 {
  padding: 0 20px;
}

.dx-visual-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}
.dx-visual-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.dx-visual-container:hover img {
  transform: scale(1.05);
}
.dx-visual-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 10px 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.dx-visual-container:hover::before {
  opacity: 1;
}

/* ===== DX-COMMUNITY SECTION ===== */
.dx-community {
  position: relative;
  background: linear-gradient(135deg, #1a0033 0%, #0a0a2a 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .dx-community {
    padding: 80px 0;
  }
}
@media (max-width: 740px) {
  .dx-community {
    padding: 60px 0;
  }
}
.dx-community::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 0, 170, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%);
  z-index: 1;
}
.dx-community .dx-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.dx-community .dx-section-header h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: "VinaSans";
}
.dx-community .dx-section-header h2 span {
  color: #ff00aa;
  text-shadow: 0 0 10px #ff00aa, 0 0 20px #ff00aa;
}
@media (max-width: 1300px) {
  .dx-community .dx-section-header h2 {
    font-size: 42px;
  }
}
@media (max-width: 740px) {
  .dx-community .dx-section-header h2 {
    font-size: 36px;
  }
}
@media (max-width: 514px) {
  .dx-community .dx-section-header h2 {
    font-size: 30px;
  }
}
.dx-community .dx-section-header .dx-section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 740px) {
  .dx-community .dx-section-header .dx-section-subtitle {
    font-size: 16px;
  }
}

.dx-community-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1300px) {
  .dx-community-stats {
    gap: 40px;
  }
}
@media (max-width: 740px) {
  .dx-community-stats {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
  }
}

.dx-stat-circle {
  text-align: center;
  position: relative;
}
.dx-stat-circle::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 0, 170, 0.3);
  border-radius: 50%;
  border-top-color: #ff00aa;
  animation: rotate 3s linear infinite;
}
.dx-stat-circle:nth-child(2)::before {
  border-top-color: #0ff;
  border-color: rgba(0, 255, 255, 0.3);
  animation-delay: -1s;
}
.dx-stat-circle:nth-child(3)::before {
  border-top-color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
  animation-delay: -2s;
}

@keyframes rotate {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
.dx-circle-value {
  font-size: 36px;
  font-weight: 900;
  color: #ff00aa;
  margin-bottom: 10px;
  text-shadow: 0 0 10px currentColor;
  position: relative;
  z-index: 2;
}
@media (max-width: 740px) {
  .dx-circle-value {
    font-size: 32px;
  }
}

.dx-stat-circle:nth-child(2) .dx-circle-value {
  color: #0ff;
}

.dx-stat-circle:nth-child(3) .dx-circle-value {
  color: #ffd700;
}

.dx-circle-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* Testimonials */
.dx-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1300px) {
  .dx-testimonials {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 740px) {
  .dx-testimonials {
    grid-template-columns: 1fr;
  }
}

.dx-testimonial-card {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(255, 0, 170, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.1);
}
.dx-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #ff00aa;
  box-shadow: 0 15px 40px rgba(255, 0, 170, 0.3);
}
.dx-testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(255, 0, 170, 0.1) 50%, transparent 52%);
  background-size: 5px 5px;
  opacity: 0;
  transition: opacity 0.3s;
}
.dx-testimonial-card:hover::before {
  opacity: 1;
}
.dx-testimonial-card:nth-child(2) {
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}
.dx-testimonial-card:nth-child(2):hover {
  border-color: #0ff;
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}
.dx-testimonial-card:nth-child(2)::before {
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
}

.dx-testimonial-content {
  margin-bottom: 25px;
}
.dx-testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0;
  position: relative;
}
.dx-testimonial-content p::before {
  content: '"';
  font-size: 60px;
  color: rgba(255, 0, 170, 0.3);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
}
.dx-testimonial-content p::after {
  content: '"';
  font-size: 60px;
  color: rgba(255, 0, 170, 0.3);
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: serif;
}
@media (max-width: 740px) {
  .dx-testimonial-content p {
    font-size: 15px;
  }
}

.dx-testimonial-card:nth-child(2) .dx-testimonial-content p::before, .dx-testimonial-card:nth-child(2) .dx-testimonial-content p::after {
  color: rgba(0, 255, 255, 0.3);
}

.dx-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.dx-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 170, 0.5);
  object-fit: cover;
}

.dx-testimonial-card:nth-child(2) .dx-testimonial-author img {
  border-color: rgba(0, 255, 255, 0.5);
}

.dx-author-info h4 {
  font-size: 18px;
  color: #ff00aa;
  margin: 0 0 5px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 740px) {
  .dx-author-info h4 {
    font-size: 16px;
  }
}
.dx-author-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
@media (max-width: 740px) {
  .dx-author-info p {
    font-size: 13px;
  }
}

.dx-testimonial-card:nth-child(2) .dx-author-info h4 {
  color: #0ff;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== DX-PROCESS SECTION ===== */
.dx-process {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .dx-process {
    padding: 80px 0;
  }
}
@media (max-width: 740px) {
  .dx-process {
    padding: 60px 0;
  }
}
.dx-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 50% 80%, rgba(255, 0, 170, 0.1) 0%, transparent 40%);
  z-index: 1;
}
.dx-process .dx-section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}
.dx-process .dx-section-header h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: "VinaSans";
}
.dx-process .dx-section-header h2 span {
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
@media (max-width: 1300px) {
  .dx-process .dx-section-header h2 {
    font-size: 42px;
  }
}
@media (max-width: 740px) {
  .dx-process .dx-section-header h2 {
    font-size: 36px;
  }
}
@media (max-width: 514px) {
  .dx-process .dx-section-header h2 {
    font-size: 30px;
  }
}
.dx-process .dx-section-header .dx-section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 740px) {
  .dx-process .dx-section-header .dx-section-subtitle {
    font-size: 16px;
  }
}

.dx-process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .dx-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.dx-process-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), rgba(255, 0, 170, 0.5), transparent);
  z-index: 1;
}
@media (max-width: 1300px) {
  .dx-process-line {
    display: none;
  }
}
.dx-process-line::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #0ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #0ff;
  animation: pulse-line 2s infinite;
}
.dx-process-line::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #ff00aa;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff00aa;
  animation: pulse-line 2s infinite 1s;
}

@keyframes pulse-line {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}
.dx-step {
  text-align: center;
  max-width: 250px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1300px) {
  .dx-step {
    max-width: 400px;
  }
}

.dx-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.dx-step-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #0ff, #ff00aa) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: rotate-border 3s linear infinite;
}
.dx-step-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.7);
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dx-step h3 {
  font-size: 22px;
  color: #0ff;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 740px) {
  .dx-step h3 {
    font-size: 20px;
  }
}

.dx-step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}
@media (max-width: 740px) {
  .dx-step p {
    font-size: 15px;
  }
}

/* ===== DX-FAQ SECTION ===== */
.dx-faq {
  position: relative;
  background: linear-gradient(135deg, #1a0033 0%, #0a0a2a 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .dx-faq {
    padding: 80px 0;
  }
}
@media (max-width: 740px) {
  .dx-faq {
    padding: 60px 0;
  }
}
.dx-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 0, 170, 0.15) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.15) 0%, transparent 50%);
  z-index: 1;
}
.dx-faq .dx-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.dx-faq .dx-section-header h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: "VinaSans";
}
.dx-faq .dx-section-header h2 span {
  color: #ff00aa;
  text-shadow: 0 0 10px #ff00aa, 0 0 20px #ff00aa;
}
@media (max-width: 1300px) {
  .dx-faq .dx-section-header h2 {
    font-size: 42px;
  }
}
@media (max-width: 740px) {
  .dx-faq .dx-section-header h2 {
    font-size: 36px;
  }
}
@media (max-width: 514px) {
  .dx-faq .dx-section-header h2 {
    font-size: 30px;
  }
}
.dx-faq .dx-section-header .dx-section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 740px) {
  .dx-faq .dx-section-header .dx-section-subtitle {
    font-size: 16px;
  }
}

.dx-accordion {
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 3;
}

.dx-accordion-item {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(255, 0, 170, 0.3);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dx-accordion-item:hover {
  border-color: #ff00aa;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
}
.dx-accordion-item.active {
  border-color: #ff00aa;
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.4);
}
.dx-accordion-item.active .dx-accordion-question {
  background: rgba(255, 0, 170, 0.1);
  color: #ff00aa;
}
.dx-accordion-item.active .dx-accordion-icon {
  transform: rotate(45deg);
  background: #ff00aa;
}
.dx-accordion-item.active .dx-accordion-answer {
  max-height: 200px;
  padding: 20px 25px;
}

.dx-accordion-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 25px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Poppins";
}
@media (max-width: 740px) {
  .dx-accordion-question {
    font-size: 16px;
    padding: 20px;
  }
}
.dx-accordion-question:hover {
  background: rgba(255, 0, 170, 0.05);
  color: #ff00aa;
}

.dx-accordion-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 0, 170, 0.5);
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.dx-accordion-icon::before, .dx-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transition: all 0.3s ease;
}
.dx-accordion-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.dx-accordion-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.dx-accordion-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.3s ease;
}
@media (max-width: 740px) {
  .dx-accordion-answer {
    padding: 0 20px;
  }
}
.dx-accordion-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}
@media (max-width: 740px) {
  .dx-accordion-answer p {
    font-size: 15px;
  }
}

/* FAQ CTA */
.dx-faq-cta {
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 40px;
  background: rgba(10, 10, 40, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.dx-faq-cta p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
}
@media (max-width: 740px) {
  .dx-faq-cta p {
    font-size: 18px;
  }
}

.dx-contact-btn {
  display: inline-block;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  color: #fff;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
}
@media (max-width: 740px) {
  .dx-contact-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
.dx-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.dx-contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  text-decoration: none;
  color: #fff;
}
.dx-contact-btn:hover::before {
  left: 100%;
}

/* ===== DX-CTA SECTION ===== */
.dx-cta {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
  text-align: center;
}
@media (max-width: 1300px) {
  .dx-cta {
    padding: 100px 0;
  }
}
@media (max-width: 740px) {
  .dx-cta {
    padding: 80px 0;
  }
}
.dx-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 30% 70%, rgba(255, 0, 170, 0.2) 0%, transparent 50%);
  z-index: 1;
}
.dx-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridScroll 30s linear infinite;
  z-index: 1;
}

.dx-cta-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}
.dx-cta-content h2 {
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: "VinaSans";
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
@media (max-width: 1300px) {
  .dx-cta-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 740px) {
  .dx-cta-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 514px) {
  .dx-cta-content h2 {
    font-size: 32px;
  }
}
.dx-cta-content p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .dx-cta-content p {
    font-size: 18px;
  }
}
@media (max-width: 514px) {
  .dx-cta-content p {
    font-size: 16px;
  }
}

.dx-cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 740px) {
  .dx-cta-buttons {
    gap: 20px;
  }
}
@media (max-width: 514px) {
  .dx-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.dx-primary-btn,
.dx-secondary-btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
}
@media (max-width: 740px) {
  .dx-primary-btn,
  .dx-secondary-btn {
    padding: 15px 32px;
    font-size: 16px;
  }
}
@media (max-width: 514px) {
  .dx-primary-btn,
  .dx-secondary-btn {
    width: 250px;
    text-align: center;
  }
}
.dx-primary-btn::before,
.dx-secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.dx-primary-btn:hover::before,
.dx-secondary-btn:hover::before {
  left: 100%;
}

.dx-primary-btn {
  background: linear-gradient(45deg, #0ff, #ff00aa);
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}
.dx-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
  text-decoration: none;
  color: #fff;
}

.dx-secondary-btn {
  background: transparent;
  color: #0ff;
  border: 2px solid #0ff;
}
.dx-secondary-btn:hover {
  background: #0ff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
  text-decoration: none;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== TOG-SLOTS SECTION ===== */
.tog-slots {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .tog-slots {
    padding: 100px 0;
  }
}
@media (max-width: 740px) {
  .tog-slots {
    padding: 80px 0;
  }
}
@media (max-width: 514px) {
  .tog-slots {
    padding: 60px 0;
  }
}
.tog-slots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 170, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 40%);
  z-index: 1;
}
.tog-slots::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridScroll 40s linear infinite;
  z-index: 1;
}

@keyframes gridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
/* Section header */
.tog-slots .section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}
@media (max-width: 740px) {
  .tog-slots .section-header {
    margin-bottom: 60px;
  }
}
.tog-slots .section-header h2 {
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: "VinaSans";
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.tog-slots .section-header h2 span {
  color: #0ff;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  animation: neonFlicker 4s infinite alternate;
}
@media (max-width: 1300px) {
  .tog-slots .section-header h2 {
    font-size: 48px;
  }
}
@media (max-width: 740px) {
  .tog-slots .section-header h2 {
    font-size: 40px;
  }
}
@media (max-width: 514px) {
  .tog-slots .section-header h2 {
    font-size: 32px;
  }
}
.tog-slots .section-header p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .tog-slots .section-header p {
    font-size: 18px;
  }
}
@media (max-width: 514px) {
  .tog-slots .section-header p {
    font-size: 16px;
  }
}

@keyframes neonFlicker {
  0%, 100% {
    text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    opacity: 0.8;
  }
}
/* Slots grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (max-width: 740px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 514px) {
  .slots-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Slot card */
.slot-card {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 10, 20, 0.5);
}
.slot-card:hover {
  transform: translateY(-15px);
  border-color: #0ff;
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.4);
}
.slot-card:hover .slot-overlay {
  opacity: 1;
}
.slot-card:hover .slot-preview img {
  transform: scale(1.1);
}
.slot-card:hover::before {
  opacity: 1;
}
.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 8px 8px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.slot-card:nth-child(2n) {
  border-color: rgba(255, 0, 170, 0.3);
}
.slot-card:nth-child(2n):hover {
  border-color: #ff00aa;
  box-shadow: 0 20px 50px rgba(255, 0, 170, 0.4);
}
.slot-card:nth-child(2n)::before {
  background: linear-gradient(45deg, transparent 48%, rgba(255, 0, 170, 0.1) 50%, transparent 52%);
}
.slot-card:nth-child(3n) {
  border-color: rgba(255, 215, 0, 0.3);
}
.slot-card:nth-child(3n):hover {
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}
.slot-card:nth-child(3n)::before {
  background: linear-gradient(45deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
}

/* Slot preview */
.slot-preview {
  position: relative;
  height: 250px;
  overflow: hidden;
}
@media (max-width: 740px) {
  .slot-preview {
    height: 220px;
  }
}
@media (max-width: 514px) {
  .slot-preview {
    height: 200px;
  }
}
.slot-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Slot overlay */
.slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 40, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Slot info */
.slot-info {
  text-align: center;
  padding: 20px;
}
.slot-info h3 {
  font-size: 22px;
  color: #0ff;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #0ff;
}
@media (max-width: 740px) {
  .slot-info h3 {
    font-size: 20px;
  }
}
@media (max-width: 514px) {
  .slot-info h3 {
    font-size: 18px;
  }
}

/* Slot rating */
.slot-rating {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ffd700;
}
@media (max-width: 740px) {
  .slot-rating {
    font-size: 16px;
  }
}

/* Play button */
.play-btn {
  display: inline-block;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
@media (max-width: 740px) {
  .play-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media (max-width: 514px) {
  .play-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
.play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  text-decoration: none;
  color: #fff;
}
.play-btn:hover::before {
  left: 100%;
}
.play-btn:focus, .play-btn:active {
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Alternating button colors */
.slot-card:nth-child(2n) .play-btn {
  background: linear-gradient(45deg, #ff00aa, #0ff);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
}
.slot-card:nth-child(2n) .play-btn:hover {
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.6);
}

.slot-card:nth-child(3n) .play-btn {
  background: linear-gradient(45deg, #ffd700, #ff00aa);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.slot-card:nth-child(3n) .play-btn:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* CYBERPUNK CASINO FOOTER STYLES */
.casino-footer {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  color: #fff;
  padding: 60px 0 30px;
  overflow: hidden;
  border-top: 2px solid #0ff;
  box-shadow: 0 -10px 30px rgba(0, 255, 255, 0.2);
}

.casino-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 0, 170, 0.1) 0%, transparent 40%), radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.1) 0%, transparent 40%);
  z-index: 1;
}

/* Cyberpunk grid overlay for footer */
.casino-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
  animation: footer-grid-scroll 25s linear infinite;
}

@keyframes footer-grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}
.footer-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer links section */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-links a:hover {
  color: #0ff;
  border-color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Disclaimer box */
.disclaimer-box {
  position: relative;
  background: rgba(0, 0, 30, 0.6);
  border: 1px solid rgba(255, 0, 170, 0.3);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.1);
}

.disclaimer-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00aa, #0ff, #ff00aa);
  background-size: 200% 200%;
  z-index: -1;
  animation: disclaimer-border 6s linear infinite;
  opacity: 0.3;
  border-radius: 8px;
}

@keyframes disclaimer-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.disclaimer-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.age-badge {
  display: inline-block;
  background: linear-gradient(45deg, #ff00aa, #0ff);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
  animation: age-badge-pulse 3s infinite;
}

@keyframes age-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 170, 0.8);
  }
}
/* Footer logo and copyright section */
.footer-logo-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
  transform: scale(1.05);
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cyberpunk binary particles for footer */
.footer-binary-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  opacity: 0.1;
}

.footer-binary-particles span {
  position: absolute;
  color: #0ff;
  font-family: "Courier New", monospace;
  font-size: 10px;
  opacity: 0;
  animation: footer-binary-fall linear infinite;
}

@keyframes footer-binary-fall {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100% + 20px));
    opacity: 0;
  }
}
/* Responsive design for footer */
@media (max-width: 768px) {
  .casino-footer {
    padding: 40px 0 20px;
  }
  .footer-links {
    gap: 20px;
    margin-bottom: 30px;
  }
  .footer-links a {
    font-size: 14px;
    padding: 6px 12px;
  }
  .disclaimer-box {
    padding: 20px;
    margin-bottom: 30px;
  }
  .disclaimer-text {
    font-size: 13px;
  }
  .age-badge {
    font-size: 16px;
    padding: 8px 16px;
  }
}
@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .disclaimer-box {
    padding: 15px;
  }
  .disclaimer-text {
    font-size: 12px;
  }
  .footer-logo-copyright {
    gap: 15px;
  }
  .footer-logo {
    height: 40px;
  }
  .copyright {
    font-size: 12px;
  }
}
/* Stellar footer cyberpunk enhancement */
.stellar-footer {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  color: #fff;
  padding: 80px 0 40px;
  overflow: hidden;
  border-top: 2px solid #0ff;
  box-shadow: 0 -10px 30px rgba(0, 255, 255, 0.2);
}

.stellar-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 0, 170, 0.08) 0%, transparent 35%), radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 35%);
  z-index: 1;
}

.stellar-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  animation: stellar-grid-scroll 30s linear infinite;
}

@keyframes stellar-grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}
/* Cyberpunk Hero Base */
.cyberpunk-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  color: #fff;
  padding: 100px 0 150px;
  overflow: hidden;
  border-bottom: 1px solid #0ff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.cyberpunk-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 170, 0.15) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 30%);
  z-index: 1;
}

/* Grid overlay */
.cyber-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
/* Glitch effect layers */
.glitch-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.glitch-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
}

.glitch-layer:nth-child(1) {
  background: linear-gradient(135deg, #ff00aa 0%, #1a0033 100%);
  animation: glitch-anim-1 8s infinite;
}

.glitch-layer:nth-child(2) {
  background: linear-gradient(135deg, #0a0a1a 0%, #00ffff 100%);
  animation: glitch-anim-2 12s infinite;
}

@keyframes glitch-anim-1 {
  0%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  5% {
    opacity: 0.3;
    transform: translateX(-5px);
  }
  10% {
    opacity: 0;
    transform: translateX(5px);
  }
  15% {
    opacity: 0;
  }
}
@keyframes glitch-anim-2 {
  0%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  25% {
    opacity: 0.3;
    transform: translateX(5px);
  }
  30% {
    opacity: 0;
    transform: translateX(-5px);
  }
  35% {
    opacity: 0;
  }
}
/* Hero content */
.dx-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Neon tag */
.neon-tag {
  display: inline-block;
  background: rgba(255, 0, 170, 0.2);
  border: 1px solid #ff00aa;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.5);
}

.scanlines {
  position: relative;
}

.scanlines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  background-size: 100% 4px;
  animation: scan 2s linear infinite;
}

.tag-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  animation: tag-pulse 4s infinite;
}

@keyframes tag-pulse {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  50% {
    transform: scaleX(1);
    opacity: 0;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
/* Hero title */
.dx-hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (max-width: 1040px) {
  .dx-hero-title {
    font-size: 60px;
  }
}
@media (max-width: 740px) {
  .dx-hero-title {
    font-size: 48px;
  }
}
@media (max-width: 514px) {
  .dx-hero-title {
    font-size: 36px;
  }
}

.glitch-text {
  position: relative;
}

.dx-title-line {
  display: block;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.flicker-slow {
  animation: flicker-slow 6s infinite alternate;
}

.dx-title-accent {
  display: block;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  position: relative;
}

.flicker-fast {
  animation: flicker-fast 3s infinite alternate;
}

@keyframes glitch-effect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}
/* Stats section */
.holographic-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1300px) {
  .holographic-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 740px) {
  .holographic-stats {
    flex-direction: column;
    gap: 30px;
  }
}

.dx-stat-card {
  position: relative;
  background: rgba(0, 0, 30, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 25px;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 0.3s;
  z-index: 1;
}

.dx-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  border-color: #0ff;
}

.dx-stat-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #0ff, #ff00aa, #0ff);
  background-size: 200% 200%;
  z-index: -1;
  animation: stat-border 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.dx-stat-card:hover::before {
  opacity: 1;
}

.dx-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #0ff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  position: relative;
}

.dx-stat-number::after {
  content: attr(data-number);
  position: absolute;
  top: 0;
  left: 0;
  color: #ff00aa;
  z-index: -1;
  animation: number-glitch 6s infinite;
}

.dx-stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
  animation: stat-glitch 8s infinite;
}

@keyframes stat-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes number-glitch {
  0%, 100% {
    transform: translate(0);
    opacity: 1;
  }
  25% {
    transform: translate(-2px, 2px);
    opacity: 0.8;
  }
  50% {
    transform: translate(2px, -2px);
    opacity: 0.8;
  }
  75% {
    transform: translate(-2px, -2px);
    opacity: 0.8;
  }
}
@keyframes stat-glitch {
  0%, 100% {
    opacity: 0;
  }
  10% {
    opacity: 0.3;
    background: rgba(0, 255, 255, 0.2);
  }
  15% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
    background: rgba(255, 0, 170, 0.2);
  }
  55% {
    opacity: 0;
  }
}
/* Primary button */
.energy-pulse {
  display: inline-block;
  position: relative;
  padding: 15px 40px;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: all 0.3s;
}

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

.btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
  z-index: 1;
  animation: pulse 2s infinite;
}

.btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.energy-pulse:hover {
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.7);
  transform: translateY(-3px);
}

.energy-pulse:hover .btn-overlay {
  transform: translateX(100%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* Binary rain effect */
.binary-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.3;
}

.binary-rain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 90%, rgba(0, 255, 255, 0.1) 100%);
}

.binary-rain span {
  position: absolute;
  color: #0ff;
  font-family: "Courier New", monospace;
  font-size: 14px;
  opacity: 0;
  animation: binary-fall linear infinite;
}

@keyframes binary-fall {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 50px));
    opacity: 0;
  }
}
/* ABOUT US SECTION STYLES */
.cosmic-about {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(19, 16, 16, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
.cosmic-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  pointer-events: none;
  animation: cosmicPulse 15s infinite alternate;
}
.cosmic-about .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cosmic-about .about-event-horizon {
  position: relative;
}
.cosmic-about .section-title {
  font-family: "VinaSans";
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cosmic-about .section-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.cosmic-about .section-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.cosmic-about .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.cosmic-about .section-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.cosmic-about .about-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .cosmic-about .about-content {
    flex-direction: column;
  }
}
.cosmic-about .about-text {
  flex: 1;
}
.cosmic-about .cosmic-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.cosmic-about .cosmic-paragraph strong {
  color: #fff;
  font-weight: 600;
}
.cosmic-about .about-subtitle {
  font-size: 1.8rem;
  color: #eb2196;
  margin: 3rem 0 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.cosmic-about .about-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 5px;
  background: linear-gradient(to bottom, #5e21eb, #eb2196);
  border-radius: 5px;
}
.cosmic-about .cosmic-features2 {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cosmic-about .cosmic-features2 {
    flex-direction: column;
  }
}
.cosmic-about .feature-pillar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(94, 33, 235, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cosmic-about .feature-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.03) 0%, rgba(235, 33, 150, 0.03) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cosmic-about .feature-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cosmic-about .feature-pillar:hover::before {
  opacity: 1;
}
.cosmic-about .feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cosmic-about .feature-pillar h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.cosmic-about .feature-pillar p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.cosmic-about .about-image {
  flex: 1;
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .cosmic-about .about-image {
    width: 100%;
    min-height: 300px;
  }
}
.cosmic-about .cosmic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.cosmic-about .image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(94, 33, 235, 0.2) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: glowPulse 6s infinite alternate;
}
.cosmic-about .cosmic-values {
  margin: 5rem 0;
}
.cosmic-about .values-title {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  position: relative;
}
.cosmic-about .values-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
}
.cosmic-about .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.cosmic-about .value-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(94, 33, 235, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cosmic-about .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #5e21eb, #eb2196);
  transition: width 0.4s ease;
}
.cosmic-about .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cosmic-about .value-card:hover::before {
  width: 100%;
  opacity: 0.1;
}
.cosmic-about .value-number {
  font-family: "VinaSans";
  font-size: 2.5rem;
  color: rgba(235, 33, 150, 0.3);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.cosmic-about .value-card h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cosmic-about .value-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.cosmic-about .cosmic-cta {
  text-align: center;
  margin-top: 4rem;
}
.cosmic-about .cosmic-cta p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.cosmic-about .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cosmic-about .cta-btn.supernova {
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  box-shadow: 0 5px 25px rgba(235, 33, 150, 0.3);
}
.cosmic-about .cta-btn.supernova:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(235, 33, 150, 0.5);
}
.cosmic-about .cta-btn.supernova:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6f38ed, #ed38a1);
  z-index: -1;
  animation: pulseGlow 1.5s infinite;
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes glowPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .cosmic-about {
    padding: 4rem 0;
  }
  .cosmic-about .section-title {
    font-size: 2.5rem;
  }
  .cosmic-about .about-subtitle {
    font-size: 1.5rem;
  }
  .cosmic-about .cosmic-features2 {
    flex-direction: column;
  }
  .cosmic-about .values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .cosmic-about .section-title {
    font-size: 2rem;
  }
  .cosmic-about .about-content {
    gap: 2rem;
  }
  .cosmic-about .about-image {
    min-height: 250px;
  }
}
/* COSMIC SLOTS GALLERY STYLES */
.cosmic-slots-gallery {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(ellipse at center, #050404 0%, #000000 100%);
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
.cosmic-slots-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  animation: cosmicPulse 15s infinite alternate;
  pointer-events: none;
}
.cosmic-slots-gallery .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cosmic-slots-gallery .cosmic-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.cosmic-slots-gallery .cosmic-section-header .section-title {
  font-family: "VinaSans";
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.cosmic-slots-gallery .cosmic-section-header .section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cosmic-slots-gallery .cosmic-section-header .cosmic-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  margin: 2rem auto 0;
  border-radius: 3px;
}
.cosmic-slots-gallery .quantum-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.cosmic-slots-gallery .cosmic-slot-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(94, 33, 235, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cosmic-slots-gallery .cosmic-slot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.cosmic-slots-gallery .cosmic-slot-card:hover .slot-hologram .holographic-overlay {
  opacity: 1;
}
.cosmic-slots-gallery .cosmic-slot-card:hover .slot-hologram .quantum-play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=space] .holographic-overlay {
  background: linear-gradient(45deg, rgba(65, 105, 225, 0.3), rgba(0, 191, 255, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=dragon] .holographic-overlay {
  background: linear-gradient(45deg, rgba(220, 20, 60, 0.3), rgba(255, 69, 0, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=retro] .holographic-overlay {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=fruit] .holographic-overlay {
  background: linear-gradient(45deg, rgba(50, 205, 50, 0.3), rgba(34, 139, 34, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=gem] .holographic-overlay {
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=gift] .holographic-overlay {
  background: linear-gradient(45deg, rgba(255, 192, 203, 0.3), rgba(255, 105, 180, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=gold] .holographic-overlay {
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.3), rgba(184, 134, 11, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=western] .holographic-overlay {
  background: linear-gradient(45deg, rgba(139, 69, 19, 0.3), rgba(160, 82, 45, 0.3));
}
.cosmic-slots-gallery .slot-hologram {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cosmic-slots-gallery .slot-hologram .slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cosmic-slots-gallery .slot-hologram .holographic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: overlay;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button .pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button .play-link {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(235, 33, 150, 0.4);
  transition: all 0.3s ease;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button .play-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(235, 33, 150, 0.6);
}
.cosmic-slots-gallery .slot-info {
  padding: 1.5rem;
  text-align: center;
}
.cosmic-slots-gallery .slot-info .slot-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.cosmic-slots-gallery .slot-info .slot-rating .star {
  color: #eb2196;
  font-size: 1.1rem;
  margin: 0 2px;
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .cosmic-slots-gallery .quantum-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media (max-width: 768px) {
  .cosmic-slots-gallery {
    padding: 4rem 0;
  }
  .cosmic-slots-gallery .cosmic-section-header .section-title {
    font-size: 2.5rem;
  }
  .cosmic-slots-gallery .cosmic-section-header .section-subtitle {
    font-size: 1.1rem;
  }
  .cosmic-slots-gallery .quantum-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .cosmic-slots-gallery .slot-hologram {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .cosmic-slots-gallery .cosmic-section-header .section-title {
    font-size: 2rem;
  }
  .cosmic-slots-gallery .quantum-slots-grid {
    grid-template-columns: 1fr;
  }
}
/* PRIVACY & TERMS STYLES */
.privacy-container,
.terms-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  font-family: "Poppins";
  color: #000000;
}
.privacy-container h1,
.terms-container h1 {
  font-family: "VinaSans";
  font-size: 2.5rem;
  color: #5e21eb;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.privacy-container h1::after,
.terms-container h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
}
.privacy-container h2,
.terms-container h2 {
  font-size: 1.5rem;
  color: #5e21eb;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(94, 33, 235, 0.2);
}
.privacy-container p,
.terms-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.privacy-container strong,
.terms-container strong {
  color: #000000;
  font-weight: 600;
}

.privacy-content,
.terms-content {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
.privacy-content::before,
.terms-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  border-radius: 15px 15px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-container,
  .terms-container {
    padding: 0 1rem;
  }
  .privacy-container h1,
  .terms-container h1 {
    font-size: 2rem;
  }
  .privacy-container h2,
  .terms-container h2 {
    font-size: 1.3rem;
  }
  .privacy-content,
  .terms-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .privacy-container h1,
  .terms-container h1 {
    font-size: 1.8rem;
  }
}
/* Additional styling for lists if needed */
.privacy-content ul,
.terms-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-content ul li,
.terms-content ul li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Highlight important sections */
.important-note {
  background: rgba(94, 33, 235, 0.1);
  border-left: 4px solid #5e21eb;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 5px 5px 0;
}
.important-note p {
  margin-bottom: 0;
  color: #000000;
}

/* Styling for last updated date */
.last-updated {
  text-align: right;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Contact information styling */
.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(94, 33, 235, 0.2);
}
.contact-info h3 {
  color: #5e21eb;
  margin-bottom: 1rem;
}
.contact-info a {
  color: #eb2196;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: #c7127b;
  text-decoration: underline;
}

/* Cyberpunk Slots Base */
.cyberpunk-slots {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  color: #fff;
  padding: 80px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid #0ff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.cyberpunk-slots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 170, 0.15) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 30%);
  z-index: 1;
}

/* Grid overlay for slots */
.slots-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  animation: slots-grid-scroll 15s linear infinite;
}

@keyframes slots-grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}
/* Slots glitch effect layers */
.slots-glitch-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.slots-glitch-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
}

.slots-glitch-layer:nth-child(1) {
  background: linear-gradient(135deg, #ff00aa 0%, #1a0033 100%);
  animation: slots-glitch-anim-1 10s infinite;
}

.slots-glitch-layer:nth-child(2) {
  background: linear-gradient(135deg, #0a0a1a 0%, #00ffff 100%);
  animation: slots-glitch-anim-2 14s infinite;
}

@keyframes slots-glitch-anim-1 {
  0%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  3% {
    opacity: 0.2;
    transform: translateX(-3px);
  }
  6% {
    opacity: 0;
    transform: translateX(3px);
  }
  9% {
    opacity: 0;
  }
}
@keyframes slots-glitch-anim-2 {
  0%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  20% {
    opacity: 0.2;
    transform: translateX(3px);
  }
  23% {
    opacity: 0;
    transform: translateX(-3px);
  }
  26% {
    opacity: 0;
  }
}
/* Slots content */
.dx-slots-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Slots neon tag */
.slots-neon-tag {
  display: inline-block;
  background: rgba(255, 0, 170, 0.2);
  border: 1px solid #ff00aa;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.5);
}

.slots-scanlines {
  position: relative;
}

.slots-scanlines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  background-size: 100% 4px;
  animation: slots-scan 2s linear infinite;
}

.slots-tag-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  animation: slots-tag-pulse 4s infinite;
}

@keyframes slots-tag-pulse {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  50% {
    transform: scaleX(1);
    opacity: 0;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
@keyframes slots-scan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 8px;
  }
}
/* Slots title */
.dx-slots-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.slots-glitch-text {
  position: relative;
}

.dx-slots-title-line {
  display: block;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.slots-flicker-slow {
  animation: slots-flicker-slow 6s infinite alternate;
}

.dx-slots-title-accent {
  display: block;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  position: relative;
}

.slots-flicker-fast {
  animation: slots-flicker-fast 3s infinite alternate;
}

@keyframes slots-flicker-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes slots-flicker-fast {
  0%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
}
@keyframes slots-glitch-effect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
/* Slots machine grid */
.slots-machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.dx-slot-machine {
  position: relative;
  background: rgba(0, 0, 30, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 0.3s;
  z-index: 1;
  border-radius: 8px;
}

.dx-slot-machine:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  border-color: #0ff;
}

.dx-slot-machine::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #0ff, #ff00aa, #0ff);
  background-size: 200% 200%;
  z-index: -1;
  animation: slot-border 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.dx-slot-machine:hover::before {
  opacity: 1;
}

@keyframes slot-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.dx-slot-title {
  font-size: 24px;
  font-weight: 700;
  color: #0ff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.dx-slot-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Slots play button */
.slots-energy-pulse {
  display: inline-block;
  position: relative;
  padding: 12px 30px;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transition: all 0.3s;
  border-radius: 4px;
}

.slots-btn-text {
  position: relative;
  z-index: 2;
}

.slots-btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
  z-index: 1;
  animation: slots-pulse 2s infinite;
}

.slots-btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.slots-energy-pulse:hover {
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.7);
  transform: translateY(-2px);
}

.slots-energy-pulse:hover .slots-btn-overlay {
  transform: translateX(100%);
}

@keyframes slots-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
/* Slots binary rain effect */
.slots-binary-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.2;
}

.slots-binary-rain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 90%, rgba(0, 255, 255, 0.1) 100%);
}

.slots-binary-rain span {
  position: absolute;
  color: #0ff;
  font-family: "Courier New", monospace;
  font-size: 12px;
  opacity: 0;
  animation: slots-binary-fall linear infinite;
}

@keyframes slots-binary-fall {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 50px));
    opacity: 0;
  }
}
/* Slots jackpot section */
.slots-jackpot-section {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.dx-jackpot-card {
  position: relative;
  background: rgba(0, 0, 30, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 25px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: all 0.3s;
  z-index: 1;
  border-radius: 8px;
  flex: 1;
}

.dx-jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

.dx-jackpot-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ff00aa, #ffd700);
  background-size: 200% 200%;
  z-index: -1;
  animation: jackpot-border 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.dx-jackpot-card:hover::before {
  opacity: 1;
}

.dx-jackpot-amount {
  font-size: 36px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  position: relative;
}

.dx-jackpot-amount::after {
  content: attr(data-amount);
  position: absolute;
  top: 0;
  left: 0;
  color: #ff00aa;
  z-index: -1;
  animation: jackpot-glitch 8s infinite;
}

.dx-jackpot-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes jackpot-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes jackpot-glitch {
  0%, 100% {
    transform: translate(0);
    opacity: 1;
  }
  15% {
    transform: translate(-1px, 1px);
    opacity: 0.8;
  }
  30% {
    transform: translate(1px, -1px);
    opacity: 0.8;
  }
  45% {
    transform: translate(-1px, -1px);
    opacity: 0.8;
  }
}
/* Responsive design for slots */
@media (max-width: 768px) {
  .dx-slots-title {
    font-size: 48px;
  }
  .slots-machine-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .slots-jackpot-section {
    flex-direction: column;
    gap: 20px;
  }
  .cyberpunk-slots {
    padding: 60px 0 80px;
  }
}
@media (max-width: 480px) {
  .dx-slots-title {
    font-size: 36px;
  }
  .dx-slots-content {
    padding: 0 15px;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== LEGAL DOCUMENTS STYLES ===== */
/* Main container */
.legal-document-container {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
@media (max-width: 1300px) {
  .legal-document-container {
    padding: 100px 0 60px;
  }
}
@media (max-width: 740px) {
  .legal-document-container {
    padding: 80px 0 40px;
  }
}
.legal-document-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 0, 170, 0.08) 0%, transparent 50%);
  z-index: 1;
}
.legal-document-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: legalGridScroll 60s linear infinite;
  z-index: 1;
}

@keyframes legalGridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
/* Document content */
.legal-document {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(10, 10, 40, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(0, 10, 20, 0.6);
  backdrop-filter: blur(10px);
}
@media (max-width: 1300px) {
  .legal-document {
    padding: 50px 30px;
    margin: 0 20px;
  }
}
@media (max-width: 740px) {
  .legal-document {
    padding: 40px 25px;
    margin: 0 15px;
  }
}
@media (max-width: 514px) {
  .legal-document {
    padding: 30px 20px;
    margin: 0 10px;
  }
}
.legal-document::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.05) 50%, transparent 52%);
  background-size: 12px 12px;
  border-radius: 15px;
  opacity: 0.3;
}

/* Main heading */
.legal-document h1 {
  font-size: 36px;
  font-weight: 900;
  color: #0ff;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "VinaSans";
  text-shadow: 0 0 15px #0ff, 0 0 30px rgba(0, 255, 255, 0.5);
  position: relative;
}
@media (max-width: 1300px) {
  .legal-document h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 740px) {
  .legal-document h1 {
    font-size: 28px;
    margin-bottom: 35px;
  }
}
@media (max-width: 514px) {
  .legal-document h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.legal-document h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, transparent);
  box-shadow: 0 0 10px #0ff;
}
@media (max-width: 740px) {
  .legal-document h1::after {
    width: 80px;
    bottom: -12px;
  }
}

/* Section headings */
.legal-document h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ff00aa;
  margin: 40px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
}
@media (max-width: 1300px) {
  .legal-document h2 {
    font-size: 22px;
    margin: 35px 0 18px 0;
  }
}
@media (max-width: 740px) {
  .legal-document h2 {
    font-size: 20px;
    margin: 30px 0 15px 0;
    padding-left: 20px;
  }
}
@media (max-width: 514px) {
  .legal-document h2 {
    font-size: 18px;
    margin: 25px 0 12px 0;
  }
}
.legal-document h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, #ff00aa, #0ff);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
}
@media (max-width: 740px) {
  .legal-document h2::before {
    width: 12px;
    height: 12px;
  }
}
.legal-document h2:first-of-type {
  margin-top: 0;
}

/* Paragraphs */
.legal-document p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: justify;
  position: relative;
  /* Hover effect for better readability */
}
@media (max-width: 740px) {
  .legal-document p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
}
@media (max-width: 514px) {
  .legal-document p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
  }
}
.legal-document p:last-child {
  margin-bottom: 0;
}
.legal-document p:hover {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

/* Strong text styling */
.legal-document strong {
  color: #0ff;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
  position: relative;
}
.legal-document strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #0ff, transparent);
  opacity: 0.5;
}

/* Lists styling (if any) */
.legal-document ul,
.legal-document ol {
  margin: 20px 0;
  padding-left: 30px;
}
@media (max-width: 740px) {
  .legal-document ul,
  .legal-document ol {
    padding-left: 25px;
  }
}
@media (max-width: 514px) {
  .legal-document ul,
  .legal-document ol {
    padding-left: 20px;
  }
}
.legal-document ul li,
.legal-document ol li {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  position: relative;
}
@media (max-width: 740px) {
  .legal-document ul li,
  .legal-document ol li {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 514px) {
  .legal-document ul li,
  .legal-document ol li {
    font-size: 14px;
    line-height: 1.6;
  }
}
.legal-document ul li::marker,
.legal-document ol li::marker {
  color: #ff00aa;
}
.legal-document ul li:hover,
.legal-document ol li:hover {
  color: rgb(255, 255, 255);
  transition: color 0.3s ease;
}

/* Custom bullet points for unordered lists */
.legal-document ul li {
  list-style: none;
  position: relative;
}
.legal-document ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, #ff00aa, #0ff);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 0, 170, 0.5);
}
@media (max-width: 740px) {
  .legal-document ul li::before {
    left: -18px;
    top: 11px;
    width: 5px;
    height: 5px;
  }
}
@media (max-width: 514px) {
  .legal-document ul li::before {
    left: -15px;
    top: 10px;
    width: 4px;
    height: 4px;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .legal-document {
    border-radius: 10px;
  }
  .legal-document h1 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .legal-document h2 {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .legal-document p {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* Print styles */
@media print {
  .legal-document-container {
    background: white;
    color: black;
  }
  .legal-document-container::before, .legal-document-container::after {
    display: none;
  }
  .legal-document {
    background: white;
    border: 1px solid #ccc;
    box-shadow: none;
  }
  .legal-document::before {
    display: none;
  }
  .legal-document h1, .legal-document h2, .legal-document strong {
    color: black;
    text-shadow: none;
  }
  .legal-document p {
    color: black;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
  min-height: 100vh;
}
@media (max-width: 1300px) {
  .contact-section {
    padding: 100px 0;
  }
}
@media (max-width: 740px) {
  .contact-section {
    padding: 80px 0;
  }
}
@media (max-width: 514px) {
  .contact-section {
    padding: 60px 0;
  }
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 0, 170, 0.15) 0%, transparent 50%);
  z-index: 1;
}
.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: contactGridScroll 50s linear infinite;
  z-index: 1;
}

@keyframes contactGridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}
/* Section title */
.contact-section .section-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-family: "VinaSans";
  position: relative;
  z-index: 3;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.contact-section .section-title span {
  color: #0ff;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  animation: contactNeonFlicker 3s infinite alternate;
}
@media (max-width: 1300px) {
  .contact-section .section-title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}
@media (max-width: 740px) {
  .contact-section .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (max-width: 514px) {
  .contact-section .section-title {
    font-size: 30px;
    margin-bottom: 35px;
  }
}
.contact-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, transparent);
  box-shadow: 0 0 10px #0ff;
}
@media (max-width: 740px) {
  .contact-section .section-title::after {
    width: 100px;
    bottom: -12px;
  }
}

@keyframes contactNeonFlicker {
  0%, 100% {
    text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    opacity: 0.8;
  }
}
/* Contact container */
.contact-container {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .contact-container {
    max-width: 500px;
    margin: 0 20px;
  }
}
@media (max-width: 740px) {
  .contact-container {
    margin: 0 15px;
  }
}
@media (max-width: 514px) {
  .contact-container {
    margin: 0 10px;
  }
}

/* Success message */
.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
  animation: successPulse 2s ease-in-out;
}
@media (max-width: 740px) {
  .form-success {
    padding: 25px;
    gap: 15px;
  }
}
@media (max-width: 514px) {
  .form-success {
    padding: 20px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
}
.form-success svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (max-width: 740px) {
  .form-success svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 514px) {
  .form-success svg {
    width: 30px;
    height: 30px;
  }
}
.form-success p {
  color: #10b981;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 740px) {
  .form-success p {
    font-size: 16px;
  }
}
@media (max-width: 514px) {
  .form-success p {
    font-size: 15px;
  }
}

@keyframes successPulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Contact form */
.contact-form {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 10, 20, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .contact-form {
    padding: 35px;
  }
}
@media (max-width: 740px) {
  .contact-form {
    padding: 30px;
    border-radius: 15px;
  }
}
@media (max-width: 514px) {
  .contact-form {
    padding: 25px;
  }
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.05) 50%, transparent 52%);
  background-size: 15px 15px;
  border-radius: 20px;
  opacity: 0.3;
}

/* Form groups */
.form-group {
  margin-bottom: 25px;
  position: relative;
}
@media (max-width: 740px) {
  .form-group {
    margin-bottom: 20px;
  }
}
.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0ff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
@media (max-width: 740px) {
  .form-group label {
    font-size: 15px;
  }
}
@media (max-width: 514px) {
  .form-group label {
    font-size: 14px;
  }
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 30, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  font-family: "Poppins";
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 740px) {
  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
  }
}
@media (max-width: 514px) {
  .form-group input,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
  }
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  background: rgba(0, 0, 30, 0.9);
}
.form-group input:valid,
.form-group textarea:valid {
  border-color: #10b981;
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 740px) {
  .form-group textarea {
    min-height: 100px;
  }
}
@media (max-width: 514px) {
  .form-group textarea {
    min-height: 80px;
  }
}

/* Submit button */
.submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  border: none;
  border-radius: 15px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}
@media (max-width: 740px) {
  .submit-btn {
    padding: 15px 25px;
    font-size: 16px;
  }
}
@media (max-width: 514px) {
  .submit-btn {
    padding: 12px 20px;
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}
.submit-btn:hover::before {
  left: 100%;
}
.submit-btn:active {
  transform: translateY(-1px);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/* ===== AUTH SECTION STYLES ===== */
.auth-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
  min-height: 100vh;
}
@media (max-width: 1300px) {
  .auth-section {
    padding: 100px 0;
  }
}
@media (max-width: 740px) {
  .auth-section {
    padding: 80px 0;
  }
}
@media (max-width: 514px) {
  .auth-section {
    padding: 60px 0;
  }
}
.auth-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 0, 170, 0.15) 0%, transparent 50%);
  z-index: 1;
}
.auth-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: authGridScroll 50s linear infinite;
  z-index: 1;
}

@keyframes authGridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}
/* Section title */
.auth-section .section-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-family: "VinaSans";
  position: relative;
  z-index: 3;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.auth-section .section-title span {
  color: #0ff;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  animation: authNeonFlicker 3s infinite alternate;
}
@media (max-width: 1300px) {
  .auth-section .section-title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}
@media (max-width: 740px) {
  .auth-section .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (max-width: 514px) {
  .auth-section .section-title {
    font-size: 30px;
    margin-bottom: 35px;
  }
}
.auth-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, transparent);
  box-shadow: 0 0 10px #0ff;
}
@media (max-width: 740px) {
  .auth-section .section-title::after {
    width: 100px;
    bottom: -12px;
  }
}

@keyframes authNeonFlicker {
  0%, 100% {
    text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    opacity: 0.8;
  }
}
/* Auth container */
.auth-container {
  position: relative;
  z-index: 3;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .auth-container {
    max-width: 450px;
    margin: 0 20px;
  }
}
@media (max-width: 740px) {
  .auth-container {
    margin: 0 15px;
  }
}
@media (max-width: 514px) {
  .auth-container {
    margin: 0 10px;
  }
}

/* Auth toggle buttons */
.auth-toggle {
  display: flex;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
}
@media (max-width: 740px) {
  .auth-toggle {
    margin-bottom: 25px;
  }
}

.toggle-btn {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins";
  position: relative;
}
@media (max-width: 740px) {
  .toggle-btn {
    padding: 12px 16px;
    font-size: 15px;
  }
}
@media (max-width: 514px) {
  .toggle-btn {
    padding: 10px 14px;
    font-size: 14px;
  }
}
.toggle-btn.active {
  color: #0ff;
  background: rgba(0, 255, 255, 0.1);
  text-shadow: 0 0 10px #0ff;
}
.toggle-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

/* Auth forms */
.auth-form {
  background: rgba(10, 10, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 10, 20, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: none;
}
@media (max-width: 1300px) {
  .auth-form {
    padding: 35px;
  }
}
@media (max-width: 740px) {
  .auth-form {
    padding: 30px;
    border-radius: 15px;
  }
}
@media (max-width: 514px) {
  .auth-form {
    padding: 25px;
  }
}
.auth-form.active {
  display: block;
}
.auth-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.05) 50%, transparent 52%);
  background-size: 15px 15px;
  border-radius: 20px;
  opacity: 0.3;
}

/* Form groups */
.form-group {
  margin-bottom: 25px;
  position: relative;
}
@media (max-width: 740px) {
  .form-group {
    margin-bottom: 20px;
  }
}
.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0ff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
@media (max-width: 740px) {
  .form-group label {
    font-size: 15px;
  }
}
@media (max-width: 514px) {
  .form-group label {
    font-size: 14px;
  }
}
.form-group input {
  width: 100%;
  background: rgba(0, 0, 30, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  font-family: "Poppins";
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 740px) {
  .form-group input {
    padding: 12px 16px;
    font-size: 15px;
  }
}
@media (max-width: 514px) {
  .form-group input {
    padding: 10px 14px;
    font-size: 14px;
  }
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-group input:focus {
  outline: none;
  border-color: #0ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  background: rgba(0, 0, 30, 0.9);
}
.form-group input:valid {
  border-color: #10b981;
}
.form-group input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

/* Checkbox groups */
.checkbox-group {
  margin-bottom: 20px;
}
.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  letter-spacing: normal;
  text-shadow: none;
  margin-bottom: 0;
}
@media (max-width: 740px) {
  .checkbox-group .checkbox-label {
    font-size: 13px;
    gap: 10px;
  }
}
@media (max-width: 514px) {
  .checkbox-group .checkbox-label {
    font-size: 12px;
    gap: 8px;
  }
}
.checkbox-group .checkbox-label input[type=checkbox] {
  display: none;
}
.checkbox-group .checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(0, 0, 30, 0.8);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}
@media (max-width: 740px) {
  .checkbox-group .checkbox-label .checkmark {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 514px) {
  .checkbox-group .checkbox-label .checkmark {
    width: 16px;
    height: 16px;
  }
}
.checkbox-group .checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #0ff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 740px) {
  .checkbox-group .checkbox-label .checkmark::after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
  }
}
@media (max-width: 514px) {
  .checkbox-group .checkbox-label .checkmark::after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
  }
}
.checkbox-group .checkbox-label input[type=checkbox]:checked + .checkmark {
  background: rgba(0, 255, 255, 0.2);
  border-color: #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.checkbox-group .checkbox-label input[type=checkbox]:checked + .checkmark::after {
  opacity: 1;
}
.checkbox-group .checkbox-label:hover .checkmark {
  border-color: #0ff;
}
.checkbox-group .checkbox-label .terms-link {
  color: #0ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.checkbox-group .checkbox-label .terms-link:hover {
  text-shadow: 0 0 5px #0ff;
  text-decoration: underline;
}

/* Submit button */
.submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #0ff, #ff00aa);
  border: none;
  border-radius: 15px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  margin-top: 10px;
}
@media (max-width: 740px) {
  .submit-btn {
    padding: 15px 25px;
    font-size: 16px;
  }
}
@media (max-width: 514px) {
  .submit-btn {
    padding: 12px 20px;
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}
.submit-btn:hover::before {
  left: 100%;
}
.submit-btn:active {
  transform: translateY(-1px);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form links */
.form-links {
  text-align: center;
  margin-top: 20px;
}
.form-links .forgot-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
@media (max-width: 740px) {
  .form-links .forgot-link {
    font-size: 13px;
  }
}
@media (max-width: 514px) {
  .form-links .forgot-link {
    font-size: 12px;
  }
}
.form-links .forgot-link:hover {
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Success message (reuse from contact section) */
.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
  animation: successPulse 2s ease-in-out;
}
@media (max-width: 740px) {
  .form-success {
    padding: 25px;
    gap: 15px;
  }
}
@media (max-width: 514px) {
  .form-success {
    padding: 20px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
}
.form-success svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (max-width: 740px) {
  .form-success svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 514px) {
  .form-success svg {
    width: 30px;
    height: 30px;
  }
}
.form-success p {
  color: #10b981;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 740px) {
  .form-success p {
    font-size: 16px;
  }
}
@media (max-width: 514px) {
  .form-success p {
    font-size: 15px;
  }
}

@keyframes successPulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* CYBERPUNK AGE VERIFICATION POPUP STYLES */
.age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: popup-fade-in 0.5s ease-out;
}

@keyframes popup-fade-in {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}
/* Cyberpunk grid overlay for popup background */
.age-verification-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: popup-grid-scroll 20s linear infinite;
  z-index: -1;
}

@keyframes popup-grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
/* Binary rain effect for popup */
.age-verification-popup::after {
  content: "01001010 11010011 00110101 10101100 01110010 11001001 00101110 10011010 01101001 10110100";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgba(0, 255, 255, 0.1);
  font-family: "Courier New", monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  animation: binary-scroll 15s linear infinite;
  z-index: -1;
}

@keyframes binary-scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.age-verification-content {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
  border: 2px solid #0ff;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.5), inset 0 0 30px rgba(255, 0, 170, 0.1);
  animation: content-glow 2s ease-in-out infinite alternate;
}

@keyframes content-glow {
  0% {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5), inset 0 0 30px rgba(255, 0, 170, 0.1);
  }
  100% {
    box-shadow: 0 0 70px rgba(0, 255, 255, 0.7), inset 0 0 40px rgba(255, 0, 170, 0.2);
  }
}
/* Glitch effect overlay for content */
.age-verification-content::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00aa, #0ff, #ff00aa);
  background-size: 200% 200%;
  z-index: -1;
  animation: content-border 4s linear infinite;
  opacity: 0.3;
  border-radius: 12px;
}

@keyframes content-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.age-verification-content h3 {
  color: #0ff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: title-flicker 3s infinite alternate;
}

@keyframes title-flicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.9);
  }
}
.age-verification-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.age-verification-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-confirm-btn,
.age-deny-btn {
  position: relative;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 180px;
}

.age-confirm-btn {
  background: linear-gradient(45deg, #0ff, #00aa88);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.age-confirm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.age-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.age-confirm-btn:hover::before {
  left: 100%;
}

.age-deny-btn {
  background: linear-gradient(45deg, #ff00aa, #aa0066);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
}

.age-deny-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.age-deny-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.8);
}

.age-deny-btn:hover::before {
  left: 100%;
}

/* Warning icon animation */
.age-verification-content::after {
  content: "⚠";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 30px;
  color: #ff00aa;
  text-shadow: 0 0 15px rgba(255, 0, 170, 0.8);
  animation: warning-pulse 2s infinite;
}

@keyframes warning-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
/* Responsive design */
@media (max-width: 768px) {
  .age-verification-content {
    padding: 30px 20px;
    margin: 20px;
  }
  .age-verification-content h3 {
    font-size: 24px;
  }
  .age-verification-content p {
    font-size: 14px;
  }
  .age-verification-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .age-confirm-btn,
  .age-deny-btn {
    padding: 12px 25px;
    font-size: 14px;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .age-verification-content {
    padding: 25px 15px;
  }
  .age-verification-content h3 {
    font-size: 20px;
  }
  .age-verification-content p {
    font-size: 13px;
  }
}
body {
  box-sizing: border-box;
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-family: "Poppins";
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
  scroll-behavior: smooth;
}

.wrapper {
  scroll-behavior: smooth;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.logo {
  width: 50px;
  height: auto;
  border-radius: 12px;
}

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