/**
 * 6999 Gaming Platform - Core Stylesheet
 * Prefix: w2eb0-
 * Palette: #BF360C | #2E4057 | #FFCCCB | #FF9800
 */

/* === CSS Variables === */
:root {
  --w2eb0-primary: #BF360C;
  --w2eb0-secondary: #2E4057;
  --w2eb0-accent: #FF9800;
  --w2eb0-light: #FFCCCB;
  --w2eb0-bg: #1a1a2e;
  --w2eb0-bg2: #16213e;
  --w2eb0-bg3: #0f3460;
  --w2eb0-text: #FFCCCB;
  --w2eb0-text-white: #ffffff;
  --w2eb0-text-muted: #b0b0c0;
  --w2eb0-gold: #FFD700;
  --w2eb0-radius: 8px;
  --w2eb0-radius-lg: 16px;
  --w2eb0-shadow: 0 4px 15px rgba(0,0,0,0.3);
  --w2eb0-transition: all 0.3s ease;
}

/* === Reset & Base === */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--w2eb0-bg);
  color: var(--w2eb0-text);
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--w2eb0-accent);
  transition: var(--w2eb0-transition);
}

a:hover {
  color: var(--w2eb0-gold);
}

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

.w2eb0-wrapper {
  width: 100%;
  overflow: hidden;
}

/* === Header === */
.w2eb0-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--w2eb0-secondary), var(--w2eb0-bg2));
  border-bottom: 2px solid var(--w2eb0-primary);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
}

.w2eb0-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.w2eb0-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--w2eb0-accent);
}

.w2eb0-site-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--w2eb0-accent);
  letter-spacing: 1px;
}

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

.w2eb0-btn-register {
  background: linear-gradient(135deg, var(--w2eb0-primary), #e65100);
  color: var(--w2eb0-text-white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--w2eb0-radius);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--w2eb0-transition);
}

.w2eb0-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(191, 54, 12, 0.6);
}

.w2eb0-btn-login {
  background: transparent;
  color: var(--w2eb0-accent);
  border: 2px solid var(--w2eb0-accent);
  padding: 0.5rem 1.2rem;
  border-radius: var(--w2eb0-radius);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--w2eb0-transition);
}

.w2eb0-btn-login:hover {
  background: var(--w2eb0-accent);
  color: var(--w2eb0-bg);
}

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

/* === Mobile Menu === */
.w2eb0-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--w2eb0-bg2), var(--w2eb0-bg));
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 0;
  border-left: 2px solid var(--w2eb0-primary);
  overflow-y: auto;
}

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

.w2eb0-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}

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

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

.w2eb0-menu-links {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
}

.w2eb0-menu-links li {
  border-bottom: 1px solid rgba(255,152,0,0.15);
}

.w2eb0-menu-links a {
  display: block;
  padding: 1.2rem 2rem;
  color: var(--w2eb0-text);
  font-size: 1.5rem;
  font-weight: 500;
  transition: var(--w2eb0-transition);
}

.w2eb0-menu-links a:hover {
  background: rgba(191,54,12,0.2);
  color: var(--w2eb0-accent);
  padding-left: 2.5rem;
}

/* === Main Content === */
main {
  margin-top: 56px;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

/* === Carousel === */
.w2eb0-carousel {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 var(--w2eb0-radius-lg) var(--w2eb0-radius-lg);
}

.w2eb0-slide {
  display: none;
  width: 100%;
  cursor: pointer;
  position: relative;
}

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

.w2eb0-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.w2eb0-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.w2eb0-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--w2eb0-transition);
  border: none;
}

.w2eb0-dot-active {
  background: var(--w2eb0-accent);
  transform: scale(1.3);
}

/* === Section Titles === */
.w2eb0-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--w2eb0-text-white);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--w2eb0-primary);
  line-height: 1.4;
}

.w2eb0-section-title i {
  color: var(--w2eb0-accent);
  margin-right: 0.5rem;
}

