/**
 * hyph777 - Main Stylesheet
 * Prefix: w7f07-
 * Color Palette: #FFB3FF, #FF8A80, #90EE90, #F5F5F5, #0C0C0C, #E91E63
 */

/* CSS Variables */
:root {
  --w7f07-primary: #E91E63;
  --w7f07-accent: #FFB3FF;
  --w7f07-coral: #FF8A80;
  --w7f07-green: #90EE90;
  --w7f07-light: #F5F5F5;
  --w7f07-dark: #0C0C0C;
  --w7f07-bg: #0C0C0C;
  --w7f07-text: #F5F5F5;
  --w7f07-card-bg: #1a1a2e;
  --w7f07-card-border: #2a2a4a;
  --w7f07-radius: 8px;
  --w7f07-header-h: 56px;
  --w7f07-bnav-h: 60px;
  --w7f07-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: var(--w7f07-font);
  background: var(--w7f07-bg);
  color: var(--w7f07-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Header */
.w7f07-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--w7f07-header-h);
  background: linear-gradient(135deg, #1a1a2e 0%, #0C0C0C 100%);
  border-bottom: 2px solid var(--w7f07-primary);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem;
}
.w7f07-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.w7f07-logo img { width: 28px; height: 28px; border-radius: 4px; }
.w7f07-logo span { color: var(--w7f07-accent); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.5px; }
.w7f07-header-right { display: flex; align-items: center; gap: 0.6rem; }
.w7f07-btn-register, .w7f07-btn-login {
  border: none; border-radius: 20px; cursor: pointer;
  font-size: 1.2rem; font-weight: 600; padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
}
.w7f07-btn-register {
  background: linear-gradient(135deg, var(--w7f07-primary), #c2185b);
  color: #fff;
}
.w7f07-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 12px rgba(233,30,99,0.5); }
.w7f07-btn-login {
  background: transparent; color: var(--w7f07-accent);
  border: 1.5px solid var(--w7f07-accent);
}
.w7f07-btn-login:hover { background: rgba(255,179,255,0.1); }
.w7f07-menu-toggle {
  background: none; border: none; color: var(--w7f07-accent);
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.w7f07-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
  background: linear-gradient(180deg, #1a1a2e 0%, #0C0C0C 100%);
  z-index: 9999; transition: right 0.35s ease;
  padding: 2rem 1.5rem; overflow-y: auto;
}
.w7f07-menu-active { right: 0 !important; }
.w7f07-menu-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 9998;
  display: none;
}
.w7f07-overlay-active { display: block !important; }
.w7f07-menu-close {
  background: none; border: none; color: var(--w7f07-coral);
  font-size: 2.2rem; cursor: pointer; position: absolute;
  top: 1rem; right: 1rem;
}
.w7f07-menu-links { list-style: none; margin-top: 3rem; }
.w7f07-menu-links li { margin-bottom: 1.2rem; }
.w7f07-menu-links a {
  color: var(--w7f07-light); text-decoration: none; font-size: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1rem; border-radius: var(--w7f07-radius);
  transition: background 0.2s;
}
.w7f07-menu-links a:hover { background: rgba(233,30,99,0.15); color: var(--w7f07-primary); }

/* Main Content */
.w7f07-main { padding-top: var(--w7f07-header-h); }
@media (max-width: 768px) {
  .w7f07-main { padding-bottom: 80px; }
}

/* Carousel */
.w7f07-carousel { position: relative; width: 100%; overflow: hidden; border-radius: 0 0 12px 12px; }
.w7f07-slide {
  display: none; width: 100%; cursor: pointer;
  aspect-ratio: 16/7;
}
.w7f07-slide img { width: 100%; height: 100%; object-fit: cover; }
.w7f07-slide:first-child { display: block; }
.w7f07-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.w7f07-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: none;
  transition: background 0.3s;
}
.w7f07-dot-active { background: var(--w7f07-primary) !important; }

/* Section titles */
.w7f07-section-title {
  font-size: 1.8rem; font-weight: 700; margin: 2rem 0 1.2rem;
  padding-left: 1rem; border-left: 4px solid var(--w7f07-primary);
  color: var(--w7f07-accent);
}
.w7f07-section-subtitle {
  font-size: 1.5rem; font-weight: 600; margin: 1.5rem 0 0.8rem;
  color: var(--w7f07-coral);
}

