/**
 * towerrush1xbet.css - Core Stylesheet
 * All classes use prefix: v826-
 * Color Palette: #26A69A (teal) | #00CED1 (dark turquoise) | #0A0A0A (near black) | #00B8D4 (cyan)
 * Mobile-first responsive design
 */

/* === CSS Variables === */
:root {
  --v826-primary: #26A69A;
  --v826-secondary: #00CED1;
  --v826-bg: #0A0A0A;
  --v826-accent: #00B8D4;
  --v826-text: #E0E0E0;
  --v826-text-muted: #9E9E9E;
  --v826-card-bg: #141414;
  --v826-card-border: #1E1E1E;
  --v826-gradient: linear-gradient(135deg, #26A69A 0%, #00B8D4 100%);
  --v826-radius: 8px;
  --v826-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --v826-transition: all 0.3s ease;
}

/* === Reset & Base === */
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--v826-bg);
  color: var(--v826-text);
  line-height: 1.5rem;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--v826-accent); text-decoration: none; transition: var(--v826-transition); }
a:hover { color: var(--v826-secondary); }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.v826-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #0D0D0D 0%, rgba(10,10,10,0.95) 100%);
  border-bottom: 1px solid rgba(38,166,154,0.3);
  padding: 0 1.2rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(10px);
}
.v826-logo-area {
  display: flex; align-items: center; gap: 0.8rem;
}
.v826-logo-area img { width: 28px; height: 28px; border-radius: 6px; }
.v826-logo-area span {
  font-size: 1.5rem; font-weight: 700; color: #fff;
  background: var(--v826-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.v826-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v826-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.4rem; border-radius: 6px; font-size: 1.2rem;
  font-weight: 600; cursor: pointer; border: none;
  transition: var(--v826-transition); min-height: 36px;
}
.v826-btn-register {
  background: var(--v826-gradient); color: #fff;
  box-shadow: 0 2px 8px rgba(38,166,154,0.4);
}
.v826-btn-register:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(38,166,154,0.6); }
.v826-btn-login {
  background: transparent; color: var(--v826-accent);
  border: 1px solid var(--v826-accent);
}
.v826-btn-login:hover { background: rgba(0,184,212,0.1); }
.v826-menu-toggle {
  background: none; border: none; color: var(--v826-text);
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* === Mobile Menu === */
.v826-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
  background: #111; z-index: 9999; transition: right 0.35s ease;
  padding: 2rem 1.6rem; overflow-y: auto;
  border-left: 1px solid rgba(38,166,154,0.2);
}
.v826-menu-active { right: 0 !important; }
.v826-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.v826-overlay-active { opacity: 1; pointer-events: auto; }
.v826-menu-close {
  background: none; border: none; color: var(--v826-text);
  font-size: 2.2rem; cursor: pointer; position: absolute;
  top: 1rem; right: 1.2rem;
}
.v826-menu-links { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.v826-menu-links a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.2rem; border-radius: var(--v826-radius);
  color: var(--v826-text); font-size: 1.4rem; font-weight: 500;
  transition: var(--v826-transition);
}
.v826-menu-links a:hover { background: rgba(38,166,154,0.15); color: var(--v826-primary); }
.v826-menu-links a .material-icons { font-size: 20px; color: var(--v826-accent); }

/* === Main Content === */
.v826-main { padding-top: 56px; }
@media (max-width: 768px) { .v826-main { padding-bottom: 80px; } }

/* === Carousel === */
.v826-carousel {
  position: relative; overflow: hidden; width: 100%;
  aspect-ratio: 16/7; background: #111;
}
.v826-carousel-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.8s ease; cursor: pointer;
}
.v826-slide-active { opacity: 1; }
.v826-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* === Container === */
.v826-container { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }

/* === Section Titles === */
.v826-section-title {
  font-size: 1.8rem; font-weight: 700; color: #fff;
  margin: 2rem 0 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--v826-primary);
}
.v826-section-title span { color: var(--v826-accent); }