/* === Game Grid === */
.w2eb0-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.w2eb0-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--w2eb0-transition);
  border-radius: var(--w2eb0-radius);
  padding: 0.4rem;
}

.w2eb0-game-item:hover {
  transform: translateY(-3px);
  background: rgba(191,54,12,0.15);
}

.w2eb0-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--w2eb0-radius);
  border: 2px solid rgba(255,152,0,0.2);
  object-fit: cover;
}

.w2eb0-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--w2eb0-text);
  margin-top: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === Category Label === */
.w2eb0-cat-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--w2eb0-accent);
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.w2eb0-cat-label i {
  font-size: 1.6rem;
}

/* === Promo Banner === */
.w2eb0-promo-banner {
  background: linear-gradient(135deg, var(--w2eb0-primary), var(--w2eb0-accent));
  border-radius: var(--w2eb0-radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  cursor: pointer;
  transition: var(--w2eb0-transition);
}

.w2eb0-promo-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255,152,0,0.4);
}

.w2eb0-promo-banner h3 {
  color: var(--w2eb0-text-white);
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.w2eb0-promo-banner p {
  color: var(--w2eb0-light);
  font-size: 1.3rem;
  margin: 0;
}

/* === Info Cards === */
.w2eb0-card {
  background: linear-gradient(135deg, var(--w2eb0-bg2), rgba(15,52,96,0.6));
  border-radius: var(--w2eb0-radius-lg);
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid rgba(255,152,0,0.15);
}

.w2eb0-card h3 {
  color: var(--w2eb0-accent);
  font-size: 1.5rem;
  margin: 0 0 0.8rem;
}

.w2eb0-card p {
  color: var(--w2eb0-text-muted);
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}

/* === Promo Text Link === */
.w2eb0-promo-text {
  color: var(--w2eb0-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--w2eb0-transition);
}

.w2eb0-promo-text:hover {
  color: var(--w2eb0-gold);
}

/* === CTA Button === */
.w2eb0-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--w2eb0-primary), var(--w2eb0-accent));
  color: var(--w2eb0-text-white);
  font-size: 1.6rem;
  font-weight: 800;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: var(--w2eb0-transition);
  border: none;
  box-shadow: 0 4px 15px rgba(191,54,12,0.4);
}

.w2eb0-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px rgba(191,54,12,0.6);
}

/* === Winner List === */
.w2eb0-winners {
  background: var(--w2eb0-bg2);
  border-radius: var(--w2eb0-radius-lg);
  padding: 1rem;
  margin: 1rem 0;
}

.w2eb0-winner-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.2rem;
}

.w2eb0-winner-name {
  color: var(--w2eb0-accent);
  font-weight: 600;
}

.w2eb0-winner-amount {
  color: var(--w2eb0-gold);
  font-weight: 800;
}

/* === Payment Methods === */
.w2eb0-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}

.w2eb0-payment-item {
  background: var(--w2eb0-bg2);
  border: 1px solid rgba(255,152,0,0.2);
  border-radius: var(--w2eb0-radius);
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  color: var(--w2eb0-text);
  text-align: center;
}

/* === Testimonials === */
.w2eb0-testimonial {
  background: var(--w2eb0-bg2);
  border-left: 3px solid var(--w2eb0-accent);
  border-radius: 0 var(--w2eb0-radius) var(--w2eb0-radius) 0;
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
}

.w2eb0-testimonial p {
  font-size: 1.2rem;
  color: var(--w2eb0-text-muted);
  margin: 0 0 0.4rem;
  font-style: italic;
}

.w2eb0-testimonial strong {
  color: var(--w2eb0-accent);
  font-size: 1.1rem;
}

