/* PJPK Core Stylesheet - prefix: sac0- | Colors: #FA8072|#A0522D|#E0E0E0|#0A0A0A|#FF69B4|#FFD700 */
:root {
  --sac0-primary: #FA8072; --sac0-secondary: #A0522D; --sac0-bg: #0A0A0A;
  --sac0-text: #E0E0E0; --sac0-accent: #FF69B4; --sac0-gold: #FFD700;
  --sac0-dark: #1a1a1a; --sac0-card: #222222; --sac0-border: #333333;
  font-size: 62.5%;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--sac0-bg); color: var(--sac0-text); font-size: 1.6rem;
  line-height: 1.5; max-width: 430px; margin: 0 auto; -webkit-font-smoothing: antialiased;
}
a { color: var(--sac0-primary); text-decoration: none; }
a:hover { color: var(--sac0-gold); }
img { max-width: 100%; height: auto; display: block; }
/* Header */
.sac0-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; background: linear-gradient(135deg, var(--sac0-dark), #111);
  z-index: 1000; border-bottom: 2px solid var(--sac0-primary); padding: 0.8rem 1.2rem;
}
.sac0-header-inner { display: flex; align-items: center; justify-content: space-between; }
.sac0-logo { display: flex; align-items: center; gap: 0.6rem; }
.sac0-logo img { width: 28px; height: 28px; border-radius: 4px; }
.sac0-logo-text {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(90deg, var(--sac0-primary), var(--sac0-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sac0-header-btns { display: flex; gap: 0.6rem; align-items: center; }
.sac0-btn-register {
  background: linear-gradient(135deg, var(--sac0-primary), #e06050); color: #fff;
  border: none; padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 1.3rem;
  font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.sac0-btn-register:hover { transform: scale(1.05); box-shadow: 0 0 12px rgba(250,128,114,0.5); }
.sac0-btn-login {
  background: transparent; color: var(--sac0-gold); border: 1.5px solid var(--sac0-gold);
  padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 1.3rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.sac0-btn-login:hover { background: var(--sac0-gold); color: var(--sac0-bg); }
.sac0-menu-toggle { background: none; border: none; color: var(--sac0-text); font-size: 2.2rem; cursor: pointer; padding: 0.3rem; line-height: 1; }
/* Mobile Menu */
.sac0-menu-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.sac0-overlay-active { opacity: 1; pointer-events: auto; }
.sac0-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--sac0-dark); z-index: 9999; transition: right 0.3s ease; padding: 2rem 1.5rem; overflow-y: auto;
}
.sac0-menu-active { right: 0; }
.sac0-mobile-menu a {
  display: block; padding: 1rem 0; color: var(--sac0-text); font-size: 1.5rem;
  border-bottom: 1px solid var(--sac0-border); transition: color 0.2s;
}
.sac0-mobile-menu a:hover { color: var(--sac0-primary); }
.sac0-menu-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: var(--sac0-text); font-size: 2.4rem; cursor: pointer; }
/* Main Content */
.sac0-main { padding-top: 5.5rem; min-height: 100vh; }
@media (max-width: 768px) { .sac0-main { padding-bottom: 80px; } }
/* Carousel */
.sac0-carousel { position: relative; overflow: hidden; margin: 0.8rem 0; border-radius: 8px; }
.sac0-carousel-track { display: flex; transition: transform 0.5s ease; }
.sac0-carousel-slide { min-width: 100%; cursor: pointer; }
.sac0-carousel-slide img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
.sac0-carousel-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.sac0-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.sac0-dot-active { background: var(--sac0-gold); }
/* Sections */
.sac0-section { padding: 1.5rem 1.2rem; }
.sac0-section-title { font-size: 2rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--sac0-primary); border-left: 4px solid var(--sac0-gold); padding-left: 1rem; }
.sac0-section-title span { color: var(--sac0-gold); }
/* Game Grid */
.sac0-cat-title { font-size: 1.6rem; font-weight: 700; color: var(--sac0-gold); margin: 1.5rem 0 0.8rem; padding-left: 0.5rem; border-left: 3px solid var(--sac0-primary); }
.sac0-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.sac0-game-item { text-align: center; cursor: pointer; transition: transform 0.2s; }
.sac0-game-item:hover { transform: scale(1.05); }
.sac0-game-item img { width: 72px; height: 72px; border-radius: 12px; margin: 0 auto 0.4rem; object-fit: cover; border: 2px solid var(--sac0-border); transition: border-color 0.2s; }
.sac0-game-item:hover img { border-color: var(--sac0-primary); }
.sac0-game-name { font-size: 1.1rem; color: var(--sac0-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 80px; margin: 0 auto; }
/* Cards */
.sac0-card { background: var(--sac0-card); border-radius: 10px; padding: 1.5rem; margin-bottom: 1.2rem; border: 1px solid var(--sac0-border); }
.sac0-card-title { font-size: 1.7rem; font-weight: 700; color: var(--sac0-primary); margin-bottom: 0.8rem; }
.sac0-card p { font-size: 1.4rem; line-height: 1.6; color: var(--sac0-text); margin-bottom: 0.6rem; }
/* Promo Buttons */
.sac0-promo-btn {
  display: inline-block; background: linear-gradient(135deg, var(--sac0-primary), var(--sac0-accent));
  color: #fff; padding: 0.8rem 2rem; border-radius: 25px; font-size: 1.5rem; font-weight: 700;
  cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s; text-align: center;
}
.sac0-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(250,128,114,0.4); color: #fff; }
.sac0-promo-link { color: var(--sac0-gold); font-weight: 700; text-decoration: underline; cursor: pointer; }
.sac0-promo-link:hover { color: var(--sac0-primary); }
/* Footer */
.sac0-footer { background: var(--sac0-dark); padding: 2rem 1.2rem 8rem; border-top: 2px solid var(--sac0-border); }
.sac0-footer-brand { font-size: 1.4rem; color: #999; line-height: 1.6; margin-bottom: 1.5rem; }
.sac0-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.sac0-footer-links a { background: var(--sac0-card); color: var(--sac0-text); padding: 0.4rem 1rem; border-radius: 15px; font-size: 1.2rem; border: 1px solid var(--sac0-border); transition: all 0.2s; }
.sac0-footer-links a:hover { border-color: var(--sac0-primary); color: var(--sac0-primary); }
.sac0-footer-promo { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.sac0-footer-promo button { background: linear-gradient(135deg, var(--sac0-primary), var(--sac0-accent)); color: #fff; border: none; padding: 0.6rem 1.4rem; border-radius: 20px; font-size: 1.2rem; font-weight: 600; cursor: pointer; }
.sac0-footer-copy { font-size: 1.2rem; color: #666; text-align: center; border-top: 1px solid var(--sac0-border); padding-top: 1rem; }
/* Bottom Navigation */
.sac0-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 60px; background: linear-gradient(180deg, #1a1a1a, #111);
  border-top: 2px solid var(--sac0-primary); display: flex; justify-content: space-around;
  align-items: center; z-index: 1000; padding: 0 0.3rem;
}
.sac0-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.2s; padding: 0.3rem; border-radius: 8px;
}
.sac0-bnav-btn:hover { color: var(--sac0-primary); background: rgba(250,128,114,0.1); }
.sac0-bnav-active { color: var(--sac0-primary) !important; }
.sac0-bnav-active .sac0-bnav-icon { transform: scale(1.15); }
.sac0-bnav-icon { font-size: 2.2rem; margin-bottom: 0.2rem; transition: transform 0.2s; }
.sac0-bnav-label { font-size: 1rem; color: inherit; }
@media (min-width: 769px) { .sac0-bottom-nav { display: none; } .sac0-footer { padding-bottom: 2rem; } }
/* Utilities */
.sac0-container { max-width: 430px; margin: 0 auto; padding: 0 1rem; }
.sac0-text-center { text-align: center; }
.sac0-text-gold { color: var(--sac0-gold); }
.sac0-text-primary { color: var(--sac0-primary); }
.sac0-text-accent { color: var(--sac0-accent); }
.sac0-mb-1 { margin-bottom: 0.8rem; }
.sac0-mb-2 { margin-bottom: 1.6rem; }
.sac0-mt-1 { margin-top: 0.8rem; }
.sac0-mt-2 { margin-top: 1.6rem; }
/* Help Page */
.sac0-help-content { padding: 1.5rem 1.2rem; }
.sac0-help-content h2 { font-size: 1.8rem; color: var(--sac0-primary); margin: 1.5rem 0 0.8rem; border-left: 3px solid var(--sac0-gold); padding-left: 1rem; }
.sac0-help-content h3 { font-size: 1.5rem; color: var(--sac0-gold); margin: 1.2rem 0 0.6rem; }
.sac0-help-content p { font-size: 1.4rem; line-height: 1.7; color: var(--sac0-text); margin-bottom: 0.8rem; }
.sac0-help-content ul, .sac0-help-content ol { padding-left: 2rem; margin-bottom: 1rem; }
.sac0-help-content li { font-size: 1.4rem; line-height: 1.7; color: var(--sac0-text); margin-bottom: 0.4rem; }
.sac0-faq-item { background: var(--sac0-card); border-radius: 8px; padding: 1.2rem; margin-bottom: 0.8rem; border-left: 3px solid var(--sac0-primary); }
.sac0-faq-q { font-size: 1.5rem; font-weight: 700; color: var(--sac0-gold); margin-bottom: 0.5rem; }
.sac0-faq-a { font-size: 1.3rem; color: var(--sac0-text); line-height: 1.6; }
/* Winner Marquee */
.sac0-marquee-wrap { overflow: hidden; background: var(--sac0-card); padding: 0.6rem 1rem; border-radius: 8px; margin: 0.8rem 0; }
.sac0-marquee-track { display: flex; animation: sac0scroll 20s linear infinite; gap: 2rem; white-space: nowrap; }
@keyframes sac0scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.sac0-winner-item { display: flex; align-items: center; gap: 0.5rem; font-size: 1.2rem; color: var(--sac0-text); flex-shrink: 0; }
.sac0-winner-item span { color: var(--sac0-gold); font-weight: 700; }
/* Feature Grid */
.sac0-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.sac0-feature-item { background: var(--sac0-card); border-radius: 10px; padding: 1.2rem; text-align: center; border: 1px solid var(--sac0-border); transition: border-color 0.2s; }
.sac0-feature-item:hover { border-color: var(--sac0-primary); }
.sac0-feature-icon { font-size: 2.4rem; margin-bottom: 0.5rem; color: var(--sac0-gold); }
.sac0-feature-title { font-size: 1.3rem; font-weight: 700; color: var(--sac0-primary); margin-bottom: 0.3rem; }
.sac0-feature-desc { font-size: 1.1rem; color: #999; }
/* Payment */
.sac0-payment-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.sac0-payment-icon { background: var(--sac0-card); border: 1px solid var(--sac0-border); border-radius: 8px; padding: 0.6rem 1.2rem; font-size: 1.2rem; color: var(--sac0-text); }
/* Testimonials */
.sac0-testimonial { background: var(--sac0-card); border-radius: 10px; padding: 1.2rem; margin-bottom: 0.8rem; border-left: 3px solid var(--sac0-accent); }
.sac0-testimonial-name { font-size: 1.3rem; font-weight: 700; color: var(--sac0-gold); margin-bottom: 0.3rem; }
.sac0-testimonial-text { font-size: 1.3rem; color: var(--sac0-text); line-height: 1.5; }
/* Responsive */
@media (max-width: 360px) { .sac0-game-grid { grid-template-columns: repeat(3, 1fr); } .sac0-game-item img { width: 60px; height: 60px; } }