/* === Game Grid === */
.v826-game-section { margin: 1.5rem 0; }
.v826-game-section h2 {
  font-size: 1.6rem; font-weight: 700; color: #fff;
  margin: 0 0 1rem; padding-left: 0.4rem;
  border-left: 3px solid var(--v826-primary);
}
.v826-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; padding: 0.4rem 0;
}
.v826-game-card {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: var(--v826-transition);
  border-radius: var(--v826-radius); padding: 0.4rem;
}
.v826-game-card:hover { transform: translateY(-2px); background: rgba(38,166,154,0.1); }
.v826-game-card img {
  width: 64px; height: 64px; border-radius: 12px;
  border: 1px solid var(--v826-card-border);
}
.v826-game-card span {
  font-size: 1rem; color: var(--v826-text-muted);
  text-align: center; margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 72px;
}

/* === Content Blocks === */
.v826-content-block {
  background: var(--v826-card-bg); border-radius: var(--v826-radius);
  padding: 1.6rem; margin: 1.2rem 0;
  border: 1px solid var(--v826-card-border);
}
.v826-content-block h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--v826-primary);
  margin: 0 0 0.8rem;
}
.v826-content-block p {
  font-size: 1.3rem; color: var(--v826-text); line-height: 1.7rem;
  margin: 0 0 0.6rem;
}

/* === Promo Button === */
.v826-promo-btn {
  display: block; width: 100%; padding: 1.2rem;
  background: var(--v826-gradient); color: #fff;
  border: none; border-radius: var(--v826-radius);
  font-size: 1.5rem; font-weight: 700; cursor: pointer;
  text-align: center; transition: var(--v826-transition);
  box-shadow: 0 4px 16px rgba(38,166,154,0.3);
}
.v826-promo-btn:hover { transform: scale(1.02); box-shadow: 0 6px 24px rgba(38,166,154,0.5); }

/* === Promo Text Link === */
.v826-promo-link {
  color: var(--v826-accent); font-weight: 600; cursor: pointer;
  text-decoration: underline; transition: var(--v826-transition);
}
.v826-promo-link:hover { color: var(--v826-secondary); }

/* === Footer === */
.v826-footer {
  background: #080808; border-top: 1px solid rgba(38,166,154,0.2);
  padding: 2rem 1.2rem 3rem; margin-top: 2rem;
}
.v826-footer-desc {
  font-size: 1.2rem; color: var(--v826-text-muted); line-height: 1.6rem;
  margin: 0 0 1.2rem;
}
.v826-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0;
}
.v826-footer-links a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 6px;
  background: rgba(38,166,154,0.1); color: var(--v826-accent);
  font-size: 1.1rem; font-weight: 500; border: 1px solid rgba(38,166,154,0.2);
  transition: var(--v826-transition);
}
.v826-footer-links a:hover { background: rgba(38,166,154,0.25); }
.v826-footer-copy {
  font-size: 1.1rem; color: #555; text-align: center; margin-top: 1.5rem;
  padding-top: 1rem; border-top: 1px solid #1A1A1A;
}

/* === Bottom Navigation === */
.v826-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #0F0F0F 0%, #080808 100%);
  border-top: 1px solid rgba(38,166,154,0.3);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; padding: 0 0.4rem;
  backdrop-filter: blur(10px);
}
.v826-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 60px; min-height: 54px;
  background: none; border: none; cursor: pointer;
  color: var(--v826-text-muted); transition: var(--v826-transition);
  padding: 0.2rem; gap: 0.2rem;
}
.v826-bottom-nav-btn i,
.v826-bottom-nav-btn span.material-icons {
  font-size: 22px; transition: var(--v826-transition);
}
.v826-bottom-nav-btn span.v826-nav-label {
  font-size: 1rem; line-height: 1.2rem;
}
.v826-bottom-nav-btn:hover,
.v826-bottom-nav-btn.v826-nav-active {
  color: var(--v826-primary);
}
.v826-bottom-nav-btn:hover i,
.v826-bottom-nav-btn.v826-nav-active i,
.v826-bottom-nav-btn:hover span.material-icons,
.v826-bottom-nav-btn.v826-nav-active span.material-icons {
  color: var(--v826-accent); transform: scale(1.1);
}
@media (min-width: 769px) { .v826-bottom-nav { display: none; } }