/* === Footer === */
.w2eb0-footer {
  background: linear-gradient(180deg, var(--w2eb0-bg2), #0d0d1a);
  padding: 2rem 1.2rem 3rem;
  margin-top: 2rem;
  border-top: 2px solid var(--w2eb0-primary);
}

.w2eb0-footer-desc {
  font-size: 1.2rem;
  color: var(--w2eb0-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.w2eb0-footer-link {
  background: rgba(191,54,12,0.3);
  color: var(--w2eb0-text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--w2eb0-transition);
  border: 1px solid rgba(255,152,0,0.3);
}

.w2eb0-footer-link:hover {
  background: var(--w2eb0-primary);
  transform: scale(1.05);
}

.w2eb0-footer-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.w2eb0-footer-site-links a {
  color: var(--w2eb0-text-muted);
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  transition: var(--w2eb0-transition);
}

.w2eb0-footer-site-links a:hover {
  color: var(--w2eb0-accent);
}

.w2eb0-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* === Bottom Navigation === */
.w2eb0-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--w2eb0-bg2), #0a0a1a);
  border-top: 2px solid var(--w2eb0-primary);
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0;
}

.w2eb0-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--w2eb0-text-muted);
  cursor: pointer;
  transition: var(--w2eb0-transition);
  padding: 0.4rem;
  position: relative;
}

.w2eb0-bnav-btn i,
.w2eb0-bnav-btn .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
  transition: var(--w2eb0-transition);
}

.w2eb0-bnav-btn span {
  font-size: 1rem;
  white-space: nowrap;
}

.w2eb0-bnav-btn:hover,
.w2eb0-bnav-active {
  color: var(--w2eb0-accent);
}

.w2eb0-bnav-active i,
.w2eb0-bnav-active .material-icons {
  color: var(--w2eb0-accent);
  transform: scale(1.15);
}

.w2eb0-bnav-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 3px;
  background: var(--w2eb0-accent);
  border-radius: 0 0 3px 3px;
  transition: var(--w2eb0-transition);
}

.w2eb0-bnav-active::after {
  transform: translateX(-50%) scaleX(1);
}

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

/* === FAQ Section === */
.w2eb0-faq-item {
  background: var(--w2eb0-bg2);
  border-radius: var(--w2eb0-radius);
  padding: 1rem 1.2rem;
  margin: 0.6rem 0;
  border-left: 3px solid var(--w2eb0-accent);
}

.w2eb0-faq-item h4 {
  color: var(--w2eb0-accent);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.w2eb0-faq-item p {
  color: var(--w2eb0-text-muted);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.5;
}

/* === Content Typography === */
.w2eb0-content-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--w2eb0-text-muted);
  margin: 0.8rem 0;
}

.w2eb0-content-text strong {
  color: var(--w2eb0-accent);
}

.w2eb0-text-center {
  text-align: center;
}

.w2eb0-mt-1 {
  margin-top: 1rem;
}

.w2eb0-mt-2 {
  margin-top: 2rem;
}

.w2eb0-mb-1 {
  margin-bottom: 1rem;
}

.w2eb0-mb-2 {
  margin-bottom: 2rem;
}

/* === App Download Section === */
.w2eb0-app-section {
  background: linear-gradient(135deg, var(--w2eb0-bg3), var(--w2eb0-bg2));
  border-radius: var(--w2eb0-radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  border: 1px solid rgba(255,152,0,0.2);
}

.w2eb0-app-section h3 {
  color: var(--w2eb0-accent);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.w2eb0-app-section p {
  color: var(--w2eb0-text-muted);
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

/* === RTP Table === */
.w2eb0-rtp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.w2eb0-rtp-item {
  background: var(--w2eb0-bg2);
  border-radius: var(--w2eb0-radius);
  padding: 0.8rem;
  text-align: center;
  border: 1px solid rgba(255,152,0,0.1);
}

.w2eb0-rtp-item .w2eb0-rtp-name {
  font-size: 1.1rem;
  color: var(--w2eb0-text);
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w2eb0-rtp-item .w2eb0-rtp-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--w2eb0-gold);
}

/* === Desktop Hide/Show === */
@media (min-width: 769px) {
  .w2eb0-container {
    max-width: 480px;
  }
}

/* === Utility === */
.w2eb0-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,152,0,0.3), transparent);
  margin: 1.5rem 0;
  border: none;
}
