@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 140px;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

:root {
  --neon-cyan: #00f5ff;
  --neon-purple: #bf00ff;
  --neon-pink: #ff006e;
  --electric-blue: #0066ff;
  --cyber-yellow: #ffbe0b;
  --bg-black: #050505;
  --bg-dark: #0d0d0d;
  --bg-card: #161616;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --border: #2a2a2a;
}

.decorative-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decorative-shapes::before {
  content: "♦";
  position: absolute;
  font-size: 450px;
  top: 5%;
  right: -80px;
  color: var(--neon-cyan);
  opacity: 0.04;
  animation: float 20s ease-in-out infinite;
  font-weight: bold;
}

.decorative-shapes::after {
  content: "♠";
  position: absolute;
  font-size: 400px;
  bottom: 10%;
  left: -50px;
  color: var(--neon-purple);
  opacity: 0.04;
  animation: float 25s ease-in-out infinite reverse;
  font-weight: bold;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(-5deg);
  }
  75% {
    transform: translate(10px, 10px) rotate(3deg);
  }
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
}

.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-overlay.show {
  opacity: 1;
  visibility: visible;
}

.age-verification-popup {
  background: var(--bg-card);
  border: 2px solid var(--neon-cyan);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
  animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-verification-icon {
  font-size: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--neon-cyan));
}

.age-verification-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.age-verification-text {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 30px;
  line-height: 1.6;
}

.age-verification-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.age-btn {
  flex: 1;
  padding: 18px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-icon {
  font-size: 20px;
}

.age-btn-accept {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  color: var(--bg-black);
  box-shadow: 0 4px 20px rgba(0, 245, 255, 0.4);
}

.age-btn-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.6);
}

.age-btn-decline {
  background: transparent;
  color: var(--text-gray);
  border: 2px solid var(--border);
}

.age-btn-decline:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
  color: #ff4444;
  transform: translateY(-3px);
}

.age-verification-footer {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}

/* Top Info Bar */
.top-info-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(
    90deg,
    rgba(0, 245, 255, 0.15) 0%,
    rgba(0, 102, 255, 0.15) 50%,
    rgba(191, 0, 255, 0.15) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  padding: 8px 0;
}

.top-info-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-icon {
  font-size: 16px;
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.info-text {
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: transform .3s ease;
}

.brand-icon {
  max-width: 40px;
}
.brand:hover {
  transform: scale(1.05);
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.brand-text {
  color: var(--text-white);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--text-white) 0%,
    var(--neon-cyan) 50%,
    var(--text-white) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--neon-cyan) 0%,
    var(--electric-blue) 50%,
    var(--neon-cyan) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px var(--neon-cyan);
  }
  to {
    text-shadow: 0 0 30px var(--neon-cyan), 0 0 40px var(--electric-blue);
  }
}

.brand:hover .brand-text {
  background: linear-gradient(
    135deg,
    var(--neon-cyan) 0%,
    var(--electric-blue) 50%,
    var(--neon-cyan) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand:hover .highlight {
  animation: glow 0.5s ease-in-out infinite alternate;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--neon-cyan);
}

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

.nav-btn {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  color: var(--bg-black);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
  text-decoration: none;
  color: var(--bg-black);
}

.hero-section {
  margin-top: 118px;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

/* Декоративные элементы казино в hero секции */
.hero-section::before {
  content: "♠";
  position: absolute;
  top: 15%;
  left: 8%;
  font-size: 200px;
  color: var(--electric-blue);
  opacity: 0.04;
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
  font-weight: bold;
}

.hero-section::after {
  content: "♥";
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 180px;
  color: var(--neon-pink);
  opacity: 0.04;
  pointer-events: none;
  animation: float 14s ease-in-out infinite reverse;
  font-weight: bold;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 245, 255, 0.1) 0%,
    rgba(5, 5, 5, 0.9) 50%,
    rgba(191, 0, 255, 0.1) 100%
  );
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Дополнительная черва в hero */
.hero-content::before {
  content: "♥";
  position: absolute;
  top: 50%;
  right: 5%;
  font-size: 160px;
  color: var(--neon-pink);
  opacity: 0.03;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
  font-weight: bold;
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.title-line {
  display: block;
}

.highlight-line {
  background: linear-gradient(
    135deg,
    var(--neon-cyan),
    var(--neon-purple),
    var(--neon-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
  background-size: 200% 200%;
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-desc {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 15px;
}

.hero-subdesc {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  color: var(--bg-black);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
  font-family: "Space Grotesk", sans-serif;
}

.hero-scroll-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 245, 255, 0.7);
}

.hero-scroll-btn svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.responsible-gambling-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  margin: 25px auto 25px;
  max-width: 1400px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.rg-logo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rg-logo-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 245, 255, 0.2);
}

.rg-logo-link {
  text-decoration: none;
  display: block;
}

.rg-logo {
  max-width: 100px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1) !important;
  transition: filter 0.3s ease;
}

