/* ============================================================
 * cwin26.click - Core stylesheet (design-9b47.css)
 * All custom classes use the "v755-" prefix.
 * Palette: #DAA520 | #87CEFA | #0C0C0C | #00BFFF | #999999 | #FFEBCD
 * Mobile-first HTML5 layout (max-width 430px on root container).
 * ============================================================ */

:root {
  --v755-gold: #DAA520;
  --v755-sky: #87CEFA;
  --v755-dark: #0C0C0C;
  --v755-blue: #00BFFF;
  --v755-gray: #999999;
  --v755-cream: #FFEBCD;
  --v755-bg: #0C0C0C;
  --v755-surface: #141414;
  --v755-surface2: #1d1d1d;
  --v755-text: #FFEBCD;
  --v755-muted: #999999;
  --v755-primary: #DAA520;
  --v755-accent: #00BFFF;
  --v755-border: rgba(218, 165, 32, 0.22);
  --v755-radius: 14px;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--v755-bg);
  color: var(--v755-text);
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: var(--v755-sky); text-decoration: none; }
a:hover { color: var(--v755-gold); }

.v755-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background: var(--v755-bg);
  min-height: 100vh;
}

/* -----------------------------------------------------------
 * Header / Top navigation
 * --------------------------------------------------------- */
.v755-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(12,12,12,0.96), rgba(12,12,12,0.88));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--v755-border);
}

.v755-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  min-height: 56px;
}

.v755-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--v755-gold);
  font-weight: 700;
  font-size: 1.7rem;
}

.v755-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--v755-gold);
}

.v755-brand-name { color: var(--v755-gold); letter-spacing: 0.4px; }
.v755-brand-name span { color: var(--v755-blue); }

.v755-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v755-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  min-height: 38px;
  font-family: inherit;
}

.v755-btn:hover { transform: translateY(-1px); }
.v755-btn:active { transform: scale(0.97); }

.v755-btn-login {
  background: transparent;
  color: var(--v755-cream);
  border: 1px solid var(--v755-gray);
}

.v755-btn-register {
  background: linear-gradient(135deg, var(--v755-gold), #f0c040);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(218,165,32,0.35);
}

.v755-btn-cta {
  background: linear-gradient(135deg, var(--v755-blue), var(--v755-sky));
  color: #0C0C0C;
  box-shadow: 0 4px 14px rgba(0,191,255,0.35);
  width: 100%;
  padding: 1.1rem 1.4rem;
  font-size: 1.55rem;
}

.v755-menu-toggle {
  background: transparent;
  border: 1px solid var(--v755-border);
  color: var(--v755-gold);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
}

/* -----------------------------------------------------------
 * Mobile dropdown menu
 * --------------------------------------------------------- */
.v755-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: opacity 0.25s ease;
}

.v755-backdrop-show { opacity: 1; visibility: visible; }

.v755-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: var(--v755-surface);
  z-index: 9999;
  transform: translateX(105%);
  transition: transform 0.28s ease;
  padding: 5rem 1.4rem 2rem;
  overflow-y: auto;
  border-left: 1px solid var(--v755-border);
}

.v755-menu-open { transform: translateX(0); }

.v755-mobile-menu h3 {
  color: var(--v755-gold);
  font-size: 1.4rem;
  margin: 1.2rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v755-mobile-menu a {
  display: block;
  padding: 0.9rem 0.6rem;
  color: var(--v755-cream);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.4rem;
}

.v755-mobile-menu a:hover { color: var(--v755-blue); padding-left: 1rem; }

.v755-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--v755-cream);
  font-size: 2rem;
  cursor: pointer;
}

/* -----------------------------------------------------------
 * Main / sections
 * --------------------------------------------------------- */
main.v755-main {
  padding-top: 70px;
  padding-bottom: 90px;
}

.v755-section {
  padding: 1.8rem 1.2rem 0.4rem;
}

.v755-section-alt { background: var(--v755-surface); }

.v755-section-title {
  font-size: 1.85rem;
  color: var(--v755-gold);
  margin: 0 0 0.4rem;
  font-weight: 800;
}

.v755-section-title span { color: var(--v755-blue); }

.v755-section-sub {
  color: var(--v755-muted);
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
}

.v755-text-muted { color: var(--v755-muted); }

/* -----------------------------------------------------------
 * Hero carousel
 * --------------------------------------------------------- */
.v755-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  margin-bottom: 0.6rem;
}

.v755-slides { position: relative; }