/* Game Grid */
.w7f07-game-section { margin-bottom: 2rem; }
.w7f07-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
@media (max-width: 360px) { .w7f07-game-grid { grid-template-columns: repeat(3, 1fr); } }
.w7f07-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s;
}
.w7f07-game-item:hover { transform: translateY(-3px); }
.w7f07-game-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--w7f07-radius);
  border: 1.5px solid var(--w7f07-card-border);
}
.w7f07-game-name {
  font-size: 1.1rem; margin-top: 0.3rem; color: var(--w7f07-light);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Cards */
.w7f07-card {
  background: var(--w7f07-card-bg); border: 1px solid var(--w7f07-card-border);
  border-radius: var(--w7f07-radius); padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.w7f07-card-title {
  font-size: 1.5rem; font-weight: 600; margin-bottom: 0.8rem;
  color: var(--w7f07-accent);
}

/* Buttons */
.w7f07-btn-promo {
  display: inline-block;
  background: linear-gradient(135deg, var(--w7f07-primary), #c2185b);
  color: #fff; border: none; border-radius: 25px;
  padding: 1rem 2.4rem; font-size: 1.5rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease; text-align: center;
}
.w7f07-btn-promo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(233,30,99,0.5);
}
.w7f07-btn-outline {
  display: inline-block;
  background: transparent; color: var(--w7f07-primary);
  border: 2px solid var(--w7f07-primary); border-radius: 25px;
  padding: 0.8rem 2rem; font-size: 1.3rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
}
.w7f07-btn-outline:hover { background: rgba(233,30,99,0.1); }

/* Promo link styling */
.w7f07-link {
  color: var(--w7f07-primary); font-weight: 700; cursor: pointer;
  text-decoration: underline; transition: color 0.2s;
}
.w7f07-link:hover { color: var(--w7f07-accent); }

/* Footer */
.w7f07-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0C0C0C 100%);
  padding: 2rem 1.2rem 1rem; margin-top: 2rem;
  border-top: 2px solid var(--w7f07-card-border);
}
.w7f07-footer-desc { color: #aaa; font-size: 1.2rem; line-height: 1.8rem; margin-bottom: 1.5rem; }
.w7f07-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem;
  justify-content: center;
}
.w7f07-footer-link {
  background: rgba(233,30,99,0.15); color: var(--w7f07-accent);
  padding: 0.4rem 1rem; border-radius: 20px; font-size: 1.1rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.w7f07-footer-link:hover { background: var(--w7f07-primary); color: #fff; }
.w7f07-footer-sitelinks {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
  margin-bottom: 1.2rem;
}
.w7f07-footer-sitelink {
  color: #888; font-size: 1.1rem; text-decoration: none;
}
.w7f07-footer-sitelink:hover { color: var(--w7f07-accent); }
.w7f07-footer-copy { text-align: center; color: #555; font-size: 1.1rem; padding-top: 1rem; border-top: 1px solid #222; }

/* Bottom Navigation */
.w7f07-bnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--w7f07-bnav-h); z-index: 1000;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top: 2px solid var(--w7f07-primary);
  display: flex; justify-content: space-around; align-items: center;
  padding: 0 0.4rem;
}
.w7f07-bnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 54px; background: none; border: none;
  color: #888; cursor: pointer; transition: all 0.3s ease;
  position: relative;
}
.w7f07-bnav-btn:hover, .w7f07-bnav-active {
  color: var(--w7f07-primary);
}
.w7f07-bnav-btn:hover { transform: scale(1.1); }
.w7f07-bnav-icon { font-size: 2.2rem; margin-bottom: 0.1rem; }
.w7f07-bnav-label { font-size: 1rem; font-weight: 500; }
.w7f07-bnav-active::after {
  content: ''; position: absolute; top: -2px;
  left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px; border-radius: 2px;
  background: var(--w7f07-primary);
}
@media (min-width: 769px) { .w7f07-bnav { display: none; } }

/* Typography & Helpers */
.w7f07-text-center { text-align: center; }
.w7f07-mt-1 { margin-top: 1rem; }
.w7f07-mt-2 { margin-top: 2rem; }
.w7f07-mb-1 { margin-bottom: 1rem; }
.w7f07-mb-2 { margin-bottom: 2rem; }

/* Content blocks */
.w7f07-content-block { margin-bottom: 2rem; }
.w7f07-content-block p { color: #ccc; margin-bottom: 1rem; line-height: 1.8rem; }
.w7f07-content-block h3 { color: var(--w7f07-coral); font-size: 1.4rem; margin-bottom: 0.6rem; }

/* Winner list */
.w7f07-winner-list { list-style: none; }
.w7f07-winner-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid #222; font-size: 1.2rem;
}
.w7f07-winner-name { color: var(--w7f07-accent); font-weight: 600; }
.w7f07-winner-amount { color: var(--w7f07-green); font-weight: 700; }
.w7f07-winner-game { color: #888; font-size: 1.1rem; }

/* Payment icons */
.w7f07-payment-row {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin: 1rem 0;
}
.w7f07-payment-item {
  background: #222; border-radius: 8px; padding: 0.6rem 1.2rem;
  color: var(--w7f07-light); font-size: 1.2rem; font-weight: 600;
}

/* Testimonial */
.w7f07-testimonial {
  background: var(--w7f07-card-bg); border-left: 3px solid var(--w7f07-primary);
  border-radius: 0 var(--w7f07-radius) var(--w7f07-radius) 0;
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
}
.w7f07-testimonial-text { color: #ccc; font-style: italic; font-size: 1.2rem; margin-bottom: 0.4rem; }
.w7f07-testimonial-author { color: var(--w7f07-accent); font-size: 1.1rem; font-weight: 600; }

/* CTA block */
.w7f07-cta {
  text-align: center; padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(233,30,99,0.15), rgba(255,179,255,0.1));
  border-radius: 12px; margin: 1.5rem 0;
}
.w7f07-cta h3 { color: var(--w7f07-accent); font-size: 1.6rem; margin-bottom: 0.8rem; }
.w7f07-cta p { color: #ccc; margin-bottom: 1.2rem; font-size: 1.3rem; }

/* Feature grid */
.w7f07-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.w7f07-feature-item {
  background: var(--w7f07-card-bg); border: 1px solid var(--w7f07-card-border);
  border-radius: var(--w7f07-radius); padding: 1rem; text-align: center;
}
.w7f07-feature-icon { font-size: 2.4rem; margin-bottom: 0.5rem; color: var(--w7f07-primary); }
.w7f07-feature-label { font-size: 1.2rem; font-weight: 600; color: var(--w7f07-light); }

/* FAQ */
.w7f07-faq-item { margin-bottom: 1rem; }
.w7f07-faq-q { color: var(--w7f07-accent); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.4rem; }
.w7f07-faq-a { color: #bbb; font-size: 1.2rem; line-height: 1.7rem; }

/* Responsive adjustments */
@media (min-width: 769px) {
  .w7f07-container { max-width: 430px; }
  .w7f07-main { padding-bottom: 0; }
}
