/* Slot-Sumo Static CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --green-400: #4ade80;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--slate-950);
  color: var(--slate-300);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  color: white;
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: var(--cyan-400);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--cyan-300);
}

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

/* Age Gate Modal */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800));
  border: 2px solid var(--cyan-500);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: var(--amber-500);
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.age-gate h2 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.age-gate-info {
  background: var(--slate-950);
  border: 1px solid var(--slate-700);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--slate-400);
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-secondary {
  background: var(--slate-700);
  color: white;
}

.btn-secondary:hover {
  background: var(--slate-600);
}

.btn-primary {
  background: linear-gradient(to right, var(--cyan-500), var(--cyan-600));
  color: white;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 9998;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 72rem;
  margin: 0 auto;
  background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800));
  border: 2px solid var(--cyan-500);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.cookie-header h3 {
  font-size: 1.25rem;
}

.cookie-details {
  background: var(--slate-950);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-radius: 0.5rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

/* Header */
.header {
  background: linear-gradient(to right, var(--slate-950), var(--slate-900), var(--slate-950));
  border-bottom: 2px solid var(--cyan-500);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 3rem;
  height: 3rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--slate-400);
  display: block;
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    gap: 0.25rem;
  }
}

.nav a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--slate-300);
  font-weight: 500;
  transition: all 0.2s;
}

.nav a:hover {
  color: white;
  background: var(--slate-800);
}

.nav a.active {
  background: var(--cyan-500);
  color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: transparent;
  color: var(--slate-300);
  font-size: 1.75rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--slate-800);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
  color: var(--slate-300);
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--slate-800);
}

.mobile-menu a.active {
  background: var(--cyan-500);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), var(--slate-950));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: var(--cyan-500);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--amber-500);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--slate-300);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: bold;
  transition: all 0.3s;
}

.hero-btn-primary {
  background: linear-gradient(to right, var(--cyan-500), var(--cyan-600));
  color: white;
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
}

.hero-btn-primary:hover {
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.6);
  transform: scale(1.05);
}

.hero-btn-secondary {
  background: var(--slate-800);
  color: white;
  border: 2px solid var(--slate-700);
}

.hero-btn-secondary:hover {
  background: var(--slate-700);
  border-color: var(--slate-600);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.875rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.badge-18 {
  background: var(--amber-500);
  color: var(--slate-900);
  font-weight: bold;
  border: none;
  width: fit-content;
}


.game-card {
  background: linear-gradient(to bottom right, var(--slate-800), var(--slate-900));
  border: 1px solid var(--slate-700);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.game-card:hover {
  border-color: var(--cyan-500);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
}

.game-card-link {
  cursor: pointer;
}

.game-thumbnail {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.game-card:hover .game-play-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 4rem;
  color: var(--cyan-400);
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
  animation: pulse 2s infinite;
}

.play-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.game-card-content {
  padding: 1rem;
}

.game-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 0.75rem;
}

.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.game-category {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-500);
}

/* Footer */
.footer {
  background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), var(--slate-950));
  border-top: 2px solid var(--cyan-500);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-400);
  transition: color 0.2s;
}

.contact-item:hover {
  color: var(--cyan-400);
}

.rg-resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .rg-resources {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .rg-resources {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rg-card {
  background: linear-gradient(to bottom right, var(--slate-800), var(--slate-900));
  border: 1px solid var(--slate-700);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.rg-card:hover {
  border-color: var(--cyan-500);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
  transform: translateY(-2px);
}

.rg-card-age {
  cursor: default;
}

.rg-card-age:hover {
  transform: none;
  border-color: var(--slate-700);
  box-shadow: none;
}

.rg-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s, transform 0.3s;
}

.rg-card:hover .rg-logo {
  filter: brightness(1);
  transform: scale(1.05);
}

.rg-card-age .rg-logo {
  filter: brightness(1);
}

.rg-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--cyan-500), var(--cyan-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: transform 0.3s;
}

.rg-card:hover .rg-badge {
  transform: scale(1.1);
}

.footer-warning {
  background: var(--slate-900);
  border: 1px solid var(--amber-500);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
}

.footer-copyright {
  text-align: center;
  color: var(--slate-500);
  font-size: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
}

/* Section Styles */
.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }


}

/* Utility Classes */
.text-cyan { color: var(--cyan-400); }
.text-amber { color: var(--amber-400); }
.text-white { color: white; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


@media (max-width: 768px) {
  .container h1 {
    font-size: 2.5rem !important;
  }

}