/**
 * 899bat.click - Theme Stylesheet
 * CSS class prefix: w75a6-
 */

:root {
  --w75a6-primary: #B22222;
  --w75a6-accent: #FF7F50;
  --w75a6-secondary: #E9967A;
  --w75a6-bg: #3A3A3A;
  --w75a6-bg-dark: #2A2A2A;
  --w75a6-bg-card: #4A4A4A;
  --w75a6-text: #FFFFFF;
  --w75a6-text-muted: #CCCCCC;
  --w75a6-border: #555555;
  --w75a6-radius: 8px;
  --w75a6-radius-lg: 12px;
  --w75a6-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: var(--w75a6-bg);
  color: var(--w75a6-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}

a { color: var(--w75a6-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.w75a6-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 56px;
  background: linear-gradient(135deg, var(--w75a6-bg-dark), var(--w75a6-primary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.w75a6-header-scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.w75a6-logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.w75a6-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.w75a6-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--w75a6-accent);
  letter-spacing: 0.5px;
}
.w75a6-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.w75a6-btn-register {
  background: linear-gradient(135deg, var(--w75a6-accent), #FF6347);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--w75a6-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.w75a6-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(255,127,80,0.4);
}
.w75a6-btn-login {
  background: transparent;
  color: var(--w75a6-accent);
  border: 1.5px solid var(--w75a6-accent);
  padding: 0.55rem 1.1rem;
  border-radius: var(--w75a6-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.w75a6-btn-login:hover {
  background: rgba(255,127,80,0.15);
}
.w75a6-menu-toggle {
  background: none;
  border: none;
  color: var(--w75a6-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ===== MOBILE MENU ===== */
#pro643-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: var(--w75a6-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.pro643-menu-active { right: 0 !important; }
#pro643-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.pro643-overlay-active { display: block !important; }
.pro643-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--w75a6-border);
}
.pro643-menu-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w75a6-accent);
}
.pro643-menu-close {
  background: none;
  border: none;
  color: var(--w75a6-text);
  font-size: 2rem;
  cursor: pointer;
}
.pro643-menu-link {
  display: block;
  padding: 1rem 0;
  color: var(--w75a6-text);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--w75a6-border);
  transition: color 0.2s;
}
.pro643-menu-link:hover {
  color: var(--w75a6-accent);
  text-decoration: none;
}

/* ===== CAROUSEL ===== */
.w75a6-carousel {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 0 0 var(--w75a6-radius-lg) var(--w75a6-radius-lg);
}
.pro643-slide {
  display: none;
  cursor: pointer;
}
.pro643-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.w75a6-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.pro643-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.pro643-dot-active { background: var(--w75a6-accent) !important; }

/* ===== MAIN CONTENT ===== */
.w75a6-main {
  padding: 1.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .w75a6-main { padding-bottom: 80px; }
}

/* ===== SECTION ===== */
.w75a6-section {
  margin-bottom: 2rem;
}
.w75a6-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--w75a6-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--w75a6-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.w75a6-section-title i,
.w75a6-section-title .material-icons {
  font-size: 2rem;
  color: var(--w75a6-primary);
}

/* ===== TAB BUTTONS ===== */
.w75a6-tab-nav {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.w75a6-tab-nav::-webkit-scrollbar { display: none; }
.pro643-tab-btn {
  flex-shrink: 0;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--w75a6-border);
  border-radius: 20px;
  background: transparent;
  color: var(--w75a6-text-muted);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pro643-tab-btn:hover { border-color: var(--w75a6-accent); color: var(--w75a6-accent); }
.pro643-tab-active {
  background: linear-gradient(135deg, var(--w75a6-primary), #D43F3F) !important;
  color: #fff !important;
  border-color: var(--w75a6-primary) !important;
}

/* ===== GAME GRID ===== */
.pro643-game-tab-content {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.w75a6-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--w75a6-radius);
  overflow: hidden;
}
.w75a6-game-item:hover { transform: translateY(-2px); }
.w75a6-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--w75a6-radius);
  border: 2px solid var(--w75a6-border);
  transition: border-color 0.2s;
}
.w75a6-game-item:hover img { border-color: var(--w75a6-accent); }
.w75a6-game-name {
  font-size: 1.1rem;
  color: var(--w75a6-text-muted);
  margin-top: 0.3rem;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== CARD ===== */
.w75a6-card {
  background: var(--w75a6-bg-card);
  border-radius: var(--w75a6-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--w75a6-shadow);
}
.w75a6-card h2 {
  font-size: 1.6rem;
  color: var(--w75a6-accent);
  margin-bottom: 1rem;
}
.w75a6-card h3 {
  font-size: 1.4rem;
  color: var(--w75a6-secondary);
  margin-bottom: 0.8rem;
}
.w75a6-card p {
  color: var(--w75a6-text-muted);
  line-height: 1.8rem;
  margin-bottom: 0.8rem;
}

/* ===== PROMO BUTTON ===== */
.w75a6-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--w75a6-primary), var(--w75a6-accent));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--w75a6-radius);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.w75a6-promo-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(178,34,34,0.4);
  text-decoration: none;
  color: #fff;
}

