/**
 * 3888 Angel Number - Main Stylesheet
 * File: css/style-3e96.css
 * Prefix: v6ce-
 * Colors: #0F0F23(bg), #FFFFBA(text), #880E4F(brand), #00FF00(accent), #FFCCCB(soft)
 */

/* Root Variables */
:root {
  --v6ce-bg: #0F0F23;
  --v6ce-bg-light: #1a1a3e;
  --v6ce-bg-card: #16162e;
  --v6ce-text: #FFFFBA;
  --v6ce-text-muted: #b0b0a0;
  --v6ce-brand: #880E4F;
  --v6ce-brand-light: #b01868;
  --v6ce-accent: #00FF00;
  --v6ce-accent-dim: #00cc00;
  --v6ce-soft: #FFCCCB;
  --v6ce-border: #2a2a4a;
  --v6ce-radius: 8px;
  --v6ce-radius-lg: 14px;
  --v6ce-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Reset & Base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--v6ce-bg);
  color: var(--v6ce-text);
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
a {
  color: var(--v6ce-accent);
  text-decoration: none;
}
a:hover {
  color: var(--v6ce-soft);
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}

/* Container */
.v6ce-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}
.v6ce-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.v6ce-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, var(--v6ce-bg) 0%, #1a0a2e 100%);
  border-bottom: 2px solid var(--v6ce-brand);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}
.v6ce-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.v6ce-header-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.v6ce-header-logo span {
  color: var(--v6ce-text);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}
.v6ce-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v6ce-header-actions .v6ce-btn {
  padding: 0.5rem 1.2rem;
  font-size: 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.2s;
}
.v6ce-btn-register {
  background: linear-gradient(135deg, var(--v6ce-accent), var(--v6ce-accent-dim));
  color: var(--v6ce-bg);
}
.v6ce-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0,255,0,0.4);
}
.v6ce-btn-login {
  background: transparent;
  color: var(--v6ce-text);
  border: 1.5px solid var(--v6ce-accent) !important;
}
.v6ce-btn-login:hover {
  background: rgba(0,255,0,0.1);
}
.v6ce-hamburger {
  background: none;
  border: none;
  color: var(--v6ce-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* Mobile Menu */
.v6ce-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 270px;
  height: 100%;
  background: linear-gradient(180deg, #0d0d20 0%, var(--v6ce-bg-light) 100%);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.v6ce-menu-active {
  right: 0 !important;
}
.v6ce-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}
.v6ce-overlay-active {
  display: block !important;
}
.v6ce-mobile-menu h3 {
  color: var(--v6ce-accent);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--v6ce-border);
}
.v6ce-mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--v6ce-text);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--v6ce-border);
  transition: color 0.2s;
}
.v6ce-mobile-menu a:hover {
  color: var(--v6ce-accent);
  text-decoration: none;
}
.v6ce-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--v6ce-text);
  font-size: 2.4rem;
  cursor: pointer;
}

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

/* Carousel */
.v6ce-carousel {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 var(--v6ce-radius-lg) var(--v6ce-radius-lg);
  cursor: pointer;
}
.v6ce-slide {
  display: none;
  width: 100%;
}
.v6ce-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.v6ce-slide:first-child {
  display: block;
}

/* Section Title */
.v6ce-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v6ce-text);
  margin: 1.8rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--v6ce-accent);
}

/* Game Grid */
.v6ce-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0.5rem 0;
}
.v6ce-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 0.4rem;
  border-radius: var(--v6ce-radius);
}
.v6ce-game-item:hover {
  transform: scale(1.05);
  background: rgba(136,14,79,0.15);
}
.v6ce-game-item img {
  width: 60px;
  height: 60px;
  border-radius: var(--v6ce-radius);
  margin-bottom: 0.3rem;
  object-fit: cover;
  border: 2px solid var(--v6ce-border);
  transition: border-color 0.2s;
}
.v6ce-game-item:hover img {
  border-color: var(--v6ce-accent);
}
.v6ce-game-item span {
  font-size: 1.1rem;
  color: var(--v6ce-text-muted);
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Category Badge */
.v6ce-cat-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--v6ce-brand), var(--v6ce-brand-light));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin: 1rem 0 0.5rem;
}

