/* xx99.homes - Core Stylesheet */
/* Prefix: sfe1- | Palette: #AD1457 #00CED1 #0A0A0A #FF1493 #00FFFF */
/* Dark = background, Light = text */

:root {
  --sfe1-primary: #AD1457;
  --sfe1-cyan: #00CED1;
  --sfe1-bg: #0A0A0A;
  --sfe1-hot: #FF1493;
  --sfe1-aqua: #00FFFF;
  --sfe1-text: #FFFFFF;
  --sfe1-muted: #B5B5B5;
  --sfe1-card: #161016;
  --sfe1-card-2: #1F1420;
  --sfe1-border: #2A1D2A;
  --sfe1-header-grad: linear-gradient(135deg, #0A0A0A 0%, #2A0B1D 55%, #AD1457 100%);
  --sfe1-cta-grad: linear-gradient(135deg, #AD1457 0%, #FF1493 100%);
  font-size: 62.5%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--sfe1-bg);
  color: var(--sfe1-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}
a { color: var(--sfe1-cyan); text-decoration: none; }
img { max-width: 100%; display: block; }

/* Container & Layout */
.sfe1-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.sfe1-wrapper { padding: 1.5rem 1.2rem; }
.sfe1-grid { display: grid; gap: 1rem; }

/* Header */
.sfe1-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: var(--sfe1-header-grad);
  z-index: 1000;
  padding: 0.6rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--sfe1-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.sfe1-logo { display: flex; align-items: center; gap: 0.55rem; }
.sfe1-logo img { width: 30px; height: 30px; border-radius: 7px; }
.sfe1-logo-text { font-size: 1.7rem; font-weight: 800; color: var(--sfe1-aqua); letter-spacing: 0.5px; }
.sfe1-header-actions { display: flex; align-items: center; gap: 0.45rem; }
.sfe1-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.1rem; border: none; border-radius: 24px;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s ease; min-height: 36px;
}
.sfe1-btn-primary { background: var(--sfe1-hot); color: #fff; }
.sfe1-btn-primary:hover { background: var(--sfe1-primary); transform: scale(1.06); }
.sfe1-btn-outline { background: transparent; color: var(--sfe1-cyan); border: 1.5px solid var(--sfe1-cyan); }
.sfe1-btn-outline:hover { background: var(--sfe1-cyan); color: var(--sfe1-bg); }
.sfe1-btn-cta { background: var(--sfe1-cta-grad); color: #fff; padding: 0.9rem 1.6rem; font-size: 1.35rem; }
.sfe1-btn-cta:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(255,20,147,0.45); }
.sfe1-menu-toggle {
  background: transparent; border: none; color: var(--sfe1-cyan);
  font-size: 2rem; cursor: pointer; padding: 0.4rem; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.sfe1-mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,10,10,0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
.sfe1-mobile-menu.sfe1-active { transform: translateX(0); }
.sfe1-mobile-menu-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: transparent; border: none; color: var(--sfe1-hot);
  font-size: 2.4rem; cursor: pointer; min-width: 44px; min-height: 44px;
}
.sfe1-mobile-menu-title { color: var(--sfe1-aqua); font-size: 1.8rem; margin-bottom: 1.5rem; font-weight: 700; }
.sfe1-mobile-menu-list { list-style: none; }
.sfe1-mobile-menu-list li { margin-bottom: 0.7rem; }
.sfe1-mobile-menu-list a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.2rem; background: var(--sfe1-card);
  border: 1px solid var(--sfe1-border); border-radius: 8px;
  color: var(--sfe1-text); font-size: 1.4rem; font-weight: 500;
  transition: all 0.2s;
}
.sfe1-mobile-menu-list a:hover { border-color: var(--sfe1-cyan); color: var(--sfe1-cyan); }
.sfe1-mobile-menu-list i, .sfe1-mobile-menu-list .material-icons, .sfe1-mobile-menu-list .bi { font-size: 1.8rem; color: var(--sfe1-hot); width: 24px; text-align: center; }

/* Main */
main { padding-top: 5.2rem; }
@media (max-width: 768px) { main { padding-bottom: 80px; } }

/* Carousel */
.sfe1-carousel {
  position: relative; width: 100%; max-width: 430px; margin: 0 auto 1.2rem;
  overflow: hidden; border-radius: 12px; aspect-ratio: 16/9;
  border: 1px solid var(--sfe1-border);
}
.sfe1-carousel-slides { display: flex; transition: transform 0.5s ease; height: 100%; }
.sfe1-carousel-slide { min-width: 100%; height: 100%; position: relative; cursor: pointer; }
.sfe1-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.sfe1-carousel-dots {
  position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.sfe1-carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; border: none; padding: 0; }
.sfe1-carousel-dot.sfe1-active { background: var(--sfe1-hot); }

/* Sections */
.sfe1-section { padding: 1.5rem 1.2rem; }
.sfe1-section-title {
  font-size: 1.8rem; font-weight: 800; color: var(--sfe1-aqua);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sfe1-primary);
  display: flex; align-items: center; gap: 0.6rem;
}
.sfe1-section-title i, .sfe1-section-title .material-icons, .sfe1-section-title .bi { color: var(--sfe1-hot); font-size: 2rem; }
.sfe1-category-tag {
  display: inline-block; padding: 0.35rem 1rem; border-radius: 14px;
  background: var(--sfe1-primary); color: #fff; font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.9rem;
}

