﻿  :root {
    --orange: #f15a22;
    --orange-dark: #d94e18;
    --orange-light: #ff7a3d;
    --black: #000000;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --dark4: #2a2a2a;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --gold: #f5c518;
    --nav-bg: #141414;
    --card-bg: #1e1e1e;
    --border: #333333;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='180' viewBox='0 0 320 180'%3E%3Cdefs%3E%3Cfilter id='glow' x='-20%25' y='-20%25' width='140%25' height='140%25' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='1.1' result='b'/%3E%3CfeFlood flood-color='%23151515' flood-opacity='0.55' result='c'/%3E%3CfeComposite in='c' in2='b' operator='in' result='cb'/%3E%3CfeMerge%3E%3CfeMergeNode in='cb'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23glow)' fill='%23151515' fill-opacity='0.85' font-family='Segoe UI, Arial, sans-serif' font-weight='900' dominant-baseline='middle'%3E%3Ctext x='28' y='52' font-size='90' transform='rotate(8 28 52)'%3E%E2%88%9A%3C/text%3E%3Ctext x='108' y='52' font-size='60' transform='rotate(8 108 52)'%3E%E2%88%9A%3C/text%3E%3Ctext x='188' y='52' font-size='90' transform='rotate(8 188 52)'%3E%E2%88%9A%3C/text%3E%3Ctext x='268' y='52' font-size='60' transform='rotate(8 268 52)'%3E%E2%88%9A%3C/text%3E%3Ctext x='28' y='138' font-size='60' transform='rotate(8 28 138)'%3E%E2%88%9A%3C/text%3E%3Ctext x='108' y='138' font-size='90' transform='rotate(8 108 138)'%3E%E2%88%9A%3C/text%3E%3Ctext x='188' y='138' font-size='60' transform='rotate(8 188 138)'%3E%E2%88%9A%3C/text%3E%3Ctext x='268' y='138' font-size='90' transform='rotate(8 268 138)'%3E%E2%88%9A%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 320px 180px;
    background-position: center top;
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
  }

  a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
  }

  a:hover {
    color: var(--orange-light);
  }

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

  /* ===== TOP NAV ===== */
  .top-nav {
    background-color: var(--dark);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 56px;
  }

  .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

  .casino-name-nav {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .casino-name-nav span {
    color: var(--orange);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }

  .nav-links li a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 18px 10px 16px;
    border-radius: 0;
    transition: color 0.2s;
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--orange);
    opacity: 0;
    transform: scaleX(0.2);
    transform-origin: center;
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-links li a:hover {
    color: var(--orange);
  }

  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-links li a.active {
    color: var(--orange);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-login {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-login:hover {
    border-color: var(--white);
  }

  .btn-register {
    background: var(--orange);
    border: none;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-register:hover {
    background: var(--orange-dark);
  }

  /* ===== CATEGORY NAV ===== */
  .cat-nav {
    background: var(--orange);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cat-nav::-webkit-scrollbar {
    display: none;
  }

  .cat-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 0;
  }

  .cat-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 10px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex: 1 1 0;
    min-width: 84px;
    opacity: 0.85;
    position: relative;
  }

  .cat-nav-item:hover {
    opacity: 1;
    transform: scale(1.06);
  }

  .cat-nav-item.active {
    opacity: 1;
  }

  .cat-nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 3px;
    background: rgba(255,255,255,0.95);
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s, width 0.2s;
  }

  .cat-nav-item:hover::after,
  .cat-nav-item.active::after {
    opacity: 1;
  }

  .cat-icon {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
  }

  .cat-icon svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255,255,255,0.95);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ===== HERO BANNER ===== */
  .hero-banner {
    background: transparent;
    padding: 18px 16px 6px;
    position: relative;
    overflow: hidden;
  }

  .hero-banner::before {
    content: none;
  }

  .hero-inner {
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  /* Hero image slider (static, no JS) */
  .hero-slider {
    --hero-h: 360px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 16px;
  }

  .hero-slide {
    position: relative;
    height: var(--hero-h);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #101010;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-slide.side {
    opacity: 0.78;
    filter: saturate(0.9) contrast(0.95);
  }

  .hero-slide.main {
    width: min(860px, 74vw);
    height: var(--hero-h);
    border-radius: 10px;
    border-color: rgba(255,255,255,0.12);
  }

  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #3b3b3b;
    border: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.08s;
    user-select: none;
    z-index: 5;
  }

  .hero-arrow:hover {
    opacity: 1;
  }

  .hero-arrow:active {
    transform: translateY(-50%) scale(0.94);
  }

  .hero-arrow.prev { left: 6px; border-radius: 0; }
  .hero-arrow.next { right: 6px; border-radius: 0; }

  .hero-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ===== GAME CARDS SECTION ===== */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .section-title-text {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
  }

  .section-title-text .star {
    color: var(--gold);
    font-size: 1.1rem;
  }

  .see-all {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    text-transform: none;
  }

  .see-all:hover {
    color: var(--orange-light);
  }

  /* Slots grids (3 rows like screenshot) */
  .slots-row {
    margin-bottom: 26px;
  }

  .slots-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .slot-card {
    display: block;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
    aspect-ratio: 1 / 1;
    position: relative;
  }

  .slot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .slot-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 16px 16px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
    opacity: 0;
    transition: opacity 0.18s;
  }

  .slot-fav {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    line-height: 1;
    color: var(--orange);
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
  }

  .slot-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    max-width: 92%;
  }

  .slot-play {
    width: min(86%, 220px);
    background: var(--orange);
    color: var(--black);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 16px;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.55);
  }

  .slot-card:hover {
    transform: translateY(-3px);
    border-color: rgba(241,90,34,0.75);
    box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  }

  .slot-card:hover .slot-overlay {
    opacity: 1;
  }

  @media (max-width: 1024px) {
    .slots-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }
  @media (max-width: 768px) {
    .slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  @media (max-width: 480px) {
    .slots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .game-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
  }

  .game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(241,90,34,0.3);
    border-color: var(--orange);
  }

  .game-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    padding: 12px;
    position: relative;
  }

  .game-card-1 { background: linear-gradient(135deg, #1a0d3e 0%, #4a1080 50%, #8b2fc9 100%); }
  .game-card-2 { background: linear-gradient(135deg, #0d2a4a 0%, #1565c0 50%, #42a5f5 100%); }
  .game-card-3 { background: linear-gradient(135deg, #1a0800 0%, #5d1f00 50%, #bf4500 100%); }
  .game-card-4 { background: linear-gradient(135deg, #1a1200 0%, #6b4f00 50%, #d4a017 100%); }
  .game-card-5 { background: linear-gradient(135deg, #0a1a0a 0%, #1b5e20 50%, #4caf50 100%); }
  .game-card-6 { background: linear-gradient(135deg, #1a0000 0%, #7f0000 50%, #f44336 100%); }

  .game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
  }

  .game-badge.hot {
    background: #e53935;
  }

  .game-badge.new {
    background: #00897b;
  }

  .game-title-card {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    text-align: center;
  }

  /* ===== PROMOTIONS STRIP ===== */
  .promo-strip {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 16px;
  }

  .promo-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .promo-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }

  .promo-card:hover {
    border-color: var(--orange);
  }

  .promo-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-text-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
  }

  .promo-text-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
  }

  /* ===== MAIN CONTENT ===== */
  .main-content-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px;
  }

  .content-area {
    background: var(--dark2);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
  }

  /* TOC */
  .toc-wrap {
    margin-bottom: 28px;
  }

  /* Bonus highlight box */
  .bonus-box {
    background: linear-gradient(135deg, rgba(241,90,34,0.1) 0%, rgba(241,90,34,0.05) 100%);
    border: 1px solid rgba(241,90,34,0.4);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .bonus-text-content {
    flex: 1;
  }

  .bonus-label-text {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .bonus-value-text {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
  }

  /* Content typography */
  .content-area p {
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.75;
  }

  .content-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
  }

  .content-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 24px;
    margin-bottom: 10px;
  }

  /* ===== TABLE STYLING ===== */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: var(--dark3);
  }

  thead {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  }

  thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }

  tbody tr:hover {
    background: var(--dark4);
  }

  tbody tr:last-child {
    border-bottom: none;
  }

  tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--gray-light);
  }

  tbody td:first-child {
    color: var(--white);
    font-weight: 600;
  }

  @media (max-width: 600px) {
    table {
      min-width: unset;
    }
    thead {
      display: none;
    }
    tbody tr {
      display: block;
      margin-bottom: 1em;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    tbody td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6em 1em;
      border-bottom: 1px solid var(--border);
    }
    tbody td:last-child {
      border-bottom: none;
    }
    tbody td::before {
      content: attr(data-label);
      font-weight: 700;
      color: var(--white);
      margin-right: 12px;
      flex-shrink: 0;
    }
  }

  /* ===== FAQ SECTION ===== */
  .faq-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 32px;
  }

  .faq-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .faq-title::before {
    content: '?';
    background: var(--orange);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    flex-shrink: 0;
  }

  details {
    margin-bottom: 10px;
    padding: 0;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
  }

  details:hover {
    border-color: var(--orange);
  }

  details[open] {
    border-color: var(--orange);
  }

  summary {
    cursor: pointer;
    font-weight: 700;
    padding: 16px 20px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.2s;
    user-select: none;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--orange);
    font-weight: 700;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
  }

  details[open] summary {
    color: var(--orange);
    background: rgba(241,90,34,0.08);
    border-bottom: 1px solid var(--border);
  }

  details[open] summary::after {
    content: '−';
    transform: rotate(0deg);
  }

  details p {
    padding: 16px 20px;
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.92rem;
    margin: 0;
  }

  /* ===== REVIEWS SECTION ===== */
  .reviews-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 32px;
  }

  .reviews-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .reviews-title::before {
    content: '★';
    color: var(--gold);
    font-size: 1.2rem;
  }

  .comment {
    background: var(--card-bg);
    padding: 1em 1.2em;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }

  .comment:hover {
    border-color: rgba(241,90,34,0.4);
  }

  .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
  }

  .comment-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--orange);
  }

  .comment-date {
    font-size: 0.85em;
    opacity: 0.6;
    color: var(--gray-light);
  }

  .comment-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .comment-text {
    margin-top: 0.5em;
    line-height: 1.6;
    color: var(--gray-light);
    font-size: 0.93rem;
  }

  /* Review Form */
  .review-form-wrap {
    background: var(--card-bg);
    padding: 1.5em 1.5em;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    margin-top: 24px;
  }

  .review-form-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .review-form-title::before {
    content: '✏️';
    font-size: 1rem;
  }

  .review-form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review-form-wrap input[type="text"],
  .review-form-wrap textarea {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--white);
    padding: 12px 14px;
    font-size: 0.93rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
  }

  .review-form-wrap input[type="text"]::placeholder,
  .review-form-wrap textarea::placeholder {
    color: var(--gray);
  }

  .review-form-wrap input[type="text"]:focus,
  .review-form-wrap textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241,90,34,0.15);
  }

  .review-form-wrap textarea {
    min-height: 100px;
    resize: vertical;
  }

  .btn-submit-review {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, transform 0.2s;
    align-self: flex-start;
  }

  .btn-submit-review:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  /* ===== AUTHOR SECTION ===== */
  .author-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 32px;
  }

  .author-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 3px solid rgba(241,90,34,0.4);
  }

  .author-info {
    flex: 1;
  }

  .author-label {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .author-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
  }

  .author-bio {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ===== FOOTER ===== */
  footer {
    background: #161616;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 16px 24px;
    margin-top: 16px;
    position: relative;
  }

  footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: #f2551c;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-brand .casino-name-footer {
    font-size: 1.3rem;
    font-weight: 800;
    color: #daffff;
    margin-bottom: 10px;
  }

  .footer-brand .casino-name-footer span {
    color: var(--orange);
  }

  .footer-brand p {color: rgba(218,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #daffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links li a {
    color: rgba(218,255,255,0.72);
    font-size: 0.85rem;
    transition: color 0.2s;
  }

  .footer-links li a:hover {
    color: #f2551c;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 0.82rem;
    color: rgba(218,255,255,0.65);
  }

  .footer-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-badge {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(218,255,255,0.18);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: rgba(218,255,255,0.7);
    font-weight: 600;
  }

  .footer-age {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .footer-age img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* ===== RESPONSIBLE GAMING BAR ===== */
  .resp-bar {
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px;
  }

  .resp-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .resp-item {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* ===== FLOATING CTA ===== */
  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }

  .floating-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(241,90,34,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .floating-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(241,90,34,0.6);
    color: var(--white);
  }

  /* ===== DIVIDER ===== */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
    margin: 0;
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--dark2);
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ===== MOBILE NAV TOGGLE ===== */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
  }

  /* ===== TRUST BADGES ===== */
  .trust-section {
    background: var(--dark2);
    padding: 24px 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray);
  }

  .trust-icon {
    font-size: 1.3rem;
    color: var(--orange);
  }

  /* Provider of the month carousel (replaces trust-section) */
  .provider-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 32px;
  }

  .provider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 16px 0 12px;
  }

  .provider-title {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--orange);
  }

  .provider-seeall {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    user-select: none;
    cursor: pointer;
  }

  .provider-seeall:hover {
    color: var(--orange-light);
  }

  .provider-carousel {
    position: relative;
  }

  .provider-viewport {
    overflow: hidden;
  }

  .provider-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .provider-track::-webkit-scrollbar {
    display: none;
  }

  .provider-slot {
    flex: 0 0 calc((100% - (14px * 5)) / 6);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    background: #111;
    aspect-ratio: 9 / 16;
    display: block;
    position: relative;
  }

  .provider-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .provider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #3b3b3b;
    border: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    z-index: 3;
  }

  .provider-arrow.prev { left: -10px; }
  .provider-arrow.next { right: -10px; }

  .provider-arrow:active {
    transform: translateY(-50%) scale(0.94);
  }

  .provider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 1024px) {
    .provider-slot { flex-basis: calc((100% - (14px * 3)) / 4); }
    .provider-arrow.prev { left: -6px; }
    .provider-arrow.next { right: -6px; }
  }
  @media (max-width: 768px) {
    .provider-slot { flex-basis: calc((100% - (14px * 2)) / 3); }
  }
  @media (max-width: 480px) {
    .provider-slot { flex-basis: calc((100% - (14px * 1)) / 2); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .mobile-menu-toggle {
      display: block;
    }

    .hero-bonus-box {
      padding: 20px 28px;
    }

    .game-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .content-area {
      padding: 20px;
    }

    .author-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

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

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

    .floating-cta {
      bottom: 12px;
      right: 12px;
    }

    /* Footer mobile layout improvements */
    footer {
      padding: 28px 16px 18px;
    }

    .footer-grid > div {
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-grid > div:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .footer-col-title {
      margin-bottom: 10px;
      font-size: 0.82rem;
      letter-spacing: 0.7px;
    }

    .footer-links {
      gap: 6px;
    }

    .footer-links li a {
      font-size: 0.9rem;
      line-height: 1.35;
    }
  }

  @media (max-width: 480px) {
    .top-nav-inner {
      height: 52px;
    }

    .casino-name-nav {
      font-size: 1.1rem;
    }

    .btn-login {
      display: none;
    }

    .game-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .promo-strip-inner {
      grid-template-columns: 1fr;
    }

    .stats-inner {
      gap: 16px;
    }

    .stat-number {
      font-size: 1.3rem;
    }

    .hero-bonus-box {
      padding: 18px 20px;
    }

    .btn-cta {
      font-size: 0.95rem;
      padding: 14px 28px;
    }

    .floating-cta a {
      padding: 12px 16px;
      font-size: 0.8rem;
    }
  }

  /* ===== UTILITY ===== */
  .text-orange { color: var(--orange); }
  .text-gold { color: var(--gold); }
  .text-gray { color: var(--gray); }
  .mt-0 { margin-top: 0; }
  .mb-0 { margin-bottom: 0; }

  /* ===== BANNER SLIDER DOTS ===== */
  .banner-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px 10px;
    background: transparent;
  }

  .banner-dot {
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s, transform 0.2s, opacity 0.2s;
    opacity: 1;
    cursor: pointer;
  }

  .banner-dot.active {
    background: #f15a22;
    opacity: 1;
  }

  @media (max-width: 980px) {
    .hero-slider {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .hero-slide.side {
      display: none;
    }
    .hero-slide.main {
      width: 100%;
      height: 240px;
    }
  }

  @media (min-width: 981px) and (max-width: 1200px) {
    .hero-slider { --hero-h: 340px; }
  }

  /* ===== SECTION SEPARATOR ===== */
  .section-sep {
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 50%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 20px;
    max-width: 80px;
  }

  /* Links styled as UI controls */
  a.cat-nav-item {
    text-decoration: none;
    color: inherit;
  }

  a.btn-login,
  a.btn-register {
    text-decoration: none;
  }

  a.btn-register:hover {
    color: var(--white);
  }