/* ========== Pelican Casino - Main Stylesheet ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0e1530;
  color: #e6ebf5;
  line-height: 1.6;
  font-size: 16px;
}

a { color: #ffc107; text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.header {
  background: linear-gradient(180deg, #131c3b 0%, #0e1530 100%);
  border-bottom: 1px solid #1f2a55;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logo { font-size: 1.6rem; font-weight: 700; color: #ffc107; letter-spacing: .5px; }
.logo span { color: #fff; }

.nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav a { color: #cfd6ea; font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: #ffc107; }

.header-buttons { display: flex; gap: 10px; }
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(90deg, #ff7a00, #ffc107);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(255,193,7,0.25);
}
.btn-primary:hover { transform: translateY(-2px); color: #1a1a1a; box-shadow: 0 6px 22px rgba(255,193,7,0.4); }
.btn-outline { background: transparent; color: #ffc107; border: 1.5px solid #ffc107; }
.btn-outline:hover { background: #ffc107; color: #1a1a1a; }

/* ===== Language Switcher ===== */
.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-switch a {
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #cfd6ea;
  background: #1a2347;
}
.lang-switch a.active { background: #ffc107; color: #1a1a1a; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1a2347 0%, #2a1a4d 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}
.hero h1 .accent { color: #ffc107; }
.hero p { font-size: 1.15rem; color: #cfd6ea; max-width: 700px; margin: 0 auto 28px; }
.hero .btn { font-size: 1.1rem; padding: 14px 36px; }

.bonus-badge {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  border: 1px solid #ffc107;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #ffc107;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ===== Section ===== */
.section { padding: 60px 0; }
.section h2 {
  font-size: 2rem;
  margin-bottom: 26px;
  color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}
.section h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: #ffc107;
  border-radius: 2px;
}
.section h3 { font-size: 1.4rem; color: #ffc107; margin: 28px 0 14px; }
.section p { margin-bottom: 14px; color: #c8d0e8; }

.section-alt { background: #131c3b; }

/* ===== TOC ===== */
.toc {
  background: #1a2347;
  border-left: 4px solid #ffc107;
  padding: 22px 26px;
  border-radius: 6px;
  margin: 30px 0;
}
.toc h4 { color: #ffc107; margin-bottom: 12px; font-size: 1.05rem; }
.toc ol { padding-left: 22px; }
.toc li { margin-bottom: 6px; }
.toc a { color: #cfd6ea; }
.toc a:hover { color: #ffc107; }

/* ===== Tables ===== */
.table-wrapper { overflow-x: auto; margin: 24px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  background: #1a2347;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.95rem;
}
th {
  background: #2a3768;
  color: #ffc107;
  padding: 14px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #ffc107;
}
td {
  padding: 12px 14px;
  border-bottom: 1px solid #2a3768;
  color: #d8dff0;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,193,7,0.05); }

/* ===== Pros & Cons ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 24px 0; }
.pros, .cons {
  background: #1a2347;
  padding: 22px;
  border-radius: 8px;
  border-top: 4px solid;
}
.pros { border-color: #4caf50; }
.cons { border-color: #ef5350; }
.pros h4 { color: #4caf50; margin-bottom: 12px; }
.cons h4 { color: #ef5350; margin-bottom: 12px; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding: 6px 0; padding-left: 26px; position: relative; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: #4caf50; font-weight: 700; }
.cons li::before { content: "✗"; position: absolute; left: 0; color: #ef5350; font-weight: 700; }

/* ===== Games Grid ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 26px 0;
}
.game-card {
  background: #1a2347;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: #ffc107;
  box-shadow: 0 6px 18px rgba(255,193,7,0.15);
}
.game-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #ff7a00, #ffc107);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 800;
}
.game-card .title { font-weight: 600; color: #fff; font-size: 0.9rem; margin-bottom: 8px; }
.game-card .play-link {
  display: inline-block;
  padding: 6px 14px;
  background: #ffc107;
  color: #1a1a1a;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-item {
  background: #1a2347;
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 3px solid #ffc107;
}
.faq-item h4 { padding: 16px 20px; color: #fff; font-size: 1.05rem; }
.faq-item p { padding: 0 20px 16px; color: #c8d0e8; }

/* ===== Reviews ===== */
.review {
  background: #1a2347;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #ffc107;
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.review-name { font-weight: 600; color: #ffc107; }
.review-date { color: #8b97b8; font-size: 0.85rem; }
.review-stars { color: #ffc107; margin-bottom: 8px; }

/* ===== CTA ===== */
.cta-banner {
  background: linear-gradient(135deg, #ff7a00 0%, #ffc107 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  color: #1a1a1a;
}
.cta-banner h3 { color: #1a1a1a; font-size: 1.6rem; margin-bottom: 12px; }
.cta-banner p { color: #1a1a1a; margin-bottom: 20px; font-weight: 500; }
.cta-banner .btn {
  background: #1a1a1a;
  color: #ffc107;
}
.cta-banner .btn:hover { background: #000; }

/* ===== Footer ===== */
.footer {
  background: #0a0f24;
  padding: 40px 0 20px;
  border-top: 1px solid #1f2a55;
  margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 28px; }
.footer-col h4 { color: #ffc107; margin-bottom: 14px; font-size: 1.05rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #a8b2cf; font-size: 0.9rem; }
.footer-col a:hover { color: #ffc107; }
.footer-bottom {
  border-top: 1px solid #1f2a55;
  padding-top: 20px;
  text-align: center;
  color: #8b97b8;
  font-size: 0.85rem;
}
.footer-bottom p { margin-bottom: 8px; }
.age-warning { display: inline-block; background: #ef5350; color: #fff; padding: 4px 12px; border-radius: 4px; font-weight: 700; margin-top: 8px; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .section h2 { font-size: 1.6rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .nav { width: 100%; justify-content: center; }
  .header-buttons { width: 100%; justify-content: center; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
