/* 99wim.click - Style Sheet */
/* All classes prefixed with w2808- for namespace isolation */

:root {
  --w2808-primary: #FFA500;
  --w2808-bg: #2D2D2D;
  --w2808-text: #F5F5F5;
  --w2808-gray: #A9A9A9;
  --w2808-dark: #1A1A1A;
  --w2808-card: #3A3A3A;
  --w2808-hover: #E69500;
  --w2808-radius: 1.0rem;
  --w2808-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--w2808-bg);
  color: var(--w2808-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== HEADER ========== */
.w2808-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 5.2rem;
  background: linear-gradient(135deg, var(--w2808-dark) 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  border-bottom: 2px solid var(--w2808-primary);
}

.w2808-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.w2808-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.w2808-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--w2808-primary);
  letter-spacing: 0.5px;
}

.w2808-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w2808-btn-register {
  background: var(--w2808-primary);
  color: var(--w2808-dark);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 2.0rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.w2808-btn-register:hover {
  background: var(--w2808-hover);
}

.w2808-btn-login {
  background: transparent;
  color: var(--w2808-text);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 2.0rem;
  border: 1px solid var(--w2808-gray);
  cursor: pointer;
  transition: border-color 0.2s;
}

.w2808-btn-login:hover {
  border-color: var(--w2808-primary);
  color: var(--w2808-primary);
}

.w2808-hamburger {
  background: none;
  border: none;
  color: var(--w2808-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* ========== OVERLAY ========== */
.w2808-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}

.w2808-overlay-active {
  display: block;
}

/* ========== MOBILE MENU ========== */
.w2808-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--w2808-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
}

.w2808-menu-active {
  right: 0;
}

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

.w2808-menu-list {
  list-style: none;
}

.w2808-menu-list li {
  border-bottom: 1px solid #444;
}

.w2808-menu-list a {
  display: block;
  padding: 1.2rem 0;
  color: var(--w2808-text);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.w2808-menu-list a:hover {
  color: var(--w2808-primary);
}

/* ========== MAIN CONTENT ========== */
.w2808-main {
  padding-top: 5.2rem;
  padding-bottom: 7rem;
  min-height: 100vh;
}

/* ========== CAROUSEL ========== */
.w2808-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.w2808-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.w2808-carousel-slide {
  min-width: 100%;
  position: relative;
}

.w2808-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 430/200;
  object-fit: cover;
}

.w2808-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.w2808-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

/* ========== SECTION TITLES ========== */
.w2808-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--w2808-primary);
  margin: 2rem 0 1rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--w2808-primary);
}

.w2808-section-title i {
  margin-right: 0.5rem;
}

/* ========== GAME GRID ========== */
.w2808-game-section {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.w2808-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

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

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

.w2808-game-item img {
  width: 72px;
  height: 72px;
  border-radius: 1.2rem;
  object-fit: cover;
  border: 2px solid #444;
  transition: border-color 0.2s;
}

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

.w2808-game-name {
  font-size: 1.0rem;
  color: var(--w2808-gray);
  margin-top: 0.3rem;
  line-height: 1.2;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== CONTENT BLOCKS ========== */
.w2808-content-block {
  background: var(--w2808-card);
  border-radius: var(--w2808-radius);
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: var(--w2808-shadow);
}

.w2808-content-block h2 {
  font-size: 1.6rem;
  color: var(--w2808-primary);
  margin-bottom: 1rem;
}

.w2808-content-block h3 {
  font-size: 1.4rem;
  color: var(--w2808-text);
  margin: 1rem 0 0.5rem;
}

.w2808-content-block p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--w2808-gray);
  margin-bottom: 0.8rem;
}

.w2808-content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.w2808-content-block li {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--w2808-gray);
  margin-bottom: 0.4rem;
}

/* ========== CTA BUTTONS ========== */
.w2808-cta-btn {
  display: inline-block;
  background: var(--w2808-primary);
  color: var(--w2808-dark);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 3.0rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.w2808-cta-btn:hover {
  background: var(--w2808-hover);
  transform: translateY(-2px);
}

.w2808-cta-secondary {
  background: transparent;
  color: var(--w2808-primary);
  border: 2px solid var(--w2808-primary);
}

.w2808-cta-secondary:hover {
  background: var(--w2808-primary);
  color: var(--w2808-dark);
}

.w2808-text-link {
  color: var(--w2808-primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.w2808-text-link:hover {
  text-decoration: underline;
}

/* ========== CTA CENTER ========== */
.w2808-cta-center {
  text-align: center;
  padding: 2rem 1rem;
}

/* ========== TESTIMONIALS ========== */
.w2808-testimonial {
  background: var(--w2808-dark);
  border-radius: var(--w2808-radius);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--w2808-primary);
}

.w2808-testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--w2808-primary);
}

