/* =====================================================
   MejorJuego.co - Main Stylesheet
   Casino Aggregator / Information Site - Colombia
   ===================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #1E3A8A;
  --primary-dark: #1e2d6b;
  --primary-light: #3B82F6;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --success: #10B981;
  --danger: #EF4444;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* --- Age Verification Popup --- */
.age-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.age-popup {
  background: linear-gradient(135deg, #0F1B3D 0%, #1E3A8A 50%, #1B3070 100%);
  border-radius: 24px;
  padding: 50px 45px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.age-popup::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.age-popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  box-shadow: 0 0 30px rgba(245,158,11,0.4);
}

.age-popup h2 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 800;
}

.age-popup p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.7;
}

.age-popup-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  transition: var(--transition);
  min-width: 140px;
}

.age-btn-yes {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

.age-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
}

.age-btn-no {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.25);
}

.age-btn-no:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.age-popup-footer {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 18px 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 280px;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--accent);
  color: #1a1a1a;
}

.cookie-btn-accept:hover { background: var(--accent-light); }

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 27, 61, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 27, 61, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-logo span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.main-nav a.active {
  background: rgba(245,158,11,0.15);
  color: var(--accent);
}

.header-cta {
  background: linear-gradient(135deg, var(--accent), #D97706);
  color: #1a1a1a !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(245,158,11,0.35);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.45) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,27,61,0.92) 0%,
    rgba(30,58,138,0.82) 50%,
    rgba(15,27,61,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title .highlight {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #D97706);
  color: #1a1a1a;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
  font-family: var(--font-heading);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,158,11,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* --- Section Styles --- */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--gray-50);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(30,58,138,0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gray-900);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Platform Cards --- */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.platform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

/* Glow animation on cards */
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(30,58,138,0.12), 0 0 0 0 rgba(59,130,246,0); }
  50% { box-shadow: 0 20px 50px rgba(30,58,138,0.2), 0 0 25px rgba(59,130,246,0.15); }
}

.platform-card:nth-child(1) { animation: cardGlow 4s ease-in-out infinite; }
.platform-card:nth-child(2) { animation: cardGlow 4s ease-in-out infinite 1.3s; }
.platform-card:nth-child(3) { animation: cardGlow 4s ease-in-out infinite 2.6s; }

.platform-card.featured {
  border: 2px solid var(--accent);
}

.platform-card-header {
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.platform-card-logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
}

/* Logo containers for dark-background logos */
.platform-card-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 68px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
}

.platform-rank {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rank-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

.rank-badge.gold { background: linear-gradient(135deg, #F59E0B, #D97706); color: #1a1a1a; }

.platform-rating {
  display: flex;
  gap: 2px;
}

.star { color: var(--accent); font-size: 14px; }
.star.empty { color: var(--gray-300); }

.platform-card-body {
  padding: 24px 28px;
}

.platform-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.platform-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 18px;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.platform-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 11px;
  flex-shrink: 0;
}

.platform-bonus {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.04));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.platform-bonus-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.platform-bonus-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
}

.platform-card-footer {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
}

.btn-visit {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  text-align: center;
}

.btn-visit:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30,58,138,0.35);
}

.btn-review {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-review:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: rgba(30,58,138,0.04);
}

/* --- Featured Badge --- */
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), #D97706);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* --- About Section --- */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.about-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,61,0.93) 0%, rgba(30,58,138,0.88) 100%);
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(4px);
}

.about-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.about-box-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-box h4 {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}

.about-box ul {
  list-style: none;
  padding: 0;
}

.about-box ul li {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.about-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* --- What Section (2 col DO / DON'T) --- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.what-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid transparent;
}

.what-box.do { border-top-color: var(--success); }
.what-box.dont { border-top-color: var(--danger); }

.what-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.what-box-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.what-box.do .what-box-icon { background: rgba(16,185,129,0.1); }
.what-box.dont .what-box-icon { background: rgba(239,68,68,0.1); }

.what-box h3 {
  font-size: 20px;
  color: var(--gray-900);
}

.what-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.what-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.what-box.do .what-list-icon { background: rgba(16,185,129,0.12); color: var(--success); }
.what-box.dont .what-list-icon { background: rgba(239,68,68,0.12); color: var(--danger); }

/* --- Security Section --- */
.security-section {
  position: relative;
  overflow: hidden;
}

.security-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/security-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.security-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,61,0.9) 0%, rgba(20,40,100,0.88) 100%);
}

