/* fairplay movie - Main Stylesheet */
/* Prefix: ge14- */
/* Color Palette: #F8F8FF | #999999 | #0C0C0C | #FFEB3B | #4B0082 | #BF360C */

/* CSS Variables */
:root {
  --ge14-primary: #4B0082;
  --ge14-bg: #0C0C0C;
  --ge14-bg-light: #1a1a2e;
  --ge14-bg-card: #16213e;
  --ge14-text: #F8F8FF;
  --ge14-text-muted: #999999;
  --ge14-accent: #FFEB3B;
  --ge14-accent2: #BF360C;
  --ge14-gradient: linear-gradient(135deg, #4B0082 0%, #BF360C 100%);
  --ge14-radius: 8px;
  --ge14-radius-lg: 12px;
  --ge14-shadow: 0 4px 15px rgba(0,0,0,0.4);
  --ge14-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background: var(--ge14-bg);
  color: var(--ge14-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ge14-accent); text-decoration: none; transition: var(--ge14-transition); }
a:hover { color: var(--ge14-text); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.ge14-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 12px; }
.ge14-wrapper { padding: 16px 12px; }

/* Header */
.ge14-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: linear-gradient(180deg, rgba(12,12,12,0.98) 0%, rgba(75,0,130,0.95) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75,0,130,0.4);
  padding: 8px 12px; transition: var(--ge14-transition);
}
.ge14-header-scrolled {
  background: rgba(12,12,12,0.98);
  box-shadow: 0 2px 20px rgba(75,0,130,0.5);
}
.ge14-header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.ge14-logo-area { display: flex; align-items: center; gap: 8px; }
.ge14-logo-area img { width: 28px; height: 28px; border-radius: 6px; }
.ge14-logo-area span { font-size: 1.4rem; font-weight: 700; color: var(--ge14-accent); }
.ge14-header-btns { display: flex; gap: 6px; align-items: center; }
.ge14-btn-register, .ge14-btn-login {
  border: none; cursor: pointer; font-size: 1.2rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; transition: var(--ge14-transition);
}
.ge14-btn-register {
  background: var(--ge14-gradient); color: var(--ge14-text);
  box-shadow: 0 2px 8px rgba(191,54,12,0.4);
}
.ge14-btn-register:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(191,54,12,0.6); }
.ge14-btn-login {
  background: transparent; color: var(--ge14-accent);
  border: 1px solid var(--ge14-accent);
}
.ge14-btn-login:hover { background: rgba(255,235,59,0.1); }
.ge14-menu-toggle {
  background: none; border: none; color: var(--ge14-text);
  font-size: 2rem; cursor: pointer; padding: 4px;
}

/* Mobile Menu */
.ge14-menu-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7); z-index: 9998;
}
.ge14-mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: 260px;
  background: linear-gradient(180deg, #0C0C0C 0%, #1a1a2e 100%);
  z-index: 9999; transform: translateX(-100%);
  transition: transform 0.3s ease; padding-top: 60px; overflow-y: auto;
}
.ge14-mobile-menu a {
  display: block; padding: 12px 20px; color: var(--ge14-text);
  font-size: 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--ge14-transition);
}
.ge14-mobile-menu a:hover, .ge14-mobile-menu a:focus {
  background: rgba(75,0,130,0.2); color: var(--ge14-accent); padding-left: 28px;
}

/* Carousel */
.ge14-carousel { position: relative; overflow: hidden; border-radius: var(--ge14-radius-lg); margin: 0 12px; }
.ge14-slide {
  display: none; width: 100%; cursor: pointer;
}
.ge14-slide-active { display: block; animation: ge14-fadeIn 0.5s ease; }
.ge14-slide img { width: 100%; height: 180px; object-fit: cover; }
.ge14-dots { text-align: center; padding: 8px 0; }
.ge14-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ge14-text-muted); margin: 0 4px; cursor: pointer;
  transition: var(--ge14-transition);
}
.ge14-dot-active { background: var(--ge14-accent); transform: scale(1.3); }

@keyframes ge14-fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Section Titles */
.ge14-section-title {
  font-size: 1.8rem; font-weight: 700; margin: 20px 0 12px;
  padding-left: 12px; border-left: 3px solid var(--ge14-accent);
  color: var(--ge14-text);
}
.ge14-section-title span { color: var(--ge14-accent); }

