/* ===========================================
   Pelican Casino — Light theme, purple/blue
   Modern casino landing — Slottica/Vulkan vibe
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7f8fc;
  --bg-card: #ffffff;
  --bg-section: #ffffff;
  --bg-section-alt: #f0f1fa;
  --bg-dark-panel: #1a1d3a;
  --primary: #6c4dff;
  --primary-dark: #4f30e0;
  --primary-light: #8b73ff;
  --secondary: #2563eb;
  --accent: #ffb800;
  --accent-warm: #ff6b00;
  --success: #10b981;
  --danger: #ef4444;
  --text: #1a1f3a;
  --text-muted: #5a6285;
  --text-light: #8b92ad;
  --border: #e5e8f3;
  --border-strong: #d0d5e8;
  --gradient-hero: linear-gradient(135deg, #6c4dff 0%, #2563eb 100%);
  --gradient-card: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --shadow-sm: 0 2px 8px rgba(108, 77, 255, 0.06);
  --shadow-md: 0 8px 24px rgba(108, 77, 255, 0.10);
  --shadow-lg: 0 16px 40px rgba(108, 77, 255, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

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

code {
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  background: rgba(108, 77, 255, 0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ HEADER ============ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  flex-wrap: wrap;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-hero);
  border-radius: 8px;
  color: white;
  font-size: 18px;
}
.logo span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover { color: var(--primary); }
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--bg-section-alt);
  border-radius: 8px;
  padding: 3px;
}
.lang-switch a {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 5px;
}
.lang-switch a.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header-buttons {
  display: flex;
  gap: 10px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 22px;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-gold {
  background: var(--gradient-gold);
  color: #5a3e00;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.4);
}
.btn-gold:hover {
  color: #3a2700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
}
.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}
.btn-small {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
}

/* ============ HERO ============ */
.hero {
  background: var(--gradient-hero);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.hero-text h1 .gold {
  color: var(--accent);
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 26px;
  font-size: 13px;
  opacity: 0.85;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bonus-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  position: relative;
}
.bonus-box::before {
  content: '🎁';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.5);
}
.bonus-box-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 8px;
}
.bonus-box-amount {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1;
}
.bonus-box-currency {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}
.bonus-box-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.5;
}
.bonus-box-code {
  background: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  font-size: 13px;
}
.bonus-box-code strong {
  letter-spacing: 0.1em;
  font-size: 16px;
}

/* ============ SECTIONS ============ */
.section {
  padding: 70px 0;
}
.section-alt {
  background: var(--bg-section-alt);
}
.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-title p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-title.left {
  text-align: left;
}
.section-title.left p {
  margin: 0;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: white;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-stat {
  padding: 4px 8px;
}
.trust-stat-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ BONUS CARDS GRID ============ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.bonus-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.bonus-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-card);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}
.bonus-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text);
}
.bonus-card-amount {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0;
  line-height: 1;
}
.bonus-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 14px 0 18px;
  min-height: 50px;
}
.bonus-card-code {
  display: inline-block;
  background: var(--bg-section-alt);
  border: 1px dashed var(--primary);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
}
.bonus-card-code strong {
  color: var(--primary);
  letter-spacing: 0.08em;
  font-size: 15px;
}
.bonus-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.featured-label {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #5a3e00;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step {
  background: white;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 22px;
  background: var(--gradient-hero);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 14px 0 8px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============ PROSE CONTENT ============ */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
}
.prose p strong {
  color: var(--text);
  font-weight: 700;
}
.prose h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 36px 0 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.prose ul {
  margin: 0 0 22px;
  padding-left: 22px;
}
.prose ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.prose ul li::marker {
  color: var(--primary);
}
.prose blockquote {
  background: var(--gradient-card);
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 22px 0;
  font-style: italic;
  color: var(--text);
  font-size: 16px;
}

/* ============ TABLE ============ */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 14px 18px;
  background: var(--bg-section-alt);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(108, 77, 255, 0.03); }
.data-table td.amount {
  color: var(--primary);
  font-weight: 700;
}
.data-table td code {
  background: rgba(108, 77, 255, 0.12);
}

/* ============ GAMES GRID ============ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.game-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-tile {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  text-align: center;
}
.game-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.game-tile-img {
  aspect-ratio: 4/3;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.game-tile:hover .game-tile-img img {
  transform: scale(1.05);
}
.game-tile-body {
  padding: 14px 12px;
}
.game-tile h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.game-tile-prov {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ PAYMENT METHODS ============ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.payment-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.2s;
}
.payment-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.payment-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.payment-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.payment-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ FEATURES (advantages) ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.feature:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-card);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.feature h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
}
.faq-list details {
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-list details:hover {
  border-color: var(--border-strong);
}
.faq-list details[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--bg-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s;
}
.faq-list details[open] summary::after {
  content: '−';
  background: var(--primary);
  color: white;
}
.faq-list details p {
  padding: 0 22px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--gradient-hero);
  color: white;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,184,0,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.final-cta .container {
  position: relative;
}
.final-cta h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.final-cta p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.final-cta .small {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 18px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark-panel);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo {
  color: white;
  margin-bottom: 14px;
}
.footer .logo span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-col h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}
.footer-col p, .footer-col li {
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 6px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
}
.footer-col a:hover { color: var(--accent); }
.responsible-badges {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.responsible-badge {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bonus-box { max-width: 380px; margin: 0 auto; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .header-inner { gap: 8px; padding: 12px 12px; }
  .nav { display: none; }
  .header-buttons .btn-outline { display: none; }
  .header-buttons .btn { padding: 8px 14px; font-size: 13px; }
  .logo { font-size: 18px; }
  .logo-icon { width: 28px; height: 28px; font-size: 16px; }
  /* Language switch stays visible on mobile */
  .lang-switch { padding: 2px; gap: 1px; }
  .lang-switch a { padding: 4px 7px; font-size: 11px; }
  .hero { padding: 50px 0 60px; }
  .section { padding: 50px 0; }
  .container, .narrow { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .header-buttons .btn-primary { padding: 7px 10px; font-size: 12px; }
  .lang-switch a { padding: 4px 6px; font-size: 10px; }
  .header-inner { gap: 6px; }
}
