/* ========================================
   KZ Design System - Ultra Dark Edition
   ======================================== */
   :root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2332;
    --bg-surface: #2d3748;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #00d4ff;
    --accent-dark: #00a3cc;
    --bonus: #ff6b6b;
    --success: #10b981;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 215, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body {
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
  }

  a { color: var(--accent); text-decoration: none; }
  a:hover { color: var(--accent-dark); }

  /* Typography */
  h1, h2, h3, h4, h5, h6 { 
    font-family: 'Orbitron', sans-serif; 
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }
  h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 800; }
  h2 { font-size: 2rem; font-weight: 700; color: var(--accent); }
  h3 { font-size: 1.4rem; font-weight: 600; }

  /* Layout */
  .kz-container { max-width: 1300px; margin: 0 auto; padding: 0 1.2rem; }

.kz-page{
    background-image: url(../images/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
  }

  .kz-page::after{
    content: '';
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
  }

  /* Hero */
  .kz-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent 70%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  }
  .kz-hero__subtitle { 
    font-size: 1.15rem; 
    max-width: 800px; 
    margin: 0 auto; 
    color: var(--text-muted);
  }

  /* Offers Carousel */
  .kz-offers { padding: 3rem 0; }
  .kz-offers__title { text-align: center; margin-bottom: 2.5rem; }
  .kz-offers__carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    scrollbar-width: none;
    justify-content: center;
  }
  .kz-offers__carousel::-webkit-scrollbar { display: none; }

  /* Casino Card - Full Redesign */
  .kz-casino {
    flex: 0 0 88%;
    scroll-snap-align: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  .kz-casino:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }

  .kz-casino__header {
    padding: 1.5rem 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
  }
  .kz-casino__logo {
    height: 80px;
    width: 100%;
    margin-bottom: 1rem;
  }

  .kz-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .kz-rating__score {
    background: var(--success);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
  }
  .kz-rating__bar {
    width: 100%;
    height: 6px;
    background: var(--bg-surface);
    border-radius: 3px;
    overflow: hidden;
  }
  .kz-rating__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--success));
    border-radius: 3px;
  }
  .kz-rating__votes { font-size: 0.8rem; color: var(--text-muted); }

  .kz-casino__details { padding: 1.2rem; flex-grow: 1; }
  .kz-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .kz-info__item strong { color: var(--accent); }

  .kz-bonus {
    background: rgba(255, 107, 107, 0.15);
    border: 1px dashed var(--bonus);
    padding: 0.9rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--bonus);
    margin-bottom: 1rem;
  }

  .kz-btn {
    display: block;
    padding: 0.9rem;
    text-align: center;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }
  .kz-btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  }
  .kz-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
    color: #fff;
  }

  /* Sections */
  .kz-criteria, .kz-guide, .kz-proscons, .kz-summary { padding: 3.5rem 0; }
  .kz-criteria__intro, .kz-guide p, .kz-proscons ul li, .kz-summary p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
  }

  .kz-proscons__grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
  }
  .kz-proscons__col ul {
    list-style: none;
  }
  .kz-proscons__col ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
  }
  .kz-proscons__col ul li::before {
    content: "→";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  /* Footer */
  .kz-footer {
    background: #05070d;
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
  }
  .kz-footer__grid {
    display: grid;
    gap: 2.5rem;
  }
  .kz-footer__logo { width: 90px; margin-bottom: 1rem; }
  .kz-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }
  .kz-footer__badges img {
    height: 36px;
    transition: 0.3s;
  }
  .kz-footer__badges img:hover {
    filter: grayscale(0);
    transform: scale(1.15);
  }
  .kz-footer__copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
  }

  /* Responsive */
  @media (min-width: 640px) {
    .kz-casino { flex: 0 0 80%; }
  }
  @media (min-width: 768px) {
    .kz-offers__carousel { gap: 2rem; }
    .kz-casino { flex: 0 0 48%; }
    .kz-proscons__grid { grid-template-columns: 1fr 1fr; }
  }
    @media (max-width: 768px) {
    .kz-offers__carousel { flex-wrap: wrap; }
  }
  @media (min-width: 1024px) {
    .kz-casino { flex: 0 0 31%; }
    .kz-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .kz-info { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  .kz-content { padding: 3rem 0; }
  .kz-content__title { margin: 2rem 0 1rem; color: var(--accent); }
  .kz-content__text { margin-bottom: 1.5rem; }