:root {
  --primary-dark: #0a0a0a;
  --neon-cyan: #00ffff;
  --electric-purple: #8a2be2;
  --plasma-pink: #ff1493;
  --gold-luxury: #ffd700;
  --neon-green: #39ff14;
  --deep-space: #1a1a2e;
  --cosmic-blue: #16213e;
  --text-light: #ffffff;
  --text-muted: #b8b8b8;
  --gradient-neon: linear-gradient(135deg, var(--neon-cyan), var(--electric-purple));
  --gradient-plasma: linear-gradient(90deg, var(--plasma-pink), var(--gold-luxury));
  --shadow-neon-glow: 0 0 20px rgba(0, 255, 255, 0.8);
  --shadow-purple-glow: 0 0 15px rgba(138, 43, 226, 0.6);
  --shadow-pink-glow: 0 0 25px rgba(255, 20, 147, 0.7);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}

body {
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark), var(--deep-space));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Exo 2', sans-serif;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

.warning-notification-strip {
  background: var(--gradient-neon);
  padding: 1rem 0;
  text-align: center;
  position: relative;
  z-index: 100;
}

@keyframes neon-pulse {
  0%,
  100% {
    box-shadow: var(--shadow-neon-glow);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 40px rgba(138, 43, 226, 0.8);
  }
}

.warning-notification-strip__container {
  max-width: 85rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.warning-notification-strip__message a {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Orbitron', monospace;
}

.warning-notification-strip__message a:hover {
  text-decoration: underline;
  text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

.hero-premium-showcase {
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.9), rgba(10, 10, 10, 0.95)),
    url('../img/bg.webp') no-repeat center / cover;
  position: relative;
  animation: cosmic-shift 15s ease-in-out infinite alternate;
}

@keyframes cosmic-shift {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }
  100% {
    filter: brightness(1.2) hue-rotate(10deg);
  }
}

