/**
 * ck4 car - Core Stylesheet
 * Class prefix: w1094-
 * Colors: #FFE135 (accent) | #DB7093 (violet red) | #FAFAD2 (text) | #1E1E1E (bg) | #DC143C (crimson)
 * Font: Hind Siliguri
 * Mobile-first design, max-width 430px
 */

:root {
  --w1094-primary: #FFE135;
  --w1094-secondary: #DB7093;
  --w1094-text: #FAFAD2;
  --w1094-bg: #1E1E1E;
  --w1094-accent: #DC143C;
  --w1094-bg-light: #2A2A2A;
  --w1094-bg-card: #333333;
  --w1094-border: #444444;
  --w1094-font: 'Hind Siliguri', sans-serif;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--w1094-font);
  background-color: var(--w1094-bg);
  color: var(--w1094-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--w1094-primary); text-decoration: none; }
a:hover { color: var(--w1094-secondary); }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.w1094-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1E1E1E 0%, #2D2D2D 100%);
  border-bottom: 2px solid var(--w1094-accent);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.4rem;
}

.w1094-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w1094-logo {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.4rem;
}

.w1094-site-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w1094-primary);
  letter-spacing: 0.5px;
}

.w1094-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w1094-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--w1094-font);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 3.4rem;
  min-width: 4.4rem;
}

.w1094-btn-register {
  background: var(--w1094-accent);
  color: #fff;
}
.w1094-btn-register:hover {
  background: #B01030;
  transform: translateY(-1px);
}

.w1094-btn-login {
  background: var(--w1094-primary);
  color: #1E1E1E;
}
.w1094-btn-login:hover {
  background: #E8D020;
  transform: translateY(-1px);
}

.w1094-menu-toggle {
  background: none;
  border: none;
  color: var(--w1094-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ===== MOBILE MENU ===== */
.w1094-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.w1094-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1E1E1E 0%, #2A2A2A 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.w1094-menu-close {
  background: none;
  border: none;
  color: var(--w1094-text);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.w1094-menu-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--w1094-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--w1094-accent);
}

.w1094-menu-section {
  margin-bottom: 1.5rem;
}

.w1094-menu-section-title {
  font-size: 1.2rem;
  color: var(--w1094-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.w1094-menu-link {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--w1094-text);
  font-size: 1.4rem;
  border-radius: 0.4rem;
  transition: background 0.2s;
  margin-bottom: 0.3rem;
}

.w1094-menu-link:hover {
  background: var(--w1094-bg-light);
  color: var(--w1094-primary);
}

/* ===== MAIN CONTENT ===== */
.w1094-main {
  margin-top: 5.4rem;
  padding: 0;
}

/* ===== CAROUSEL ===== */
.w1094-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/7;
}

.w1094-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.w1094-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w1094-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.w1094-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.w1094-dot-active {
  background: var(--w1094-primary);
}

/* ===== SECTIONS ===== */
.w1094-section {
  padding: 2rem 1.2rem;
}

.w1094-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--w1094-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--w1094-accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w1094-section-title .material-icons {
  font-size: 2.2rem;
  color: var(--w1094-accent);
}

/* ===== GAME GRID ===== */
.w1094-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.w1094-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}

.w1094-game-item:hover {
  transform: scale(1.05);
}

.w1094-game-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.6rem;
  object-fit: cover;
  border: 2px solid var(--w1094-border);
  transition: border-color 0.2s;
}

.w1094-game-item:hover .w1094-game-img {
  border-color: var(--w1094-primary);
}

.w1094-game-name {
  font-size: 1.1rem;
  margin-top: 0.3rem;
  color: var(--w1094-text);
  line-height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== CATEGORY TABS ===== */
.w1094-cat-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.6rem 1.2rem;
  -webkit-overflow-scrolling: touch;
}

.w1094-cat-tab {
  padding: 0.5rem 1.2rem;
  background: var(--w1094-bg-card);
  color: var(--w1094-text);
  border-radius: 2rem;
  font-size: 1.2rem;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--w1094-border);
  font-weight: 500;
  transition: all 0.2s;
}

.w1094-cat-tab:hover,
.w1094-cat-tab-active {
  background: var(--w1094-accent);
  color: #fff;
  border-color: var(--w1094-accent);
}

/* ===== CONTENT BLOCKS ===== */
.w1094-content-block {
  background: var(--w1094-bg-card);
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--w1094-accent);
}