.security-section .container {
  position: relative;
  z-index: 2;
}

.security-section .section-tag { 
  background: rgba(245,158,11,0.15);
  color: var(--accent-light); 
}

.security-section .section-title { color: var(--white); }
.security-section .section-desc { color: rgba(255,255,255,0.65); }

.security-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.security-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.security-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.4);
}

.security-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.security-card h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.security-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* --- Contacts Section --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gray-900);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(30,58,138,0.1), rgba(59,130,246,0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.contact-item-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-item-value a:hover {
  text-decoration: underline;
}

.contact-item-value.no-link {
  color: var(--gray-700);
  cursor: default;
  user-select: text;
}

.contact-map-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-map-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
  font-size: 40px;
}

.contact-map-placeholder p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.contact-map-info {
  padding: 24px;
}

.contact-map-info h4 {
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-map-info p {
  font-size: 13px;
  color: var(--gray-500);
}

/* --- Regulators Section --- */
.regulators-section {
  background: var(--gray-50);
  padding: 60px 0;
}

.regulators-section .section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.regulators-section .section-header {
  margin-bottom: 36px;
}

.regulators-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.regulator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.regulator-item:hover {
  transform: translateY(-4px);
}

.regulator-logo-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 80px;
}

.regulator-logo-wrap img {
  max-height: 60px;
  max-width: 160px;
  width: 100%;
  object-fit: contain;
}

.regulator-name {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(135deg, #0A1628 0%, #0F1E3D 100%);
  color: var(--white);
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-brand .footer-logo img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-disclaimer {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-regulators {
  padding: 40px 24px;
  max-width: 1240px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-regulators-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-regulator-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-regulator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: var(--transition-fast);
}

.footer-regulator-item:hover { opacity: 1; }

.footer-regulator-logo {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-regulator-logo img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(0.7);
  transition: var(--transition-fast);
}

.footer-regulator-item:hover .footer-regulator-logo img {
  filter: brightness(0) invert(1);
}

.footer-regulator-name {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.footer-bottom {
  padding: 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

.footer-18 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--danger);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-18 span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
  font-size: 20px;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* --- Inner Pages --- */
.inner-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1E3A8A 100%);
  padding: 130px 0 70px;
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
}

.inner-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--accent); }

.inner-content {
  padding: 80px 0;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.inner-content h2 {
  font-size: 26px;
  color: var(--gray-900);
  margin: 40px 0 16px;
  padding-top: 10px;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.inner-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.inner-content ul li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 6px;
  padding-left: 4px;
}

.inner-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.info-box {
  background: rgba(30,58,138,0.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.warning-box {
  background: rgba(245,158,11,0.07);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

/* --- Product Single Page --- */
.product-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1E3A8A 100%);
  padding: 130px 0 70px;
}

.product-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.product-hero-logo-box {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 28px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 110px;
}

.product-hero-logo-box img {
  height: 70px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.product-hero-info h1 {
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.product-hero-info p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 20px;
}

.product-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.product-hero-rating .stars {
  display: flex;
  gap: 3px;
  font-size: 18px;
}

.product-hero-rating span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Responsible Gambling --- */
.rg-hero {
  background: linear-gradient(135deg, #0A1628 0%, #7F1D1D 100%);
}

.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.rg-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.rg-card:hover { transform: translateY(-4px); }

.rg-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.rg-card h4 {
  font-size: 17px;
  color: var(--gray-900);
  margin-bottom: 10px;
  font-weight: 700;
}

.rg-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: 10px; width: 100%; }
  .mobile-menu-btn { display: flex; }
  .what-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .platforms-grid { grid-template-columns: 1fr; }
  .product-hero-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .age-popup { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; justify-content: center; }
  .security-cards { grid-template-columns: 1fr 1fr; }
}