/* ===== FOOTER ===== */
.w75a6-footer {
  background: var(--w75a6-bg-dark);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  border-top: 2px solid var(--w75a6-primary);
}
.w75a6-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.w75a6-footer-brand h3 {
  font-size: 2rem;
  color: var(--w75a6-accent);
  margin-bottom: 0.5rem;
}
.w75a6-footer-brand p {
  color: var(--w75a6-text-muted);
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.w75a6-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.w75a6-footer-link {
  padding: 0.6rem 1.2rem;
  background: var(--w75a6-bg-card);
  border-radius: var(--w75a6-radius);
  color: var(--w75a6-text);
  font-size: 1.2rem;
  transition: background 0.2s;
}
.w75a6-footer-link:hover {
  background: var(--w75a6-primary);
  text-decoration: none;
  color: #fff;
}
.w75a6-footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.w75a6-footer-promo-btn {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--w75a6-primary), var(--w75a6-accent));
  color: #fff;
  border-radius: var(--w75a6-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}
.w75a6-footer-promo-btn:hover {
  transform: scale(1.03);
  text-decoration: none;
  color: #fff;
}
.w75a6-footer-copy {
  text-align: center;
  color: var(--w75a6-text-muted);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--w75a6-border);
}
.w75a6-footer-site-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.w75a6-footer-site-link {
  color: var(--w75a6-secondary);
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
}
.w75a6-footer-site-link:hover {
  color: var(--w75a6-accent);
}

/* ===== BOTTOM NAVIGATION ===== */
.w75a6-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, var(--w75a6-bg-dark), #1A1A1A);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--w75a6-primary);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}
@media (min-width: 769px) {
  .w75a6-bottom-nav { display: none; }
}
.w75a6-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  color: var(--w75a6-text-muted);
  gap: 2px;
}
.w75a6-nav-item:hover,
.w75a6-nav-item-active {
  color: var(--w75a6-accent);
}
.w75a6-nav-item i,
.w75a6-nav-item .material-icons,
.w75a6-nav-item bi {
  font-size: 22px;
}
.w75a6-nav-item span {
  font-size: 1rem;
  line-height: 1.2rem;
}

/* ===== FAQ SECTION ===== */
.w75a6-faq-item {
  border: 1px solid var(--w75a6-border);
  border-radius: var(--w75a6-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.w75a6-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: var(--w75a6-bg-card);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--w75a6-text);
  transition: background 0.2s;
}
.w75a6-faq-question:hover { background: #555; }
.w75a6-faq-answer {
  display: none;
  padding: 1.2rem 1.5rem;
  background: var(--w75a6-bg);
  color: var(--w75a6-text-muted);
  line-height: 1.8rem;
  font-size: 1.3rem;
}

/* ===== FEATURES LIST ===== */
.w75a6-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--w75a6-border);
}
.w75a6-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--w75a6-primary), var(--w75a6-accent));
  border-radius: 50%;
  font-size: 1.6rem;
  color: #fff;
}
.w75a6-feature-text h3 {
  font-size: 1.4rem;
  color: var(--w75a6-accent);
  margin-bottom: 0.3rem;
}
.w75a6-feature-text p {
  color: var(--w75a6-text-muted);
  font-size: 1.2rem;
  line-height: 1.6rem;
}

/* ===== UTILITIES ===== */
.w75a6-text-center { text-align: center; }
.w75a6-mt-1 { margin-top: 1rem; }
.w75a6-mb-1 { margin-bottom: 1rem; }
.w75a6-mb-2 { margin-bottom: 2rem; }
.w75a6-highlight {
  color: var(--w75a6-accent);
  font-weight: 600;
}
.w75a6-inline-link {
  color: var(--w75a6-secondary);
  text-decoration: underline;
}
.w75a6-inline-link:hover {
  color: var(--w75a6-accent);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
  body { max-width: 430px; }
}
@media (max-width: 768px) {
  .pro643-game-tab-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
  .w75a6-game-name { font-size: 1rem; }
}