.w1094-content-block h3 {
  font-size: 1.5rem;
  color: var(--w1094-primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.w1094-content-block p {
  font-size: 1.3rem;
  line-height: 2rem;
  color: var(--w1094-text);
  margin-bottom: 0.6rem;
}

.w1094-highlight {
  color: var(--w1094-primary);
  font-weight: 600;
}

.w1094-promo-text {
  color: var(--w1094-secondary);
  font-weight: 600;
  cursor: pointer;
}

.w1094-promo-text:hover {
  text-decoration: underline;
}

/* ===== PROMO BANNER ===== */
.w1094-promo-banner {
  background: linear-gradient(135deg, var(--w1094-accent) 0%, #8B0000 100%);
  padding: 1.5rem;
  border-radius: 0.8rem;
  text-align: center;
  margin: 1.2rem 0;
}

.w1094-promo-banner h3 {
  font-size: 1.6rem;
  color: var(--w1094-primary);
  margin-bottom: 0.6rem;
}

.w1094-promo-banner p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.w1094-btn-promo {
  background: var(--w1094-primary);
  color: #1E1E1E;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-block;
  transition: all 0.2s;
}

.w1094-btn-promo:hover {
  background: #E8D020;
  transform: scale(1.05);
}

/* ===== WINNER TABLE ===== */
.w1094-winner-table {
  width: 100%;
  border-collapse: collapse;
}

.w1094-winner-table th {
  background: var(--w1094-bg-light);
  color: var(--w1094-primary);
  padding: 0.6rem 0.8rem;
  font-size: 1.1rem;
  text-align: left;
  border-bottom: 2px solid var(--w1094-accent);
}

.w1094-winner-table td {
  padding: 0.5rem 0.8rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--w1094-border);
}

/* ===== PAYMENT GRID ===== */
.w1094-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.w1094-payment-item {
  background: var(--w1094-bg-light);
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  color: var(--w1094-text);
  border: 1px solid var(--w1094-border);
}

/* ===== PARTNER LOGOS ===== */
.w1094-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 1rem 0;
}

.w1094-partner {
  background: var(--w1094-bg-light);
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  color: var(--w1094-secondary);
  border: 1px solid var(--w1094-border);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.w1094-footer {
  background: var(--w1094-bg-light);
  padding: 2rem 1.2rem;
  padding-bottom: 8rem;
  border-top: 2px solid var(--w1094-accent);
}

.w1094-footer-desc {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.w1094-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.w1094-footer-link {
  color: var(--w1094-text);
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  background: var(--w1094-bg-card);
  border-radius: 0.4rem;
  transition: color 0.2s;
}

.w1094-footer-link:hover {
  color: var(--w1094-primary);
}

.w1094-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: #777;
  margin-top: 1rem;
}

/* ===== BOTTOM NAV ===== */
.w1094-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #2D2D2D 0%, #1E1E1E 100%);
  border-top: 2px solid var(--w1094-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 6rem;
  padding: 0.4rem 0;
}

.w1094-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #888;
  font-size: 1rem;
  cursor: pointer;
  min-width: 5.5rem;
  min-height: 5rem;
  transition: all 0.2s;
  font-family: var(--w1094-font);
  padding: 0.3rem;
}

.w1094-bottom-nav-btn:hover,
.w1094-bottom-nav-btn-active {
  color: var(--w1094-primary);
  transform: scale(1.05);
}

.w1094-bottom-nav-btn i,
.w1094-bottom-nav-btn .material-icons,
.w1094-bottom-nav-btn .bi {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.w1094-bottom-nav-btn span {
  font-size: 0.9rem;
  white-space: nowrap;
}

.w1094-nav-badge {
  position: absolute;
  top: 0.2rem;
  right: 1rem;
  background: var(--w1094-accent);
  color: #fff;
  font-size: 0.9rem;
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===== FAQ ACCORDION ===== */
.w1094-faq-item {
  background: var(--w1094-bg-card);
  border-radius: 0.6rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--w1094-border);
}

.w1094-faq-q {
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--w1094-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}

.w1094-faq-a {
  padding: 0 1.2rem 1rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #ccc;
}

/* ===== TESTIMONIAL ===== */
.w1094-testimonial {
  background: var(--w1094-bg-card);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--w1094-secondary);
}

.w1094-testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #ccc;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.w1094-testimonial-author {
  font-size: 1.1rem;
  color: var(--w1094-primary);
  font-weight: 600;
}

/* ===== FEATURE LIST ===== */
.w1094-feature-list {
  list-style: none;
}

.w1094-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--w1094-border);
}

.w1094-feature-icon {
  color: var(--w1094-accent);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.w1094-feature-text {
  font-size: 1.3rem;
  line-height: 1.8rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
  .w1094-bottom-nav {
    display: none;
  }
  .w1094-main {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
  .w1094-header {
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%);
  }
  .w1094-footer {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
  .w1094-mobile-menu {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .w1094-main {
    padding-bottom: 7rem;
  }
  .w1094-footer {
    padding-bottom: 8rem;
  }
}

/* ===== UTILITY ===== */
.w1094-text-center { text-align: center; }
.w1094-text-sm { font-size: 1.1rem; }
.w1094-mb-1 { margin-bottom: 0.8rem; }
.w1094-mb-2 { margin-bottom: 1.6rem; }
.w1094-mt-1 { margin-top: 0.8rem; }
.w1094-mt-2 { margin-top: 1.6rem; }
.w1094-py-1 { padding-top: 0.8rem; padding-bottom: 0.8rem; }
.w1094-hidden { display: none; }
