/* Aceph Login CSS - g02a- prefix, palette: #CD853F|#FF4500|#1A1A1A|#FFE4B5|#FFF|#FF0000 */
:root {
  --g02a-primary: #CD853F; --g02a-accent: #FF4500; --g02a-bg-dark: #1A1A1A;
  --g02a-text-light: #FFFFFF; --g02a-red: #FF0000; --g02a-bg-card: #2A2218;
  --g02a-bg-section: #1E1A12; --g02a-border: #3D3424; --g02a-text-muted: #BFA87A;
  --g02a-gold: #DAA520; --g02a-shadow: rgba(205,133,63,0.15);
  font-size: 62.5%;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Verdana, sans-serif; background: var(--g02a-bg-dark); color: var(--g02a-text-light); line-height: 1.5rem; font-size: 1.4rem; -webkit-font-smoothing: antialiased; }
a { color: var(--g02a-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* Header */
.g02a-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(135deg, #1A1A1A, #2A2218); border-bottom: 2px solid var(--g02a-primary); height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; }
.g02a-header-left { display: flex; align-items: center; gap: 8px; }
.g02a-logo { width: 28px; height: 28px; border-radius: 6px; }
.g02a-site-name { color: var(--g02a-primary); font-size: 1.6rem; font-weight: 700; white-space: nowrap; }
.g02a-header-right { display: flex; align-items: center; gap: 6px; }
.g02a-btn-register { background: linear-gradient(135deg, var(--g02a-accent), var(--g02a-red)); color: #fff; border: none; padding: 7px 14px; border-radius: 20px; font-size: 1.2rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.g02a-btn-login { background: transparent; color: var(--g02a-primary); border: 1.5px solid var(--g02a-primary); padding: 6px 13px; border-radius: 20px; font-size: 1.2rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.g02a-menu-toggle { background: none; border: none; color: var(--g02a-primary); font-size: 2.2rem; cursor: pointer; padding: 4px; display: flex; align-items: center; }

/* Mobile Menu */
.g02a-menu-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 9998; }
.g02a-mobile-menu { position: fixed; top: 0; left: 0; width: 260px; height: 100%; background: linear-gradient(180deg, #1A1A1A, #2A2218); z-index: 9999; transform: translateX(-100%); transition: transform 0.3s ease; padding-top: 20px; overflow-y: auto; }
.g02a-menu-header { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--g02a-border); }
.g02a-menu-logo { width: 32px; height: 32px; border-radius: 8px; }
.g02a-menu-title { color: var(--g02a-primary); font-size: 1.6rem; font-weight: 700; }
.g02a-menu-list { list-style: none; padding: 8px 0; }
.g02a-menu-list li a { display: block; padding: 12px 20px; color: var(--g02a-text-light); font-size: 1.4rem; transition: all 0.2s; border-left: 3px solid transparent; }
.g02a-menu-list li a:hover { background: rgba(205,133,63,0.1); color: var(--g02a-primary); border-left-color: var(--g02a-primary); }

/* Carousel */
.g02a-carousel { position: relative; overflow: hidden; border-radius: 12px; margin-top: 64px; }
.g02a-carousel-track { display: flex; transition: transform 0.5s ease; }
.g02a-carousel-slide { min-width: 100%; cursor: pointer; }
.g02a-carousel-slide img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; }
.g02a-carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.g02a-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; border: none; }
.g02a-dot-active { background: var(--g02a-primary); width: 24px; border-radius: 4px; }

/* Main */
.g02a-main { padding-top: 64px; padding-bottom: 20px; }
.g02a-section { padding: 20px 0; }

/* Game Grid */
.g02a-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.g02a-game-card { background: var(--g02a-bg-card); border-radius: 10px; padding: 8px 4px; text-align: center; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid var(--g02a-border); }
.g02a-game-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--g02a-shadow); }
.g02a-game-card img { width: 56px; height: 56px; border-radius: 8px; margin: 0 auto 4px; object-fit: cover; }
.g02a-game-card span { display: block; font-size: 1rem; color: var(--g02a-text-muted); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Category Header */
.g02a-cat-header { display: flex; align-items: center; gap: 8px; margin: 20px 0 10px; padding: 8px 0; }
.g02a-cat-title { font-size: 1.5rem; font-weight: 600; color: var(--g02a-primary); }

/* Promo Button & Text */
.g02a-promo-btn { display: inline-block; background: linear-gradient(135deg, var(--g02a-accent), var(--g02a-red)); color: #fff; padding: 10px 24px; border-radius: 25px; font-size: 1.4rem; font-weight: 600; cursor: pointer; border: none; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.g02a-promo-btn:hover { transform: scale(1.03); box-shadow: 0 4px 15px rgba(255,69,0,0.4); }
.g02a-promo-text { color: var(--g02a-accent); font-weight: 600; cursor: pointer; text-decoration: underline; }

/* Content Block */
.g02a-content-block { background: var(--g02a-bg-section); border-radius: 12px; padding: 16px; margin: 16px 0; border: 1px solid var(--g02a-border); }
.g02a-content-block h2 { color: var(--g02a-primary); font-size: 1.7rem; margin-bottom: 10px; }
.g02a-content-block h3 { color: var(--g02a-gold); font-size: 1.4rem; margin: 10px 0 6px; }
.g02a-content-block p { color: var(--g02a-text-muted); line-height: 1.6; margin-bottom: 8px; font-size: 1.3rem; }
.g02a-content-block ul { padding-left: 18px; margin-bottom: 8px; }
.g02a-content-block ul li { color: var(--g02a-text-muted); line-height: 1.5; margin-bottom: 4px; font-size: 1.3rem; }

/* H1 */
.g02a-h1 { font-size: 2rem; font-weight: 700; color: var(--g02a-primary); margin: 16px 0 10px; line-height: 1.3; }

/* Winner Showcase */
.g02a-winner-list { display: flex; flex-direction: column; gap: 8px; }
.g02a-winner-item { display: flex; align-items: center; gap: 10px; background: var(--g02a-bg-card); border-radius: 8px; padding: 8px 12px; border: 1px solid var(--g02a-border); }
.g02a-winner-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--g02a-primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: var(--g02a-bg-dark); flex-shrink: 0; }
.g02a-winner-info { flex: 1; font-size: 1.2rem; }
.g02a-winner-name { color: var(--g02a-text-light); font-weight: 600; }
.g02a-winner-game { color: var(--g02a-text-muted); font-size: 1.1rem; }
.g02a-winner-amount { color: var(--g02a-accent); font-weight: 700; font-size: 1.4rem; white-space: nowrap; }

/* Testimonials */
.g02a-testimonial { background: var(--g02a-bg-card); border-radius: 10px; padding: 14px; margin-bottom: 10px; border-left: 3px solid var(--g02a-primary); }
.g02a-testimonial-text { color: var(--g02a-text-muted); font-style: italic; font-size: 1.3rem; line-height: 1.5; margin-bottom: 6px; }
.g02a-testimonial-author { color: var(--g02a-primary); font-size: 1.2rem; font-weight: 600; }

/* Footer */
.g02a-footer { background: linear-gradient(180deg, #1A1A1A, #111); padding: 24px 0 80px; border-top: 2px solid var(--g02a-border); }
.g02a-footer-desc { color: var(--g02a-text-muted); font-size: 1.2rem; line-height: 1.5; margin-bottom: 16px; }
.g02a-footer-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.g02a-footer-link { background: var(--g02a-bg-card); color: var(--g02a-text-muted); padding: 6px 12px; border-radius: 6px; font-size: 1.1rem; border: 1px solid var(--g02a-border); transition: all 0.2s; }
.g02a-footer-link:hover { color: var(--g02a-primary); border-color: var(--g02a-primary); }
.g02a-footer-copy { color: var(--g02a-text-muted); font-size: 1.1rem; text-align: center; margin-top: 16px; opacity: 0.7; }

/* Bottom Nav */
.g02a-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(180deg, #2A2218, #1A1A1A); border-top: 2px solid var(--g02a-primary); height: 60px; display: flex; justify-content: space-around; align-items: center; padding: 0 4px; }
.g02a-bottom-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 60px; min-height: 52px; background: none; border: none; color: var(--g02a-text-muted); cursor: pointer; transition: all 0.2s; gap: 2px; border-radius: 8px; padding: 4px 6px; }
.g02a-bottom-btn:hover { color: var(--g02a-primary); transform: scale(1.08); }
.g02a-bottom-btn i, .g02a-bottom-btn .material-icons, .g02a-bottom-btn ion-icon { font-size: 22px; }
.g02a-bottom-btn span { font-size: 1rem; line-height: 1.2; }
.g02a-bottom-btn.g02a-active { color: var(--g02a-accent); }

/* Responsive */
@media (max-width: 768px) { .g02a-main { padding-bottom: 80px; } }
@media (min-width: 769px) { .g02a-bottom-nav { display: none; } }

/* Payment & App CTA */
.g02a-payment-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; margin: 10px 0; }
.g02a-payment-icon { background: var(--g02a-bg-card); border: 1px solid var(--g02a-border); border-radius: 8px; padding: 8px 12px; font-size: 1.2rem; color: var(--g02a-text-muted); }
.g02a-app-cta { background: linear-gradient(135deg, var(--g02a-bg-card), var(--g02a-bg-section)); border-radius: 12px; padding: 20px 16px; text-align: center; border: 1px solid var(--g02a-primary); }
.g02a-app-cta h3 { color: var(--g02a-primary); font-size: 1.6rem; margin-bottom: 8px; }
.g02a-app-cta p { color: var(--g02a-text-muted); font-size: 1.3rem; margin-bottom: 14px; }

/* Achievements & Tricks */
.g02a-achieve-row { display: flex; gap: 10px; flex-wrap: wrap; }
.g02a-achieve-item { background: var(--g02a-bg-card); border: 1px solid var(--g02a-border); border-radius: 8px; padding: 10px; flex: 1; min-width: 80px; text-align: center; }
.g02a-achieve-item i { font-size: 2rem; color: var(--g02a-gold); margin-bottom: 4px; }
.g02a-achieve-item span { display: block; font-size: 1rem; color: var(--g02a-text-muted); }
.g02a-trick-item { background: var(--g02a-bg-card); border-radius: 8px; padding: 12px; margin-bottom: 8px; border-left: 3px solid var(--g02a-gold); }
.g02a-trick-item strong { color: var(--g02a-primary); font-size: 1.3rem; }
.g02a-trick-item p { color: var(--g02a-text-muted); font-size: 1.2rem; margin-top: 4px; }

/* Features Grid */
.g02a-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.g02a-feature-card { background: var(--g02a-bg-card); border-radius: 10px; padding: 14px 10px; text-align: center; border: 1px solid var(--g02a-border); transition: transform 0.2s; }
.g02a-feature-card:hover { transform: translateY(-2px); }
.g02a-feature-card i, .g02a-feature-card .material-icons { font-size: 2.4rem; color: var(--g02a-primary); margin-bottom: 6px; }
.g02a-feature-card h4 { color: var(--g02a-text-light); font-size: 1.2rem; margin-bottom: 4px; }
.g02a-feature-card p { color: var(--g02a-text-muted); font-size: 1.1rem; }

/* Inline Link, FAQ, Steps */
.g02a-inline-link { color: var(--g02a-accent); text-decoration: underline; cursor: pointer; }
.g02a-faq-item { background: var(--g02a-bg-card); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; border: 1px solid var(--g02a-border); }
.g02a-faq-q { color: var(--g02a-primary); font-weight: 600; font-size: 1.3rem; margin-bottom: 6px; }
.g02a-faq-a { color: var(--g02a-text-muted); font-size: 1.2rem; line-height: 1.5; }
.g02a-step-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.g02a-step-num { background: var(--g02a-primary); color: var(--g02a-bg-dark); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; flex-shrink: 0; }
.g02a-step-text { color: var(--g02a-text-muted); font-size: 1.3rem; line-height: 1.5; }
