/* SkyCasino - Core Stylesheet - pg70- prefix */
:root {
  --pg70-primary: #48D1CC; --pg70-light: #E0FFFF; --pg70-accent: #F4A460;
  --pg70-dark: #1A1A1A; --pg70-gold: #B8860B; --pg70-bg: #0d0d1a;
  --pg70-card: #151528; --pg70-text: #E0FFFF; --pg70-muted: #8a8aa0;
  --pg70-border: #2a2a45; --pg70-radius: 10px;
}
html { font-size: 62.5%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--pg70-bg); color: var(--pg70-text); line-height: 1.5rem; font-size: 1.4rem; max-width: 430px; margin: 0 auto; -webkit-font-smoothing: antialiased; }
a { color: var(--pg70-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
.pg70-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(135deg, var(--pg70-dark), #1a1a35); border-bottom: 2px solid var(--pg70-gold); max-width: 430px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; height: 54px; }
.pg70-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.pg70-logo img { width: 28px; height: 28px; border-radius: 6px; }
.pg70-logo span { font-size: 1.6rem; font-weight: 700; color: var(--pg70-primary); }
.pg70-header-right { display: flex; align-items: center; gap: 8px; }
.pg70-btn-reg { background: linear-gradient(135deg, var(--pg70-accent), var(--pg70-gold)); color: var(--pg70-dark); font-weight: 700; font-size: 1.2rem; padding: 6px 14px; border: none; border-radius: 6px; cursor: pointer; transition: transform 0.15s; }
.pg70-btn-login { background: transparent; color: var(--pg70-primary); font-weight: 600; font-size: 1.2rem; padding: 6px 12px; border: 1.5px solid var(--pg70-primary); border-radius: 6px; cursor: pointer; transition: transform 0.15s; }
.pg70-menu-toggle { background: none; border: none; color: var(--pg70-primary); font-size: 2rem; cursor: pointer; padding: 4px; display: flex; align-items: center; }
.pg70-btn-reg:hover, .pg70-btn-login:hover { transform: scale(1.05); }

/* MOBILE MENU */
.pg70-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998; }
.pg70-overlay-active { display: block; }
.pg70-mobile-menu { position: fixed; top: 0; right: -280px; width: 260px; height: 100vh; background: linear-gradient(180deg, #1a1a35, var(--pg70-dark)); z-index: 9999; transition: right 0.3s ease; padding: 70px 16px 20px; overflow-y: auto; }
.pg70-menu-active { right: 0 !important; }
.pg70-mobile-menu a { display: block; color: var(--pg70-text); padding: 12px 14px; border-radius: 8px; font-size: 1.4rem; margin-bottom: 4px; transition: background 0.2s; }
.pg70-mobile-menu a:hover { background: rgba(72,209,204,0.15); color: var(--pg70-primary); }
.pg70-mobile-menu .pg70-menu-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--pg70-text); font-size: 2.4rem; cursor: pointer; }

/* MAIN */
.pg70-main { padding-top: 54px; min-height: 100vh; }

/* CAROUSEL */
.pg70-carousel { position: relative; overflow: hidden; margin-top: 2px; }
.pg70-slide { display: none; cursor: pointer; }
.pg70-slide-active { display: block; }
.pg70-slide img { width: 100%; height: 180px; object-fit: cover; }
.pg70-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.pg70-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; }
.pg70-dot-active { background: var(--pg70-accent); }

/* SECTIONS */
.pg70-section { padding: 16px 12px; }
.pg70-section-title { font-size: 1.8rem; font-weight: 700; color: var(--pg70-primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--pg70-gold); display: flex; align-items: center; gap: 8px; }
.pg70-section-title .material-icons { font-size: 2.2rem; color: var(--pg70-accent); }

/* GAME GRID */
.pg70-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pg70-game-item { text-align: center; cursor: pointer; transition: transform 0.2s; border-radius: 8px; padding: 6px 2px; }
.pg70-game-item:hover { transform: translateY(-3px); }
.pg70-game-item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--pg70-border); margin-bottom: 4px; }
.pg70-game-item span { font-size: 1.1rem; color: var(--pg70-text); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* CARDS */
.pg70-card { background: var(--pg70-card); border: 1px solid var(--pg70-border); border-radius: var(--pg70-radius); padding: 14px; margin-bottom: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.pg70-card h3 { font-size: 1.5rem; color: var(--pg70-primary); margin-bottom: 8px; }
.pg70-card p { font-size: 1.3rem; color: var(--pg70-muted); line-height: 1.6; }

/* CTA */
.pg70-cta { display: inline-block; background: linear-gradient(135deg, var(--pg70-accent), var(--pg70-gold)); color: var(--pg70-dark); font-weight: 700; font-size: 1.4rem; padding: 10px 24px; border-radius: 8px; cursor: pointer; border: none; transition: transform 0.2s; text-align: center; }
.pg70-cta:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(244,164,96,0.4); }
.pg70-cta-outline { display: inline-block; background: transparent; color: var(--pg70-primary); font-weight: 600; font-size: 1.3rem; padding: 8px 20px; border-radius: 8px; border: 1.5px solid var(--pg70-primary); cursor: pointer; transition: all 0.2s; }
.pg70-cta-outline:hover { background: rgba(72,209,204,0.1); }

/* PROMO LINK */
.pg70-promo-link { color: var(--pg70-accent); font-weight: 700; cursor: pointer; text-decoration: underline; }
.pg70-promo-link:hover { color: var(--pg70-gold); }

/* FOOTER */
.pg70-footer { background: var(--pg70-dark); border-top: 2px solid var(--pg70-gold); padding: 20px 12px; text-align: center; }
.pg70-footer-desc { font-size: 1.2rem; color: var(--pg70-muted); line-height: 1.5; margin-bottom: 12px; }
.pg70-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 12px; }
.pg70-footer-links a { font-size: 1.2rem; color: var(--pg70-primary); padding: 4px 10px; border: 1px solid var(--pg70-border); border-radius: 20px; transition: all 0.2s; }
.pg70-footer-links a:hover { background: rgba(72,209,204,0.1); border-color: var(--pg70-primary); }
.pg70-footer-copy { font-size: 1.1rem; color: var(--pg70-muted); margin-top: 10px; }