/* === Testimonials === */
.v826-testimonial {
  background: var(--v826-card-bg); border-radius: var(--v826-radius);
  padding: 1.2rem; margin: 0.8rem 0;
  border-left: 3px solid var(--v826-primary);
}
.v826-testimonial p { font-size: 1.2rem; color: var(--v826-text); margin: 0 0 0.4rem; line-height: 1.6rem; }
.v826-testimonial cite { font-size: 1.1rem; color: var(--v826-accent); font-style: normal; }

/* === Winners === */
.v826-winner-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem; border-radius: var(--v826-radius);
  background: rgba(38,166,154,0.05); margin: 0.4rem 0;
}
.v826-winner-item img { width: 40px; height: 40px; border-radius: 50%; }
.v826-winner-info { flex: 1; }
.v826-winner-info span { display: block; font-size: 1.1rem; color: var(--v826-text-muted); }
.v826-winner-info strong { color: #4CAF50; font-size: 1.3rem; }

/* === Payment Methods === */
.v826-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.8rem 0;
}
.v826-payment-item {
  padding: 0.5rem 1rem; border-radius: 6px;
  background: rgba(0,184,212,0.08); border: 1px solid rgba(0,184,212,0.15);
  font-size: 1.1rem; color: var(--v826-accent);
}

/* === Achievements Grid === */
.v826-achieve-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.v826-achieve-item {
  background: rgba(38,166,154,0.08); border-radius: var(--v826-radius);
  padding: 0.8rem; text-align: center;
}
.v826-achieve-item strong { display: block; font-size: 1.6rem; color: var(--v826-primary); }
.v826-achieve-item span { font-size: 1rem; color: var(--v826-text-muted); }

/* === Help Page Content === */
.v826-help-section { margin: 1.4rem 0; }
.v826-help-section h2 {
  font-size: 1.6rem; color: var(--v826-primary); margin: 0 0 0.8rem;
}
.v826-help-section h3 {
  font-size: 1.4rem; color: var(--v826-accent); margin: 1rem 0 0.5rem;
}
.v826-help-section p {
  font-size: 1.3rem; color: var(--v826-text); line-height: 1.7rem; margin: 0 0 0.6rem;
}
.v826-help-section ul, .v826-help-section ol {
  padding-left: 2rem; margin: 0.5rem 0;
}
.v826-help-section li {
  font-size: 1.3rem; color: var(--v826-text); line-height: 1.7rem; margin: 0.3rem 0;
}

/* === FAQ Accordion === */
.v826-faq-item {
  background: var(--v826-card-bg); border-radius: var(--v826-radius);
  margin: 0.6rem 0; overflow: hidden;
  border: 1px solid var(--v826-card-border);
}
.v826-faq-q {
  padding: 1rem 1.2rem; font-size: 1.3rem; font-weight: 600;
  color: #fff; cursor: pointer; display: flex;
  align-items: center; gap: 0.6rem;
}
.v826-faq-q::before {
  content: '+'; font-size: 1.6rem; color: var(--v826-accent);
  font-weight: 400; flex-shrink: 0;
}
.v826-faq-a {
  padding: 0 1.2rem 1rem; font-size: 1.2rem;
  color: var(--v826-text-muted); line-height: 1.6rem;
}

/* === Desktop Navigation === */
.v826-desktop-nav {
  display: none;
  gap: 1.2rem; align-items: center;
}
@media (min-width: 769px) {
  .v826-desktop-nav { display: flex; }
  .v826-menu-toggle { display: none; }
  .v826-header { padding: 0 2rem; }
  .v826-container { max-width: 800px; }
  .v826-game-grid { grid-template-columns: repeat(6, 1fr); }
  .v826-footer { padding: 2rem 2rem 3rem; }
  main { padding-bottom: 0 !important; }
}
.v826-desktop-nav a {
  color: var(--v826-text-muted); font-size: 1.2rem; font-weight: 500;
  transition: var(--v826-transition);
}
.v826-desktop-nav a:hover { color: var(--v826-accent); }