/* Content Card */
.v6ce-card {
  background: var(--v6ce-bg-card);
  border: 1px solid var(--v6ce-border);
  border-radius: var(--v6ce-radius-lg);
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--v6ce-shadow);
}
.v6ce-card h2 {
  font-size: 1.7rem;
  color: var(--v6ce-text);
  margin-bottom: 0.8rem;
}
.v6ce-card h3 {
  font-size: 1.5rem;
  color: var(--v6ce-accent);
  margin: 1rem 0 0.5rem;
}
.v6ce-card p {
  font-size: 1.35rem;
  color: var(--v6ce-text-muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

/* Promo Button */
.v6ce-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v6ce-accent), #00cc66);
  color: var(--v6ce-bg);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,255,0,0.3);
}
.v6ce-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,255,0,0.5);
}
.v6ce-promo-text {
  color: var(--v6ce-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.v6ce-promo-text:hover {
  color: var(--v6ce-soft);
}

/* FAQ */
.v6ce-faq-item {
  background: var(--v6ce-bg-card);
  border: 1px solid var(--v6ce-border);
  border-radius: var(--v6ce-radius);
  padding: 1rem 1.2rem;
  margin: 0.6rem 0;
}
.v6ce-faq-item strong {
  color: var(--v6ce-accent);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.4rem;
}
.v6ce-faq-item p {
  color: var(--v6ce-text-muted);
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Winner List */
.v6ce-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--v6ce-border);
}
.v6ce-winner-item span:first-child {
  color: var(--v6ce-text);
  font-size: 1.3rem;
}
.v6ce-winner-item span:last-child {
  color: var(--v6ce-accent);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Payment Methods */
.v6ce-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  padding: 1rem 0;
}
.v6ce-payment-item {
  background: var(--v6ce-bg-card);
  border: 1px solid var(--v6ce-border);
  border-radius: var(--v6ce-radius);
  padding: 0.8rem 1.4rem;
  font-size: 1.2rem;
  color: var(--v6ce-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Testimonial */
.v6ce-testimonial {
  background: var(--v6ce-bg-card);
  border-left: 3px solid var(--v6ce-brand-light);
  border-radius: 0 var(--v6ce-radius) var(--v6ce-radius) 0;
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
}
.v6ce-testimonial p {
  font-size: 1.25rem;
  color: var(--v6ce-text-muted);
  font-style: italic;
  margin-bottom: 0.4rem;
}
.v6ce-testimonial strong {
  color: var(--v6ce-accent);
  font-size: 1.2rem;
}

/* Bottom Navigation */
.v6ce-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15,15,35,0.95) 0%, #0a0a1a 100%);
  border-top: 2px solid var(--v6ce-brand);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 0.3rem;
}
.v6ce-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--v6ce-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 8px;
  padding: 0.3rem;
}
.v6ce-bottom-nav-btn .v6ce-nav-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.v6ce-bottom-nav-btn span {
  font-size: 1rem;
  line-height: 1;
}
.v6ce-bottom-nav-btn:hover,
.v6ce-bottom-nav-btn:focus {
  color: var(--v6ce-accent);
  background: rgba(0,255,0,0.08);
}
.v6ce-bottom-nav-btn.v6ce-nav-active {
  color: var(--v6ce-accent);
}
.v6ce-bottom-nav-btn.v6ce-nav-active::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--v6ce-accent);
  border-radius: 1px;
  margin-top: 2px;
}

/* Footer */
.v6ce-footer {
  background: linear-gradient(180deg, var(--v6ce-bg) 0%, #080818 100%);
  border-top: 2px solid var(--v6ce-brand);
  padding: 2rem 1rem 3rem;
  text-align: center;
}
.v6ce-footer p {
  font-size: 1.2rem;
  color: var(--v6ce-text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.v6ce-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1rem 0;
}
.v6ce-footer-links a {
  font-size: 1.15rem;
  color: var(--v6ce-text-muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--v6ce-border);
  border-radius: 4px;
  transition: all 0.2s;
}
.v6ce-footer-links a:hover {
  color: var(--v6ce-accent);
  border-color: var(--v6ce-accent);
  text-decoration: none;
}
.v6ce-footer-copy {
  font-size: 1.1rem;
  color: #555;
  margin-top: 1rem;
}

/* Promo Link Buttons Row */
.v6ce-promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1rem 0;
}
.v6ce-promo-row .v6ce-promo-btn {
  font-size: 1.2rem;
  padding: 0.7rem 1.6rem;
}

/* Helper */
.v6ce-text-center {
  text-align: center;
}
.v6ce-mt-1 {
  margin-top: 0.8rem;
}
.v6ce-mt-2 {
  margin-top: 1.6rem;
}
.v6ce-mb-1 {
  margin-bottom: 0.8rem;
}

/* Responsive: Hide bottom nav on desktop */
@media (min-width: 769px) {
  .v6ce-bottom-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .v6ce-main {
    padding-bottom: 80px;
  }
}

/* Desktop navigation */
.v6ce-desktop-nav {
  display: none;
}
@media (min-width: 769px) {
  .v6ce-desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .v6ce-desktop-nav a {
    color: var(--v6ce-text-muted);
    font-size: 1.3rem;
    transition: color 0.2s;
  }
  .v6ce-desktop-nav a:hover {
    color: var(--v6ce-accent);
  }
}