.rg-logo-card:hover .rg-logo {
  filter: brightness(0) invert(1) !important;
}

.stats-section {
  padding: 60px 40px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.stat-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rating-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
  scroll-margin-top: 100px;
}

.rating-section::before {
  content: "♥";
  position: absolute;
  top: 50%;
  left: 5%;
  font-size: 420px;
  color: var(--neon-pink);
  opacity: 0.05;
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
  font-weight: bold;
}

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

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.section-number {
  font-size: 80px;
  font-weight: 700;
  color: var(--bg-card);
  -webkit-text-stroke: 2px var(--neon-cyan);
  line-height: 1;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 30px 30px 30px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr) minmax(340px, 1.3fr) minmax(200px, 0.8fr);
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
          90deg,
          transparent,
          rgba(0, 245, 255, 0.1),
          transparent
  );
  transition: left 0.6s ease;
}

.casino-item:hover::before {
  left: 100%;
}

.casino-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 50px rgba(0, 245, 255, 0.2);
}

.casino-item[data-rank="1"]:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 60px rgba(0, 245, 255, 0.3);
  background: linear-gradient(
          135deg,
          rgba(0, 245, 255, 0.1) 0%,
          rgba(0, 102, 255, 0.15) 50%,
          rgba(191, 0, 255, 0.1) 100%
  );
}

.casino-item[data-rank="2"]:hover {
  border-color: var(--cyber-yellow);
  box-shadow: 0 15px 60px rgba(255, 190, 11, 0.3);
  background: linear-gradient(
          135deg,
          rgba(255, 190, 11, 0.1) 0%,
          rgba(255, 0, 110, 0.15) 50%,
          rgba(0, 245, 255, 0.1) 100%
  );
}

.casino-item[data-rank="3"]:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 15px 60px rgba(191, 0, 255, 0.3);
  background: linear-gradient(
          135deg,
          rgba(191, 0, 255, 0.1) 0%,
          rgba(255, 0, 110, 0.15) 50%,
          rgba(0, 245, 255, 0.1) 100%
  );
}

.casino-item[data-rank="4"]:hover {
  border-color: var(--electric-blue);
  box-shadow: 0 15px 60px rgba(0, 102, 255, 0.3);
  background: linear-gradient(
          135deg,
          rgba(0, 102, 255, 0.1) 0%,
          rgba(0, 245, 255, 0.15) 50%,
          rgba(255, 190, 11, 0.1) 100%
  );
}

.casino-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--neon-cyan);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.top-badge {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  color: var(--bg-black);
  border: none;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.casino-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
}

.casino-logo-wrapper {
  width: 100%;
  max-width: 160px;
  height: 90px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-item[data-rank="1"] .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(0, 245, 255, 0.1) 0%,
          rgba(0, 102, 255, 0.15) 50%,
          rgba(191, 0, 255, 0.1) 100%
  );
  border-color: rgba(0, 245, 255, 0.4);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.2);
}

.casino-item[data-rank="2"] .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(255, 190, 11, 0.1) 0%,
          rgba(255, 0, 110, 0.15) 50%,
          rgba(0, 245, 255, 0.1) 100%
  );
  border-color: rgba(255, 190, 11, 0.4);
  box-shadow: 0 8px 30px rgba(255, 190, 11, 0.2);
}

