:root {
      --sky-blue: #00f2ff;
      --glow-blue: rgba(0, 242, 255, 0.4);
      --bg-main: #0f0f13;
      --card-bg: #1a1a22;
      --border-color: rgba(255, 255, 255, 0.1);
      --accent: #ff4757;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes progressBar {
      from { width: 0%; }
      to   { width: 100%; }
    }

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

    body {
      background-color: var(--bg-main);
      color: #fff;
      font-family: 'Roboto', sans-serif;
      animation: fadeInUp 0.8s ease-out;
    }

    /* ─── STICKY NAVBAR ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0 5%;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 10, 16, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--sky-blue);
      box-shadow: 0 4px 20px var(--glow-blue);
    }

    .header-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .header-brand img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid var(--sky-blue);
    }
    .brand-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 2px;
      color: #fff;
      text-shadow: 0 0 10px var(--sky-blue);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 6px;
    }
    .nav-links a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.88rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 6px;
      transition: 0.25s;
      letter-spacing: 0.5px;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--sky-blue);
      background: rgba(0, 242, 255, 0.08);
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      color: var(--sky-blue);
      font-size: 1.3rem;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: rgba(10,10,16,0.97);
      border-bottom: 1px solid rgba(0,242,255,0.2);
      padding: 12px 5%;
      gap: 4px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      text-decoration: none;
      color: #ccc;
      padding: 10px 14px;
      border-radius: 6px;
      font-size: 0.9rem;
      transition: 0.2s;
    }
    .mobile-nav a:hover { color: var(--sky-blue); background: rgba(0,242,255,0.07); }

    /* ─── SEARCH SECTION ─── */
    .search-section {
      padding: 22px 0 16px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .search-container {
      position: relative;
      max-width: 500px;
      margin: 0 auto;
      padding: 0 15px;
    }
    .search-container input {
      width: 100%;
      padding: 10px 45px 10px 20px;
      background: var(--card-bg);
      border: 1px solid #333;
      border-radius: 8px;
      color: #fff;
      outline: none;
      transition: 0.3s;
      font-size: 0.9rem;
    }
    .search-container input:focus {
      border-color: var(--sky-blue);
      box-shadow: 0 0 15px var(--glow-blue);
    }
    .search-container i {
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      color: #555;
      pointer-events: none;
    }

    /* ─── SLIDER ─── */
    .slider-section {
      padding: 20px 0 28px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .slider-wrapper {
      position: relative;
      width: 90%;
      max-width: 1000px;
      margin: 0 auto;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--sky-blue);
      box-shadow: 0 0 20px rgba(0,242,255,0.15);
    }
    .slides {
      display: flex;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .slide {
      min-width: 100%;
      height: 230px;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-progress {
      height: 3px;
      background: rgba(255,255,255,0.1);
      width: 90%;
      max-width: 1000px;
      margin: 8px auto 0;
    }
    .hero-progress-bar {
      height: 100%;
      background: var(--sky-blue);
      width: 0%;
      animation: progressBar 4.5s linear infinite;
    }

    /* ─── PROMO STRIP ─── */
    .promo-section {
      background: linear-gradient(90deg, rgba(0,242,255,0.08), rgba(0,242,255,0.03));
      border-bottom: 1px solid rgba(0,242,255,0.15);
      padding: 10px 5%;
      text-align: center;
    }
    .promo-content {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: #aaa;
    }
    .promo-content i { color: var(--accent); font-size: 0.9rem; }

    /* ─── FILTER + VIEW TOGGLE ─── */
    .games-search-wrapper {
      max-width: 1200px;
      margin: 22px auto 0;
      padding: 0 5%;
    }

    .search-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }
    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 14px;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      font-size: 0.78rem;
      color: #bbb;
      cursor: pointer;
      transition: 0.25s;
    }
    .filter-chip:hover { border-color: var(--sky-blue); color: var(--sky-blue); }
    .filter-chip.active {
      border-color: var(--sky-blue);
      color: var(--sky-blue);
      background: rgba(0,242,255,0.08);
    }

    .view-toggle {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }
    .view-toggle-btn {
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 6px;
      color: #888;
      cursor: pointer;
      transition: 0.2s;
    }
    .view-toggle-btn.active,
    .view-toggle-btn:hover {
      border-color: var(--sky-blue);
      color: var(--sky-blue);
    }

    /* ─── GAMES GRID ─── */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 18px;
      padding: 0 5%;
      max-width: 1200px;
      margin: 0 auto 30px;
      transition: 0.3s;
    }

    /* List view */
    .games-grid.view-list {
      grid-template-columns: 1fr;
    }
    .games-grid.view-list .game-card {
      flex-direction: row;
      height: 80px;
      align-items: center;
    }
    .games-grid.view-list .game-thumb {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      border-radius: 0;
    }
    .games-grid.view-list .game-body {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      flex: 1;
      padding: 0 14px;
    }
    .games-grid.view-list .game-body h3 { height: auto; margin: 0; font-size: 0.9rem; }
    .games-grid.view-list .game-meta { flex-direction: row; gap: 8px; margin: 0; }
    .games-grid.view-list .dl-btn { margin: 0; padding: 6px 14px; white-space: nowrap; }

    .game-card {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      text-decoration: none;
      color: #fff;
      transition: 0.35s;
      display: flex;
      flex-direction: column;
    }
    .game-card:hover {
      border-color: var(--sky-blue);
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0,242,255,0.12);
    }
    .game-thumb {
      width: 100%;
      height: 130px;
      position: relative;
      overflow: hidden;
    }
    .game-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .game-card:hover .game-thumb img { transform: scale(1.05); }
    .hot-label {
      position: absolute;
      top: 6px;
      left: 6px;
      background: var(--accent);
      font-size: 0.62rem;
      padding: 2px 7px;
      border-radius: 3px;
      font-weight: bold;
      letter-spacing: 0.5px;
      z-index: 2;
    }
    .game-body {
      padding: 10px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .game-body h3 {
      font-size: 0.85rem;
      margin-bottom: 6px;
      height: 2.2em;
      overflow: hidden;
      line-height: 1.2;
    }
    .game-meta {
      font-size: 0.7rem;
      color: #888;
      margin-bottom: 10px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .dl-btn {
      background: var(--sky-blue);
      color: #000;
      padding: 6px;
      border-radius: 6px;
      font-weight: bold;
      font-size: 0.75rem;
      margin-top: auto;
      letter-spacing: 0.5px;
    }

    /* ─── CONTACT SECTION ─── */
    .contact-section {
      max-width: 620px;
      margin: 40px auto;
      padding: 0 5%;
    }
    .contact-wrapper {
      background: var(--card-bg);
      border: 1px solid rgba(0,242,255,0.15);
      border-radius: 16px;
      padding: 36px 32px;
      box-shadow: 0 0 30px rgba(0,242,255,0.05);
    }
    .contact-header {
      text-align: center;
      margin-bottom: 28px;
    }
    .contact-icon {
      font-size: 2rem;
      color: var(--sky-blue);
      margin-bottom: 10px;
      display: block;
    }
    .contact-header h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .contact-header p {
      color: #888;
      font-size: 0.85rem;
    }
    .contact-field {
      position: relative;
      margin-bottom: 14px;
    }
    .contact-field i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #555;
      font-size: 0.85rem;
    }
    .contact-field.textarea-field i { top: 16px; transform: none; }
    .contact-field input,
    .contact-field textarea {
      width: 100%;
      padding: 11px 14px 11px 38px;
      background: rgba(255,255,255,0.04);
      border: 1px solid #333;
      border-radius: 8px;
      color: #fff;
      font-size: 0.88rem;
      outline: none;
      transition: 0.25s;
      font-family: 'Roboto', sans-serif;
      resize: vertical;
    }
    .contact-field input::placeholder,
    .contact-field textarea::placeholder { color: #555; }
    .contact-field input:focus,
    .contact-field textarea:focus {
      border-color: var(--sky-blue);
      box-shadow: 0 0 12px rgba(0,242,255,0.15);
    }
    .contact-submit {
      width: 100%;
      padding: 12px;
      background: var(--sky-blue);
      color: #000;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 0.9rem;
      cursor: pointer;
      transition: 0.25s;
      letter-spacing: 0.5px;
      margin-top: 6px;
    }
    .contact-submit:hover {
      background: #fff;
      box-shadow: 0 0 20px rgba(0,242,255,0.4);
    }
    .contact-hint {
      font-size: 0.72rem;
      color: #555;
      text-align: center;
      margin-top: 10px;
    }

    /* ─── NEWSLETTER ─── */
    .newsletter {
      background: linear-gradient(135deg, rgba(0,242,255,0.06), rgba(0,0,0,0.3));
      border-top: 1px solid rgba(0,242,255,0.12);
      border-bottom: 1px solid rgba(0,242,255,0.12);
      padding: 48px 5%;
      text-align: center;
    }
    .newsletter-container { max-width: 520px; margin: 0 auto; }
    .newsletter h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }
    .newsletter p { color: #888; font-size: 0.88rem; margin-bottom: 22px; }
    .newsletter-form {
      display: flex;
      gap: 8px;
      max-width: 420px;
      margin: 0 auto;
    }
    .newsletter-input {
      flex: 1;
      padding: 11px 16px;
      background: var(--card-bg);
      border: 1px solid #333;
      border-radius: 8px;
      color: #fff;
      outline: none;
      font-size: 0.88rem;
      transition: 0.25s;
    }
    .newsletter-input:focus {
      border-color: var(--sky-blue);
      box-shadow: 0 0 12px rgba(0,242,255,0.15);
    }
    .newsletter-button {
      padding: 11px 22px;
      background: var(--sky-blue);
      color: #000;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 0.85rem;
      cursor: pointer;
      transition: 0.25s;
      white-space: nowrap;
    }
    .newsletter-button:hover {
      background: #fff;
      box-shadow: 0 0 16px rgba(0,242,255,0.35);
    }

    /* ─── TOAST ─── */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: #1a1a22;
      border: 1px solid var(--sky-blue);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transform: translateY(20px);
      transition: 0.35s;
      z-index: 9999;
      pointer-events: none;
      box-shadow: 0 0 20px rgba(0,242,255,0.2);
    }
    .toast.show { opacity: 1; transform: translateY(0); }
    .toast i { color: var(--sky-blue); }

    /* ─── FOOTER ─── */
    footer {
      margin-top: 40px;
      padding: 28px 5%;
      text-align: center;
      border-top: 2px solid var(--sky-blue);
      background: #000;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 2px;
      font-size: 0.95rem;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 700px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
      .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .slide { height: 180px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-button { width: 100%; }
      .contact-wrapper { padding: 24px 18px; }
    }
    /* ─── AD BLOCKER MODAL ─── */
.adblock-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.adblock-overlay.show { display: flex; }

.adblock-card {
  background: #1c1e2e;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  animation: fadeInUp 0.35s ease-out;
}
.adblock-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(220, 60, 60, 0.18);
  border: 2px solid rgba(220,60,60,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.adblock-icon-wrap i { font-size: 1.8rem; color: #e05252; }
.adblock-card h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.adblock-card > p { font-size: 0.85rem; color: #9aa0b8; line-height: 1.6; margin-bottom: 22px; }
.adblock-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; text-align: left; }
.adblock-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 11px 14px;
}
.adblock-step-num {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,210,180,0.15);
  border: 1.5px solid rgba(0,210,180,0.45);
  color: #00d2b4;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adblock-step p { font-size: 0.83rem; color: #c8cde0; line-height: 1.5; margin: 0; }
.adblock-step p strong { color: #fff; }
.adblock-refresh-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00d2b4, #00b89c);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  transition: 0.25s;
}
.adblock-refresh-btn:hover {
  background: linear-gradient(135deg, #00e8c8, #00caa8);
  box-shadow: 0 4px 20px rgba(0,210,180,0.4);
}
.adblock-safe-note { font-size: 0.74rem; color: #5a6080; display: flex; align-items: center; justify-content: center; gap: 5px; }
@keyframes shakeCard {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-6px); }
  80%      { transform: translateX(6px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-6px); }
  80%       { transform: translateX(6px); }
}