.hero-premium-showcase__container {
  max-width: 85rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-premium-showcase__main-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  background: var(--gradient-plasma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes title-glow {
  0% {
    filter: brightness(1);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
  100% {
    filter: brightness(1.3);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 20, 147, 0.4);
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-premium-showcase__main-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .hero-premium-showcase {
    padding: 2rem 0;
  }
  .hero-premium-showcase__main-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

.hero-premium-showcase__sub-heading {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-light);
  text-shadow: var(--shadow-purple-glow);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-premium-showcase__sub-heading {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .warning-notification-strip__message a {
    font-size: 1rem;
  }
  .hero-premium-showcase__sub-heading {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

/* CTA Neon Button */
.cta-neon-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 280px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Orbitron', monospace;
  padding: 1.2rem 2rem;
  background: var(--gradient-neon);
  border-radius: 50px;
  color: var(--primary-dark);
  box-shadow: var(--shadow-neon-glow);
  transition: all 0.4s ease;
  animation: button-pulse 2s ease-in-out infinite;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

@keyframes button-pulse {
  0%,
  100% {
    box-shadow: var(--shadow-neon-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 1), 0 0 60px rgba(138, 43, 226, 0.8);
  }
}

.cta-neon-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-plasma);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-neon-button:hover::before {
  opacity: 1;
}

.cta-neon-button:hover {
  color: var(--text-light);
  box-shadow: var(--shadow-pink-glow);
  transform: scale(1.1);
}

@media (max-width: 767.98px) {
  .cta-neon-button {
    margin: 1rem auto;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  .custom {
    display: none;
  }
}

/* Gaming Platforms Showcase */
.gaming-platforms-showcase {
  padding: 4rem 0;
  background: var(--primary-dark);
  position: relative;
}

.gaming-platforms-showcase__container {
  max-width: 85rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.gaming-platforms-showcase__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Gaming Platform Card */
.gaming-platform-card {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--deep-space), var(--cosmic-blue));
  border-radius: 20px;
  border: 1px solid var(--neon-green);
  box-shadow: var(--shadow-purple-glow);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: 'badge brand description features action';
  gap: 1rem;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gaming-platform-card::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.6s ease;
}

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

.gaming-platform-card:hover {
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8), 0 0 10px rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
}

@media (max-width: 1023.98px) {
  .gaming-platform-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      'badge'
      'brand'
      'description'
      'features'
      'action';
    gap: 1rem;
    padding: 1rem;
  }
}

.gaming-platform-card__badge {
  grid-area: badge;
  width: 4rem;
  height: 4rem;
  background: var(--gradient-plasma);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.8rem;
  font-family: 'Orbitron', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow-pink-glow);
  animation: badge-rotate 4s linear infinite;
}

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

@media (max-width: 1023.98px) {
  .gaming-platform-card__badge {
    justify-self: center;
  }
}

.gaming-platform-card__brand-section {
  grid-area: brand;
  max-width: 250px;
  padding: 1.5rem;
  background: var(--primary-dark);
  border: 2px solid var(--electric-purple);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

@media (max-width: 1023.98px) {
  .gaming-platform-card__brand-section {
    max-width: 100%;
    width: 100%;
    justify-self: center;
    gap: 0.5rem;
  }
}

.gaming-platform-card__logo-link {
  width: 160px;
  height: 40px;
}

.gaming-platform-card__brand-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.gaming-platform-card__rating-system {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gaming-platform-card__rating-display {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gaming-platform-card__score {
  font-weight: 700;
  font-size: 1.4rem;
  font-family: 'Orbitron', monospace;
  color: var(--plasma-pink);
  text-shadow: var(--shadow-pink-glow);
}

.gaming-platform-card__star-icons {
  width: 80px;
  height: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.gaming-platform-card__separator-line {
  width: 100%;
  height: 2px;
  background: var(--gradient-neon);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.gaming-platform-card__description {
  grid-area: description;
  flex: 1;
}

.gaming-platform-card__description span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .gaming-platform-card__description span {
    font-size: 1rem;
  }
}

.gaming-platform-card__features-list {
  grid-area: features;
  max-width: 280px;
  padding: 0 1.5rem;
  position: relative;
}

.gaming-platform-card__features-list::before,
.gaming-platform-card__features-list::after {
  content: '';
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gradient-neon);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.gaming-platform-card__features-list::before {
  left: 0;
}

.gaming-platform-card__features-list::after {
  right: 0;
}

@media (max-width: 1023.98px) {
  .gaming-platform-card__features-list {
    max-width: 100%;
    width: 100%;
    justify-self: center;
    padding: 0;
  }
  .gaming-platform-card__features-list::after {
    display: none;
  }
}

.gaming-platform-card__features-list ul {
  list-style: none;
}

.gaming-platform-card__features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;

  color: var(--text-light);
}
.gaming-platform-card__features-list li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.gaming-platform-card__features-list img {
  width: 1.4rem;
  height: 1.4rem;
  filter: drop-shadow(0 0 1px rgba(57, 255, 20, 0.8));
}

.gaming-platform-card__action-zone {
  grid-area: action;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1023.98px) {
  .gaming-platform-card__action-zone {
    max-width: 100%;
    justify-self: center;
  }
}

.gaming-platform-card__payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 200px;
}

.gaming-platform-card__payment-grid img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.6));
  transition: all 0.3s ease;
}

.gaming-platform-card__payment-grid img:hover {
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
  transform: scale(1.1);
}

/* Information Hub */
.information-hub {
  padding: 4rem 0;
  background: var(--primary-dark);
}

.information-hub__container {
  max-width: 85rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.information-hub__main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  margin-bottom: 2rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

@media (max-width: 767.98px) {
  .information-hub__main-heading {
    font-size: 1.8rem;
  }
}

.information-hub__question-title {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  margin-bottom: 1rem;
  color: var(--gold-luxury);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

@media (max-width: 767.98px) {
  .information-hub__question-title {
    font-size: 1.3rem;
  }
}

.information-hub__answer-text {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.information-hub__advantages-grid {
  margin-bottom: 2rem;
  display: grid;
  gap: 1rem;
}

.information-hub__advantages-grid li {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--deep-space), var(--cosmic-blue));
  border-left: 4px solid var(--neon-green);
  border-radius: 8px;
  color: var(--text-light);
  font-weight: 500;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
  transition: all 0.3s ease;
}

.information-hub__advantages-grid li:hover {
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
  transform: translateX(10px);
  border-left-color: var(--neon-cyan);
}

/* Site Footer */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--electric-purple);
  background: linear-gradient(135deg, var(--primary-dark), var(--deep-space));
  box-shadow: 0 -10px 30px rgba(138, 43, 226, 0.3);
}