.casino-item[data-rank="3"] .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(191, 0, 255, 0.1) 0%,
          rgba(255, 0, 110, 0.15) 50%,
          rgba(0, 245, 255, 0.1) 100%
  );
  border-color: rgba(191, 0, 255, 0.4);
  box-shadow: 0 8px 30px rgba(191, 0, 255, 0.2);
}

.casino-item[data-rank="4"] .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(0, 102, 255, 0.1) 0%,
          rgba(0, 245, 255, 0.15) 50%,
          rgba(255, 190, 11, 0.1) 100%
  );
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
}

.casino-item[data-rank="1"]:hover .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(0, 245, 255, 0.15) 0%,
          rgba(0, 102, 255, 0.2) 50%,
          rgba(191, 0, 255, 0.15) 100%
  );
  border-color: rgba(0, 245, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 245, 255, 0.3);
  transform: scale(1.05);
}

.casino-item[data-rank="2"]:hover .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(255, 190, 11, 0.15) 0%,
          rgba(255, 0, 110, 0.2) 50%,
          rgba(0, 245, 255, 0.15) 100%
  );
  border-color: rgba(255, 190, 11, 0.6);
  box-shadow: 0 12px 40px rgba(255, 190, 11, 0.3);
  transform: scale(1.05);
}

.casino-item[data-rank="3"]:hover .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(191, 0, 255, 0.15) 0%,
          rgba(255, 0, 110, 0.2) 50%,
          rgba(0, 245, 255, 0.15) 100%
  );
  border-color: rgba(191, 0, 255, 0.6);
  box-shadow: 0 12px 40px rgba(191, 0, 255, 0.3);
  transform: scale(1.05);
}