.w2808-testimonial-text {
  font-size: 1.2rem;
  color: var(--w2808-gray);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ========== WINNERS TABLE ========== */
.w2808-winners-table {
  width: 100%;
  border-collapse: collapse;
}

.w2808-winners-table th {
  background: var(--w2808-dark);
  color: var(--w2808-primary);
  font-size: 1.1rem;
  padding: 0.6rem;
  text-align: left;
}

.w2808-winners-table td {
  font-size: 1.1rem;
  padding: 0.6rem;
  border-bottom: 1px solid #444;
  color: var(--w2808-gray);
}

/* ========== PAYMENT ICONS ========== */
.w2808-payment-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

.w2808-payment-item {
  background: var(--w2808-dark);
  border-radius: 0.8rem;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  color: var(--w2808-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========== RTP BAR ========== */
.w2808-rtp-bar {
  background: var(--w2808-dark);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w2808-rtp-name {
  font-size: 1.2rem;
  color: var(--w2808-text);
}

.w2808-rtp-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--w2808-primary);
}

/* ========== FOOTER ========== */
.w2808-footer {
  background: var(--w2808-dark);
  padding: 2rem 1rem 1rem;
  text-align: center;
  border-top: 2px solid var(--w2808-primary);
}

.w2808-footer-desc {
  font-size: 1.2rem;
  color: var(--w2808-gray);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.w2808-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.w2808-footer-link {
  color: var(--w2808-primary);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
}

.w2808-footer-link:hover {
  text-decoration: underline;
}

.w2808-footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.w2808-footer-promo-btn {
  background: var(--w2808-primary);
  color: var(--w2808-dark);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 2.0rem;
  border: none;
  cursor: pointer;
}

.w2808-footer-copy {
  font-size: 1.0rem;
  color: #666;
  margin-top: 0.8rem;
}

/* ========== BOTTOM NAV ========== */
.w2808-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #222 0%, var(--w2808-dark) 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--w2808-primary);
}

.w2808-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--w2808-gray);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  text-decoration: none;
  padding: 0.2rem;
}

.w2808-bottom-btn:hover,
.w2808-bottom-btn:active {
  color: var(--w2808-primary);
  transform: scale(1.1);
}

.w2808-bottom-btn-active {
  color: var(--w2808-primary);
}

.w2808-bottom-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}

.w2808-bottom-label {
  font-size: 1.0rem;
  line-height: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .w2808-main {
    padding-bottom: 7rem;
  }
}

@media (min-width: 769px) {
  .w2808-bottom-nav {
    display: none;
  }
}

@media (max-width: 320px) {
  .w2808-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== HELP PAGE STYLES ========== */
.w2808-help-hero {
  background: linear-gradient(135deg, var(--w2808-dark) 0%, #3A3A3A 100%);
  padding: 2rem 1rem;
  text-align: center;
}

.w2808-help-hero h1 {
  font-size: 2.0rem;
  color: var(--w2808-primary);
  margin-bottom: 0.5rem;
}

.w2808-help-hero p {
  font-size: 1.3rem;
  color: var(--w2808-gray);
}

.w2808-faq-item {
  background: var(--w2808-card);
  border-radius: var(--w2808-radius);
  padding: 1.2rem;
  margin: 0.8rem 1rem;
}

.w2808-faq-item h3 {
  font-size: 1.3rem;
  color: var(--w2808-primary);
  margin-bottom: 0.5rem;
}

.w2808-faq-item p {
  font-size: 1.2rem;
  color: var(--w2808-gray);
  line-height: 1.5;
}

.w2808-feature-card {
  background: var(--w2808-card);
  border-radius: var(--w2808-radius);
  padding: 1.2rem;
  margin: 0.8rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.w2808-feature-icon {
  font-size: 2.4rem;
  color: var(--w2808-primary);
  flex-shrink: 0;
}

.w2808-feature-text h3 {
  font-size: 1.3rem;
  color: var(--w2808-text);
  margin-bottom: 0.3rem;
}

.w2808-feature-text p {
  font-size: 1.2rem;
  color: var(--w2808-gray);
  line-height: 1.4;
}