/* Game Grid */
.ge14-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 8px 12px;
}
.ge14-game-item {
  text-align: center; cursor: pointer; transition: var(--ge14-transition);
  background: var(--ge14-bg-card); border-radius: var(--ge14-radius);
  padding: 8px 4px; border: 1px solid rgba(75,0,130,0.2);
}
.ge14-game-item:hover { transform: translateY(-3px); box-shadow: var(--ge14-shadow); border-color: var(--ge14-primary); }
.ge14-game-item img {
  width: 56px; height: 56px; border-radius: 8px; margin: 0 auto 4px;
  object-fit: cover;
}
.ge14-game-name {
  font-size: 1.05rem; color: var(--ge14-text-muted); line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 100%;
}

/* Cards */
.ge14-card {
  background: var(--ge14-bg-card); border-radius: var(--ge14-radius-lg);
  padding: 16px; margin: 12px; border: 1px solid rgba(75,0,130,0.15);
  transition: var(--ge14-transition);
}
.ge14-card:hover { border-color: var(--ge14-primary); box-shadow: var(--ge14-shadow); }
.ge14-card h3 { color: var(--ge14-accent); font-size: 1.6rem; margin-bottom: 8px; }
.ge14-card p { color: var(--ge14-text-muted); font-size: 1.3rem; line-height: 1.6; }

/* CTA / Promo Button */
.ge14-cta-btn {
  display: inline-block; background: var(--ge14-gradient);
  color: var(--ge14-text); font-weight: 700; font-size: 1.5rem;
  padding: 12px 32px; border-radius: 30px; cursor: pointer;
  border: none; transition: var(--ge14-transition);
  box-shadow: 0 4px 15px rgba(191,54,12,0.4);
}
.ge14-cta-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(191,54,12,0.6); }
.ge14-promo-text {
  color: var(--ge14-accent); font-weight: 700; cursor: pointer;
  transition: var(--ge14-transition); border-bottom: 1px dashed var(--ge14-accent);
}
.ge14-promo-text:hover { color: var(--ge14-text); }

/* Grid Layout */
.ge14-grid { display: grid; gap: 12px; }
.ge14-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ge14-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* FAQ Accordion */
.ge14-faq-item {
  background: var(--ge14-bg-card); border-radius: var(--ge14-radius);
  margin-bottom: 8px; overflow: hidden; border: 1px solid rgba(75,0,130,0.15);
}
.ge14-faq-q {
  padding: 12px 16px; font-weight: 600; font-size: 1.3rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--ge14-text);
}
.ge14-faq-q::after { content: '+'; font-size: 1.6rem; color: var(--ge14-accent); }
.ge14-faq-a {
  padding: 0 16px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease; color: var(--ge14-text-muted); font-size: 1.2rem;
}
.ge14-faq-a.open { max-height: 200px; padding: 8px 16px 12px; }

/* Feature List */
.ge14-feature-list { list-style: none; padding: 0; }
.ge14-feature-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ge14-text-muted); font-size: 1.3rem;
}
.ge14-feature-list li i { color: var(--ge14-accent); margin-top: 2px; min-width: 20px; text-align: center; }

/* Stats Bar */
.ge14-stats-bar {
  display: flex; justify-content: space-around;
  background: var(--ge14-bg-card); border-radius: var(--ge14-radius-lg);
  padding: 12px; margin: 12px; border: 1px solid rgba(75,0,130,0.15);
}
.ge14-stat-item { text-align: center; }
.ge14-stat-num { font-size: 1.8rem; font-weight: 700; color: var(--ge14-accent); }
.ge14-stat-label { font-size: 1.05rem; color: var(--ge14-text-muted); }

/* Winners Showcase */
.ge14-winner-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; background: var(--ge14-bg-card);
  border-radius: var(--ge14-radius); margin-bottom: 6px;
  border-left: 3px solid var(--ge14-accent);
}
.ge14-winner-name { font-weight: 600; font-size: 1.2rem; color: var(--ge14-text); }
.ge14-winner-amount { color: var(--ge14-accent); font-weight: 700; font-size: 1.3rem; }
.ge14-winner-game { color: var(--ge14-text-muted); font-size: 1.1rem; }