.casino-item[data-rank="4"]:hover .casino-logo-wrapper {
  background: linear-gradient(
          135deg,
          rgba(0, 102, 255, 0.15) 0%,
          rgba(0, 245, 255, 0.2) 50%,
          rgba(255, 190, 11, 0.15) 100%
  );
  border-color: rgba(0, 102, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
  transform: scale(1.05);
}

.casino-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-meta {
  width: 100%;
}

.casino-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.casino-info-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.info-icon {
  color: var(--neon-cyan);
}

.info-item a {
  color: var(--text-gray);
  transition: color 0.3s ease;
  text-decoration: none;
}

.info-item a:hover {
  color: var(--neon-cyan);
}

.license-info {
  background: rgba(0, 245, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  width: 100%;
}

.license-info .info-text {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 13px;
}

.casino-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-block {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.3s ease;
}

.detail-block:hover {
  border-color: rgba(0, 245, 255, 0.4);
  transform: translateX(3px);
}

.bonus-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.detail-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.detail-text {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.license-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-label {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

.detail-label strong {
  color: var(--neon-cyan);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.license-badges-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.license-badge {
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.license-badge:hover {
  background: rgba(0, 245, 255, 0.15);
  border-color: rgba(0, 245, 255, 0.5);
  color: var(--neon-cyan);
  transform: translateX(4px);
}

.casino-games {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.games-title {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tag {
  background: rgba(0, 245, 255, 0.05);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-gray);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.game-tag:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.4);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}

.casino-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding-top: 8px;
}

.responsible-text {
  font-size: 12px;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.5;
}

.responsible-text a {
  color: var(--text-gray);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.responsible-text a:hover {
  color: var(--neon-cyan);
}

.btn-play {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  color: var(--bg-black);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  text-decoration: none;
  min-width: 185px;
  text-align: center;
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

.btn-details,
a.btn-details {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-details:hover,
a.btn-details:hover {
  background: var(--neon-cyan);
  color: var(--bg-black);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
  text-decoration: none !important;
}

@media (max-width: 1400px) {
  .casino-item {
    grid-template-columns: minmax(250px, 1fr) minmax(280px, 1fr) minmax(300px, 1fr) minmax(180px, 0.8fr);
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .casino-item {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .casino-games {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .rating-section {
    padding: 60px 20px;
  }

  .section-number {
    font-size: 60px;
  }

  .section-title {
    font-size: 32px;
  }

  .casino-item {
    grid-template-columns: 1fr;
    padding: 50px 20px 20px 20px;
    gap: 20px;
  }

  .casino-logo-wrapper {
    max-width: 140px;
    height: 80px;
  }

  .casino-title {
    font-size: 20px;
  }

  .casino-actions {
    width: 100%;
  }

  .btn-play {
    width: 100%;
  }
}

.how-it-works-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
}

.how-it-works-section::after {
  content: "♣";
  position: absolute;
  top: 20%;
  right: 5%;
  font-size: 360px;
  color: var(--neon-purple);
  opacity: 0.05;
  pointer-events: none;
  animation: float 22s ease-in-out infinite reverse;
  font-weight: bold;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
}

.step-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 245, 255, 0.2);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

.step-line {
  display: none;
}

.faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
}

.faq-section::before {
  content: "🎰";
  position: absolute;
  top: -10%;
  /* bottom: 10%; */
  left: -2%;
  font-size: 270px;
  opacity: 0.05;
  pointer-events: none;
  animation: rotate 30s linear infinite;
  filter: grayscale(1) brightness(2);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--neon-cyan);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-icon {
  font-size: 28px;
  color: var(--neon-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

.why-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
}

.why-section::after {
  content: "🎲";
  position: absolute;
  top: 30%;
  right: -2%;
  font-size: 240px;
  opacity: 0.05;
  pointer-events: none;
  animation: float 15s ease-in-out infinite;
  filter: grayscale(1) brightness(2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 245, 255, 0.2);
}

.why-icon {
  font-size: 56px;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.why-card:hover .why-icon {
  filter: grayscale(0%);
}

.why-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.why-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-responsible {
  max-width: 1400px;
  margin: 0 auto 30px;
  background: rgba(255, 190, 11, 0.05);
  border: 1px solid rgba(255, 190, 11, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.responsible-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyber-yellow);
  color: var(--bg-black);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  gap: 6px;
  flex-shrink: 0;
}

.badge-icon {
  font-size: 20px;
}

.badge-text {
  font-size: 18px;
}

.responsible-text {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
}

.responsible-text a {
  text-decoration: none;
  color: var(--cyber-yellow);
  font-weight: 700;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
}

.footer-warning {
  color: var(--cyber-yellow);
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-copy {
  color: var(--text-gray);
  font-size: 13px;
}

@media (max-width: 1200px) {
  .casino-item {
    flex-wrap: wrap;
  }

  .casino-features {
    order: 3;
    width: 100%;
  }

  .casino-actions {
    order: 4;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-responsible {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-number {
    font-size: 48px;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }

  .brand-text {
    font-size: 16px;
    letter-spacing: 0.3px;
  }

  .brand {
    font-size: 18px;
  }

  .casino-main {
    flex-direction: column;
    text-align: center;
  }

  .casino-title {
    font-size: 20px;
  }

  .casino-badge {
    top: 10px;
    right: 10px;
  }

  .btn-play,
  .btn-details {
    width: 100%;
  }

  .hero-desc {
    font-size: 22px;
  }

  .hero-subdesc {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 30px;
  }

  .hero-title {
    font-size: 36px;
  }

  .metric-value {
    font-size: 36px;
  }

  .stat-number {
    font-size: 36px;
  }

  .nav-content {
    padding: 15px 20px;
  }

  .rating-section,
  .why-section,
  .how-it-works-section,
  .faq-section {
    padding: 60px 20px;
  }

  .hero-section {
    padding: 100px 20px 60px;
  }

  .stats-section {
    padding: 40px 20px;
  }
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
}

.burger-icon,
.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--neon-cyan);
  transition: all 0.3s ease;
  stroke-width: 2.5;
}

.burger-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.close-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.burger-menu.active .burger-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.burger-menu.active .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.burger-menu:hover .burger-icon,
.burger-menu:hover .close-icon {
  color: var(--electric-blue);
  stroke-width: 3;
}

.mobile-menu {
  position: fixed;
  top: 118px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  max-height: 400px;
}

.mobile-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}

.mobile-link:hover,
.mobile-link:active {
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.05);
  border-color: var(--neon-cyan);
}

.mobile-btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.desktop-only {
  display: inline-block;
}

@media (max-width: 768px) {
  .age-verification-popup {
    padding: 40px 30px;
  }

  .age-verification-title {
    font-size: 28px;
  }

  .age-verification-text {
    font-size: 16px;
  }

  .age-verification-buttons {
    flex-direction: column;
  }

  .age-btn {
    width: 100%;
  }

  .top-info-bar {
    padding: 6px 0;
  }

  .top-info-content {
    flex-direction: row;
    gap: 15px;
    padding: 0 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-item {
    font-size: 10px;
    gap: 6px;
  }

  .info-icon {
    font-size: 12px;
  }

  .mobile-text {
    display: inline;
  }

  .desktop-text {
    display: none;
  }

  .navbar {
    top: 50px;
  }

  .hero-section {
    margin-top: 130px;
  }

  .mobile-menu {
    top: 62px;
  }

  .legal-page {
    padding-top: 170px;
  }

  .nav-links {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .casino-item {
    padding: 20px;
  }

  .casino-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .casino-logo-wrapper {
    width: 120px;
    height: 60px;
  }

  .casino-info-row {
    flex-direction: column;
    gap: 10px;
  }

  .casino-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .casino-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-play,
  .btn-details {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }

  .casino-badge {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .license-info {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-info-bar {
    padding: 5px 0;
  }

  .top-info-content {
    gap: 10px;
    padding: 0 10px;
  }

  .info-item {
    font-size: 9px;
    gap: 5px;
  }

  .info-icon {
    font-size: 11px;
  }

  .navbar {
    top: 28px;
  }

  .hero-section {
    margin-top: 90px;
  }

  .mobile-menu {
    top: 62px;
  }

  .legal-page {
    padding-top: 165px;
  }

  .hero-title {
    font-size: 36px;
  }

  .casino-item {
    padding: 15px;
  }

  .casino-title {
    font-size: 18px;
  }

  .feature-tag {
    font-size: 12px;
    padding: 6px 10px;
  }

  .info-text {
    font-size: 12px;
  }
}

.legal-page {
  min-height: 100vh;
  padding: 158px 20px 60px;
  position: relative;
  z-index: 1;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border);
}

.legal-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.legal-updated {
  color: var(--text-gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-content {
  color: var(--text-gray);
  line-height: 1.8;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--neon-cyan);
}

.legal-section p {
  margin-bottom: 15px;
  font-size: 15px;
}

.legal-section ul,
.legal-section ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-section li {
  margin-bottom: 10px;
  padding-left: 10px;
}

.legal-section strong {
  color: var(--text-white);
  font-weight: 600;
}

.legal-section a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-section a:hover {
  color: var(--electric-blue);
  text-decoration: underline;
}

.legal-notice {
  background: rgba(0, 245, 255, 0.05);
  border: 1px solid var(--neon-cyan);
  border-radius: 12px;
  padding: 25px;
  margin-top: 40px;
}

.legal-notice p {
  margin-bottom: 0;
  color: var(--text-white);
  font-size: 14px;
  line-height: 1.6;
}

.warning-box {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 110, 0.1),
    rgba(191, 0, 255, 0.1)
  );
  border: 2px solid var(--neon-pink);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.warning-box h2 {
  color: var(--neon-pink);
  font-size: 28px;
  margin-bottom: 15px;
  border: none;
  padding: 0;
}

.warning-box p {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.help-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.resource-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.resource-card h3 {
  color: var(--neon-cyan);
  font-size: 20px;
  margin-bottom: 15px;
}

.resource-phone,
.resource-link {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 14px;
  line-height: 1.6;
}

.emergency {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 110, 0.15),
    rgba(191, 0, 255, 0.15)
  );
  border: 2px solid var(--neon-pink);
  text-align: center;
}

.emergency h3 {
  color: var(--neon-pink);
  font-size: 24px;
  margin-bottom: 15px;
}

.emergency p {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.emergency p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-gray);
}

.highlight-section {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .legal-container {
    padding: 40px 30px;
  }

  .legal-title {
    font-size: 36px;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .help-resources {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 138px 15px 40px;
  }

  .legal-container {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .legal-title {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 18px;
  }

  .warning-box {
    padding: 20px;
  }

  .warning-box h2 {
    font-size: 22px;
  }

  .resource-card {
    padding: 20px;
  }
}