.site-footer__container {
  max-width: 85rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.site-footer__content-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.site-footer__navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer__nav-link {
  color: var(--gold-luxury);
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid transparent;
}

.site-footer__nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-neon-glow);
  border-color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.1);
}

.site-footer__legal-disclaimer {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer__legal-disclaimer a {
  color: var(--neon-green);
  transition: all 0.3s ease;
}
.legal-link {
  color: var(--neon-green);
  transition: all 0.3s ease;
}
.legal-link:hover {
  color: var(--plasma-pink);
  text-shadow: var(--shadow-pink-glow);
}
.site-footer__legal-disclaimer a:hover {
  color: var(--plasma-pink);
  text-shadow: var(--shadow-pink-glow);
}

.site-footer__brand-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  margin-bottom: 2rem;
  background: var(--gradient-plasma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 767.98px) {
  .site-footer__brand-title {
    font-size: 1.6rem;
  }
}

.site-footer__gaming-tips {
  margin: 2rem 0;
  list-style: none;
  text-align: center;
}

.site-footer__gaming-tips li {
  margin-bottom: 1rem;
  color: var(--neon-green);
  font-size: 1rem;
  padding: 0.8rem;
  background: rgba(57, 255, 20, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.site-footer__certification-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer__badge-link {
  padding: 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.site-footer__badge-link:nth-child(1) {
  width: 120px;
  height: 120px;
  background: var(--gradient-neon);
}

.site-footer__badge-link:nth-child(n + 2) {
  width: 120px;
  height: 120px;
  border: 1px solid var(--neon-green);
  background: var(--gold-luxury);
}

.site-footer__badge-link:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-neon-glow);
}

.site-footer__badge-link:nth-child(n + 2):hover {
  background: var(--neon-green);
  border-color: var(--neon-cyan);
}

.site-footer__badge-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Privacy Notification */
.privacy-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-plasma);
  padding: 0.5rem;
  box-shadow: var(--shadow-pink-glow);
  z-index: 1000;
}

.privacy-notification__container {
  max-width: 85rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.privacy-notification__message {
  color: var(--primary-dark);
  font-weight: 600;
  font-family: 'Orbitron', monospace;
}

.privacy-notification__info-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.privacy-notification__info-link:hover {
  color: var(--text-light);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.privacy-notification__action-buttons {
  display: flex;
  gap: 1rem;
}

.privacy-notification__btn {
  padding: 1rem 2rem;
  background: var(--primary-dark);
  color: var(--neon-green);
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  border-radius: 25px;
  border: 2px solid var(--electric-purple);
  transition: all 0.3s ease;
  cursor: pointer;
}

.privacy-notification__btn:hover {
  background: var(--electric-purple);
  color: var(--text-light);
  box-shadow: var(--shadow-purple-glow);
  transform: scale(1.05);
}

/* Responsive Design Optimizations */
@media (max-width: 767.98px) {
  .gaming-platform-card__features-list::before {
    display: none;
  }
  .warning-notification-strip {
    padding: 0.5rem 0;
  }
  .gaming-platforms-showcase {
    padding: 1rem 0;
  }

  .information-hub {
    padding: 2rem 0;
  }

  .site-footer {
    padding: 2rem 0;
  }

  .site-footer__navigation {
    gap: 1rem;
  }

  .site-footer__nav-link {
    font-size: 0.9rem;
  }

  .site-footer__certification-badges {
    gap: 1rem;
  }

  .site-footer__badge-link:nth-child(1) {
    width: 100px;
    height: 100px;
  }

  .site-footer__badge-link:nth-child(n + 2) {
    width: 130px;
    height: 70px;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  .warning-notification-strip,
  .cta-neon-button,
  .hero-premium-showcase,
  .gaming-platform-card__badge {
    animation: none;
  }

  .gaming-platform-card:hover,
  .cta-neon-button:hover,
  .site-footer__badge-link:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .warning-notification-strip,
  .privacy-notification {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