.v755-slide {
  display: none;
  position: relative;
  cursor: pointer;
}

.v755-slide-active { display: block; }

.v755-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0 0 18px 18px;
}

.v755-slide-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1.4rem;
  right: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.v755-slide-overlay h2 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
  color: var(--v755-gold);
}

.v755-slide-overlay p {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  color: var(--v755-cream);
}

.v755-slide-overlay .v755-btn { padding: 0.55rem 1.2rem; font-size: 1.25rem; }

.v755-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
}

.v755-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v755-gray);
  cursor: pointer;
}

.v755-dot-active { background: var(--v755-gold); width: 22px; border-radius: 4px; }

/* -----------------------------------------------------------
 * Filter tabs
 * --------------------------------------------------------- */
.v755-filter {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.6rem 1.2rem;
  scrollbar-width: none;
}
.v755-filter::-webkit-scrollbar { display: none; }

.v755-filter-tab {
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--v755-surface2);
  color: var(--v755-cream);
  font-size: 1.25rem;
  border: 1px solid var(--v755-border);
  cursor: pointer;
  white-space: nowrap;
}

.v755-filter-tab-active {
  background: linear-gradient(135deg, var(--v755-gold), #f0c040);
  color: #1a1a1a;
  border-color: transparent;
}

/* -----------------------------------------------------------
 * Game grid
 * --------------------------------------------------------- */
.v755-game-group { margin-bottom: 0.6rem; }

.v755-group-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.2rem 0 0.8rem;
  padding: 0 1.2rem;
}

.v755-group-head h2 {
  font-size: 1.55rem;
  color: var(--v755-gold);
  margin: 0;
}

.v755-group-head .v755-group-icon { color: var(--v755-blue); font-size: 1.7rem; }

.v755-group-head .v755-group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--v755-border), transparent);
}

.v755-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0 1.2rem;
}

.v755-card {
  background: var(--v755-surface);
  border: 1px solid var(--v755-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
  text-align: center;
  padding-bottom: 0.5rem;
}

.v755-card:hover {
  transform: translateY(-2px);
  border-color: var(--v755-gold);
  box-shadow: 0 6px 18px rgba(218,165,32,0.18);
}

.v755-card:active { transform: scale(0.96); }

.v755-card img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  background: #000;
}

.v755-card-name {
  display: block;
  font-size: 1.1rem;
  color: var(--v755-cream);
  padding: 0.35rem 0.3rem 0;
  line-height: 1.25;
  min-height: 32px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* -----------------------------------------------------------
 * Info / feature / promo boxes
 * --------------------------------------------------------- */
.v755-card-info {
  background: var(--v755-surface);
  border-radius: var(--v755-radius);
  padding: 1.2rem;
  border: 1px solid var(--v755-border);
  margin-bottom: 1rem;
}

.v755-card-info h3 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  color: var(--v755-gold);
}

.v755-card-info p {
  margin: 0 0 0.6rem;
  color: var(--v755-cream);
  font-size: 1.32rem;
}

.v755-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  padding: 0 1.2rem;
}

.v755-feature {
  background: var(--v755-surface);
  border: 1px solid var(--v755-border);
  border-radius: 12px;
  padding: 1rem 0.8rem;
  text-align: center;
}

.v755-feature i, .v755-feature .material-icons-outlined {
  color: var(--v755-blue);
  font-size: 2.2rem;
}

.v755-feature h4 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.3rem;
  color: var(--v755-gold);
}

.v755-feature p {
  margin: 0;
  font-size: 1.15rem;
  color: var(--v755-muted);
}

/* -----------------------------------------------------------
 * Steps list
 * --------------------------------------------------------- */
.v755-steps { padding: 0 1.2rem; list-style: none; margin: 0; }
.v755-steps li {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 2.8rem;
  margin-bottom: 0.6rem;
  background: var(--v755-surface);
  border-left: 3px solid var(--v755-gold);
  border-radius: 8px;
  color: var(--v755-cream);
  font-size: 1.3rem;
}
.v755-steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0.6rem;
  top: 0.55rem;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--v755-blue);
  color: #0C0C0C;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v755-steps { counter-reset: step; }

/* -----------------------------------------------------------
 * FAQ accordion
 * --------------------------------------------------------- */
.v755-faq-item {
  background: var(--v755-surface);
  border: 1px solid var(--v755-border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.v755-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--v755-cream);
  font-size: 1.35rem;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-family: inherit;
}