/* BOTTOM NAV */
.pg70-bnav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(135deg, #12122a, var(--pg70-dark)); border-top: 2px solid var(--pg70-gold); height: 60px; max-width: 430px; margin: 0 auto; justify-content: space-around; align-items: center; }
.pg70-bnav-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 60px; min-height: 56px; background: none; border: none; color: var(--pg70-muted); cursor: pointer; transition: all 0.2s; padding: 4px; border-radius: 8px; }
.pg70-bnav-btn .pg70-bnav-icon { font-size: 2.2rem; margin-bottom: 2px; }
.pg70-bnav-btn .pg70-bnav-icon.material-icons { font-size: 2.4rem; }
.pg70-bnav-btn span { font-size: 1rem; color: var(--pg70-muted); }
.pg70-bnav-active { color: var(--pg70-primary) !important; }
.pg70-bnav-active span { color: var(--pg70-primary) !important; }
.pg70-bnav-active .pg70-bnav-icon { color: var(--pg70-accent) !important; }
.pg70-bnav-btn:active { transform: scale(0.9); }

/* HELP PAGE */
.pg70-help-content { padding: 54px 12px 20px; }
.pg70-help-content h1 { font-size: 2rem; color: var(--pg70-primary); margin-bottom: 16px; line-height: 1.3; }
.pg70-help-content h2 { font-size: 1.6rem; color: var(--pg70-accent); margin: 16px 0 10px; }
.pg70-help-content h3 { font-size: 1.4rem; color: var(--pg70-primary); margin: 12px 0 8px; }
.pg70-help-content p { font-size: 1.3rem; color: var(--pg70-muted); line-height: 1.6; margin-bottom: 10px; }
.pg70-help-content ul, .pg70-help-content ol { padding-left: 20px; margin-bottom: 10px; }
.pg70-help-content li { font-size: 1.3rem; color: var(--pg70-muted); line-height: 1.6; margin-bottom: 4px; }

/* FAQ ITEM */
.pg70-faq-item { background: var(--pg70-card); border: 1px solid var(--pg70-border); border-radius: 8px; padding: 12px 14px; margin-bottom: 10px; }
.pg70-faq-item h3 { font-size: 1.4rem; color: var(--pg70-accent); margin-bottom: 6px; }
.pg70-faq-item p { font-size: 1.25rem; color: var(--pg70-muted); }

/* TABLE */
.pg70-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.pg70-table th { background: rgba(72,209,204,0.15); color: var(--pg70-primary); padding: 8px 6px; text-align: left; font-weight: 600; }
.pg70-table td { padding: 7px 6px; border-bottom: 1px solid var(--pg70-border); color: var(--pg70-muted); }

/* UTILITIES */
.pg70-text-center { text-align: center; }
.pg70-mt-8 { margin-top: 8px; }
.pg70-mt-16 { margin-top: 16px; }
.pg70-mb-8 { margin-bottom: 8px; }
.pg70-mb-16 { margin-bottom: 16px; }
.pg70-hidden { display: none; }

/* RESPONSIVE */
@media (max-width: 768px) { .pg70-main { padding-bottom: 72px; } .pg70-bnav { display: flex; } }
@media (min-width: 769px) { .pg70-bnav { display: none !important; } .pg70-header { max-width: 100%; } body { max-width: 100%; } }