/* Game Grid */
.sfe1-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.sfe1-game-card {
  background: var(--sfe1-card); border: 1px solid var(--sfe1-border);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: all 0.25s ease; position: relative;
}
.sfe1-game-card:hover { border-color: var(--sfe1-hot); transform: translateY(-3px); box-shadow: 0 6px 14px rgba(255,20,147,0.3); }
.sfe1-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.sfe1-game-name {
  padding: 0.5rem 0.4rem; font-size: 1.1rem; color: var(--sfe1-text);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 500;
}
.sfe1-game-card:hover .sfe1-game-name { color: var(--sfe1-cyan); }
.sfe1-game-badge {
  position: absolute; top: 4px; left: 4px;
  background: var(--sfe1-hot); color: #fff;
  font-size: 0.9rem; padding: 0.15rem 0.45rem; border-radius: 4px; font-weight: 700;
}

/* Content blocks */
.sfe1-content-block { background: var(--sfe1-card); border: 1px solid var(--sfe1-border); border-radius: 10px; padding: 1.2rem; margin-bottom: 1rem; }
.sfe1-content-block h2 { color: var(--sfe1-cyan); font-size: 1.6rem; margin-bottom: 0.6rem; }
.sfe1-content-block h3 { color: var(--sfe1-hot); font-size: 1.4rem; margin: 0.9rem 0 0.4rem; }
.sfe1-content-block p { color: var(--sfe1-text); margin-bottom: 0.6rem; font-size: 1.3rem; }
.sfe1-content-block ul, .sfe1-content-block ol { padding-left: 1.8rem; margin-bottom: 0.6rem; }
.sfe1-content-block li { color: var(--sfe1-text); margin-bottom: 0.35rem; font-size: 1.3rem; }

/* Promo links & CTA */
.sfe1-promo-link { color: var(--sfe1-hot); font-weight: 700; cursor: pointer; text-decoration: underline; }
.sfe1-promo-link:hover { color: var(--sfe1-aqua); }
.sfe1-cta-banner {
  background: var(--sfe1-cta-grad); padding: 1.5rem; border-radius: 12px; text-align: center; margin: 1rem 0;
}
.sfe1-cta-banner h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.5rem; }
.sfe1-cta-banner p { color: #fff; margin-bottom: 0.9rem; font-size: 1.3rem; }

/* Testimonials */
.sfe1-testimonial { background: var(--sfe1-card); border-left: 3px solid var(--sfe1-hot); padding: 1rem; border-radius: 6px; margin-bottom: 0.8rem; }
.sfe1-testimonial-text { color: var(--sfe1-text); font-style: italic; margin-bottom: 0.5rem; font-size: 1.3rem; }
.sfe1-testimonial-author { color: var(--sfe1-cyan); font-weight: 700; font-size: 1.2rem; }
.sfe1-testimonial-stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 0.3rem; }

/* Payment methods */
.sfe1-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.sfe1-payment-item {
  background: var(--sfe1-card); border: 1px solid var(--sfe1-border);
  border-radius: 8px; padding: 0.8rem 0.3rem; text-align: center;
  font-size: 1rem; color: var(--sfe1-cyan);
}
.sfe1-payment-item i, .sfe1-payment-item .material-icons, .sfe1-payment-item .bi { font-size: 1.9rem; display: block; margin-bottom: 0.3rem; color: var(--sfe1-hot); }