.v755-faq-q i { color: var(--v755-gold); transition: transform 0.2s ease; }

.v755-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  color: var(--v755-muted);
  font-size: 1.25rem;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.v755-faq-open .v755-faq-a { max-height: 320px; padding: 0 1rem 1rem; }
.v755-faq-open .v755-faq-q i { transform: rotate(45deg); }

/* -----------------------------------------------------------
 * Testimonials / winners
 * --------------------------------------------------------- */
.v755-testi {
  background: var(--v755-surface);
  border: 1px solid var(--v755-border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.7rem;
}
.v755-testi-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.v755-testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--v755-gold), var(--v755-blue));
  display: flex; align-items: center; justify-content: center;
  color: #0C0C0C; font-weight: 700; font-size: 1.4rem;
}
.v755-testi-name { color: var(--v755-gold); font-weight: 700; font-size: 1.3rem; }
.v755-testi-stars { color: var(--v755-gold); font-size: 1.1rem; margin-left: auto; }
.v755-testi p { margin: 0; color: var(--v755-cream); font-size: 1.25rem; }

/* -----------------------------------------------------------
 * Payment / app badges
 * --------------------------------------------------------- */
.v755-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.6rem 1.2rem;
}
.v755-pay {
  background: var(--v755-surface2);
  border: 1px solid var(--v755-border);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  color: var(--v755-cream);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.v755-pay i { color: var(--v755-blue); }

.v755-app-row {
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
}
.v755-app-badge {
  flex: 1;
  background: var(--v755-surface2);
  border: 1px solid var(--v755-border);
  border-radius: 10px;
  padding: 0.7rem;
  text-align: center;
  color: var(--v755-cream);
  font-size: 1.15rem;
  cursor: pointer;
}
.v755-app-badge i { color: var(--v755-gold); font-size: 1.7rem; display: block; }

/* -----------------------------------------------------------
 * Promo link inline styles
 * --------------------------------------------------------- */
.v755-link-promo {
  color: var(--v755-gold);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px dashed var(--v755-gold);
}
.v755-link-promo:hover { color: var(--v755-blue); border-bottom-color: var(--v755-blue); }

/* -----------------------------------------------------------
 * Footer
 * --------------------------------------------------------- */
.v755-footer {
  background: #060606;
  border-top: 1px solid var(--v755-border);
  padding: 1.6rem 1.2rem 2.2rem;
  margin-top: 1.4rem;
  color: var(--v755-muted);
}

.v755-footer-brand {
  color: var(--v755-gold);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.v755-footer p { font-size: 1.2rem; line-height: 1.55; margin: 0 0 0.8rem; color: var(--v755-cream); }

.v755-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.v755-footer-promos .v755-btn {
  padding: 0.55rem 1rem;
  font-size: 1.2rem;
}

.v755-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0.8rem;
  margin: 0.8rem 0;
}
.v755-footer-links a { font-size: 1.18rem; color: var(--v755-sky); }
.v755-footer-links a:hover { color: var(--v755-gold); }

.v755-copyright {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 1rem;
  padding-top: 0.9rem;
  font-size: 1.1rem;
  color: var(--v755-muted);
  text-align: center;
}

/* -----------------------------------------------------------
 * Bottom navigation (mobile only)
 * --------------------------------------------------------- */
.v755-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
  height: 62px;
  background: linear-gradient(180deg, rgba(20,20,20,0.98), rgba(8,8,8,0.99));
  border-top: 1px solid var(--v755-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 0.3rem 0;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.4);
}

.v755-bottomnav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--v755-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 60px;
  min-height: 58px;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease;
}

.v755-bottomnav-btn i,
.v755-bottomnav-btn .material-icons-outlined {
  font-size: 22px;
}

.v755-bottomnav-btn span {
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.v755-bottomnav-btn:active { transform: scale(0.92); }

.v755-bottomnav-btn:hover { color: var(--v755-sky); }

.v755-bottomnav-active { color: var(--v755-gold); }

.v755-bottomnav-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--v755-gold);
}

/* -----------------------------------------------------------
 * Desktop rules - hide bottom nav, widen container feel
 * --------------------------------------------------------- */
@media (min-width: 769px) {
  .v755-bottomnav { display: none; }
  main.v755-main { padding-bottom: 40px; }
  .v755-grid { grid-template-columns: repeat(4, 1fr); }
  .v755-container { box-shadow: 0 0 40px rgba(0,0,0,0.6); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