/* Footer */
.ge14-footer {
  background: linear-gradient(180deg, var(--ge14-bg-card) 0%, #0C0C0C 100%);
  padding: 24px 12px 100px; margin-top: 20px;
  border-top: 2px solid rgba(75,0,130,0.3);
}
.ge14-footer-brand { color: var(--ge14-accent); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.ge14-footer-desc { color: var(--ge14-text-muted); font-size: 1.2rem; line-height: 1.5; margin-bottom: 16px; }
.ge14-footer-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ge14-footer-link {
  padding: 6px 14px; background: rgba(75,0,130,0.2); border-radius: 20px;
  font-size: 1.1rem; color: var(--ge14-text-muted); transition: var(--ge14-transition);
  cursor: pointer;
}
.ge14-footer-link:hover { background: var(--ge14-primary); color: var(--ge14-text); }
.ge14-footer-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; justify-content: center; }
.ge14-footer-nav a { color: var(--ge14-text-muted); font-size: 1.1rem; }
.ge14-footer-nav a:hover { color: var(--ge14-accent); }
.ge14-copyright { text-align: center; color: var(--ge14-text-muted); font-size: 1.1rem; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }

/* Bottom Nav */
.ge14-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 60px; z-index: 1000;
  background: linear-gradient(180deg, rgba(26,26,46,0.98) 0%, rgba(12,12,12,0.99) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; justify-content: space-around; align-items: center;
  border-top: 1px solid rgba(75,0,130,0.4);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.ge14-bottom-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; cursor: pointer;
  background: none; border: none; color: var(--ge14-text-muted);
  transition: var(--ge14-transition); padding: 4px;
}
.ge14-bottom-btn i, .ge14-bottom-btn .material-icons { font-size: 22px; margin-bottom: 2px; }
.ge14-bottom-btn span { font-size: 1rem; line-height: 1.2; }
.ge14-bottom-btn:hover, .ge14-bottom-btn:focus {
  color: var(--ge14-accent); transform: scale(1.1);
}
.ge14-bottom-btn-active { color: var(--ge14-accent) !important; }
.ge14-bottom-btn-active i { text-shadow: 0 0 8px rgba(255,235,59,0.6); }

/* Content sections */
.ge14-content-section { padding: 12px; margin-bottom: 8px; }
.ge14-content-section p { color: var(--ge14-text-muted); font-size: 1.3rem; line-height: 1.7; margin-bottom: 8px; }
.ge14-content-section h2 {
  font-size: 1.7rem; font-weight: 700; margin-bottom: 12px;
  color: var(--ge14-text); padding-bottom: 8px;
  border-bottom: 2px solid rgba(75,0,130,0.3);
}
.ge14-content-section h3 { font-size: 1.5rem; font-weight: 600; margin: 12px 0 8px; color: var(--ge14-accent); }

/* Payment Icons Row */
.ge14-payment-row {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 0;
  justify-content: center;
}
.ge14-payment-item {
  background: var(--ge14-bg-card); padding: 6px 14px; border-radius: 20px;
  font-size: 1.1rem; color: var(--ge14-text-muted); border: 1px solid rgba(75,0,130,0.2);
}

/* Testimonial */
.ge14-testimonial {
  background: var(--ge14-bg-card); border-radius: var(--ge14-radius);
  padding: 12px; margin-bottom: 8px;
  border-left: 3px solid var(--ge14-accent);
}
.ge14-testimonial-text { color: var(--ge14-text-muted); font-size: 1.2rem; font-style: italic; margin-bottom: 6px; }
.ge14-testimonial-author { color: var(--ge14-accent); font-size: 1.1rem; font-weight: 600; }

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .ge14-game-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}
@media (min-width: 769px) {
  .ge14-bottom-nav { display: none; }
}
@media (max-width: 360px) {
  .ge14-game-grid { grid-template-columns: repeat(3, 1fr); }
  .ge14-game-item img { width: 48px; height: 48px; }
}

/* Utility */
.ge14-text-center { text-align: center; }
.ge14-text-accent { color: var(--ge14-accent); }
.ge14-mb-8 { margin-bottom: 8px; }
.ge14-mb-16 { margin-bottom: 16px; }
.ge14-mt-12 { margin-top: 12px; }
.ge14-flex-center { display: flex; align-items: center; justify-content: center; }
.ge14-rounded { border-radius: var(--ge14-radius); }