/* Winners */
.sfe1-winner-list { list-style: none; }
.sfe1-winner-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0.9rem; background: var(--sfe1-card);
  border: 1px solid var(--sfe1-border); border-radius: 6px; margin-bottom: 0.5rem;
}
.sfe1-winner-name { color: var(--sfe1-cyan); font-weight: 600; font-size: 1.2rem; }
.sfe1-winner-amount { color: var(--sfe1-aqua); font-weight: 800; font-size: 1.3rem; }
.sfe1-winner-game { color: var(--sfe1-muted); font-size: 1rem; display: block; }

/* Features list */
.sfe1-feature-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.sfe1-feature-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--sfe1-card); border: 1px solid var(--sfe1-border);
  border-radius: 8px; padding: 0.9rem;
}
.sfe1-feature-icon { font-size: 2rem; color: var(--sfe1-hot); min-width: 28px; }
.sfe1-feature-text h4 { color: var(--sfe1-cyan); font-size: 1.35rem; margin-bottom: 0.2rem; }
.sfe1-feature-text p { color: var(--sfe1-text); font-size: 1.25rem; margin: 0; }

/* App download CTA */
.sfe1-app-cta {
  background: linear-gradient(135deg, #001F2E 0%, #0A0A0A 100%);
  border: 1px solid var(--sfe1-cyan); border-radius: 12px;
  padding: 1.3rem; text-align: center; margin: 1rem 0;
}
.sfe1-app-cta h3 { color: var(--sfe1-aqua); font-size: 1.6rem; margin-bottom: 0.4rem; }
.sfe1-app-cta p { color: var(--sfe1-text); margin-bottom: 0.9rem; font-size: 1.3rem; }
.sfe1-app-buttons { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }

/* Footer */
.sfe1-footer {
  background: #050505; border-top: 2px solid var(--sfe1-primary);
  padding: 2rem 1.2rem 5rem; margin-top: 2rem;
}
.sfe1-footer-brand { color: var(--sfe1-text); font-size: 1.3rem; line-height: 1.6; margin-bottom: 1.2rem; }
.sfe1-footer-brand strong { color: var(--sfe1-aqua); }
.sfe1-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.sfe1-footer-link {
  padding: 0.5rem 1rem; background: var(--sfe1-card); border: 1px solid var(--sfe1-border);
  border-radius: 20px; color: var(--sfe1-cyan); font-size: 1.1rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.sfe1-footer-link:hover { border-color: var(--sfe1-hot); color: var(--sfe1-hot); }
.sfe1-footer-bottom { color: var(--sfe1-muted); font-size: 1.1rem; border-top: 1px solid var(--sfe1-border); padding-top: 1rem; }

/* Mobile Bottom Nav */
.sfe1-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 62px;
  background: linear-gradient(180deg, #181018 0%, #0A0A0A 100%);
  border-top: 1px solid var(--sfe1-primary);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.7);
}
.sfe1-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--sfe1-muted);
  font-size: 1rem; min-width: 60px; min-height: 60px;
  cursor: pointer; transition: all 0.2s; padding: 0.3rem; gap: 2px;
  text-decoration: none;
}
.sfe1-bottom-nav-btn i, .sfe1-bottom-nav-btn .material-icons, .sfe1-bottom-nav-btn .bi { font-size: 2.2rem; }
.sfe1-bottom-nav-btn:hover, .sfe1-bottom-nav-btn.sfe1-active { color: var(--sfe1-hot); transform: scale(1.08); }
.sfe1-bottom-nav-btn span { font-size: 1rem; }

@media (min-width: 769px) {
  .sfe1-bottom-nav { display: none; }
  .sfe1-footer { padding-bottom: 2rem; }
}

/* Helpers */
.sfe1-text-center { text-align: center; }
.sfe1-mt-1 { margin-top: 1rem; }
.sfe1-mb-1 { margin-bottom: 1rem; }
.sfe1-flex { display: flex; }
.sfe1-flex-wrap { flex-wrap: wrap; }
.sfe1-gap-1 { gap: 1rem; }
.sfe1-text-hot { color: var(--sfe1-hot); font-weight: 700; }
.sfe1-text-cyan { color: var(--sfe1-cyan); font-weight: 700; }
