/* ============================================================
 * Champion Zone - Core Design Stylesheet
 * All classes use the "w6e60-" prefix for namespace isolation.
 * Palette: #FFF176 | #1A1A2E | #FFB6C1 | #F8F9FA | #C9C9FF
 * Mobile-first, max-width 430px.
 * ============================================================ */

:root {
    --w6e60-primary: #FFF176;
    --w6e60-bg: #1A1A2E;
    --w6e60-text: #F8F9FA;
    --w6e60-accent: #FFB6C1;
    --w6e60-secondary: #C9C9FF;
    --w6e60-bg-soft: #232347;
    --w6e60-bg-card: #2A2A4A;
    --w6e60-gold: #FFD700;
    --w6e60-success: #4ADE80;
    --w6e60-radius: 1.2rem;
    --w6e60-radius-sm: 0.8rem;
    --w6e60-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.35);
    --w6e60-header-h: 6rem;
    --w6e60-bottom-h: 6.4rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; }
body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: var(--w6e60-bg);
    color: var(--w6e60-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.w6e60-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

main.w6e60-main {
    padding-top: var(--w6e60-header-h);
}
@media (max-width: 768px) {
    main.w6e60-main { padding-bottom: 8rem; }
}

/* ============ Header ============ */
.w6e60-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--w6e60-header-h);
    background: linear-gradient(180deg, #1A1A2E 0%, #232347 100%);
    border-bottom: 0.1rem solid rgba(255,241,118,0.18);
    z-index: 1000;
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.4);
}
.w6e60-header-inner {
    max-width: 430px;
    margin: 0 auto;
    height: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}
.w6e60-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.w6e60-logo img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.6rem;
    object-fit: cover;
    box-shadow: 0 0 0.6rem rgba(255,241,118,0.4);
}
.w6e60-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--w6e60-primary), var(--w6e60-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    letter-spacing: 0.02rem;
}
.w6e60-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.w6e60-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 1rem;
    padding: 0.7rem 1.1rem;
    font-size: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    line-height: 1;
}
.w6e60-btn:active { transform: scale(0.94); }
.w6e60-btn-login {
    background: transparent;
    color: var(--w6e60-text);
    border: 0.15rem solid var(--w6e60-secondary);
}
.w6e60-btn-register {
    background: linear-gradient(90deg, var(--w6e60-primary), #F59E0B);
    color: var(--w6e60-bg);
    box-shadow: 0 0.4rem 1rem rgba(255,241,118,0.35);
}
.w6e60-menu-btn {
    background: transparent;
    color: var(--w6e60-primary);
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    font-size: 2rem;
    display: inline-flex;
    border-radius: 0.6rem;
}

/* ============ Mobile Menu (slide-in) ============ */
.w6e60-mobile-menu {
    position: fixed;
    top: 0; right: -85%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #1A1A2E 0%, #232347 100%);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 1.8rem 1.4rem;
    border-left: 0.1rem solid rgba(255,241,118,0.18);
}
.w6e60-mobile-menu.w6e60-menu-open { right: 0; }
.w6e60-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.w6e60-overlay.w6e60-overlay-active { opacity: 1; visibility: visible; }
.w6e60-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid rgba(255,241,118,0.18);
}
.w6e60-menu-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--w6e60-primary);
}
.w6e60-menu-close {
    background: transparent;
    border: none;
    color: var(--w6e60-text);
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
}
.w6e60-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1rem;
    border-radius: 1rem;
    color: var(--w6e60-text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.04);
    transition: background 0.2s, color 0.2s;
}
.w6e60-menu-link:active, .w6e60-menu-link:hover {
    background: rgba(255,241,118,0.15);
    color: var(--w6e60-primary);
}
.w6e60-menu-link i { color: var(--w6e60-primary); width: 2rem; font-size: 1.4rem; }
.w6e60-menu-cta {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ============ Hero / Carousel ============ */
.w6e60-hero { margin: 1rem 0 1.5rem; }
.w6e60-carousel {
    position: relative;
    border-radius: var(--w6e60-radius);
    overflow: hidden;
    box-shadow: var(--w6e60-shadow);
}
.w6e60-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}
.w6e60-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    cursor: pointer;
}
.w6e60-slide.w6e60-slide-active { opacity: 1; }
.w6e60-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.w6e60-slide-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.4rem 1.2rem 1.2rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
    color: var(--w6e60-text);
}
.w6e60-slide-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--w6e60-primary);
    margin-bottom: 0.2rem;
}
.w6e60-slide-text { font-size: 1.15rem; color: var(--w6e60-text); }
.w6e60-dots {
    position: absolute;
    bottom: 0.8rem;
    right: 1rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}
.w6e60-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}
.w6e60-dot.w6e60-dot-active {
    background: var(--w6e60-primary);
    width: 2rem;
    border-radius: 0.4rem;
}

/* ============ Section / Heading ============ */
.w6e60-section { margin-bottom: 1.8rem; }
.w6e60-section-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--w6e60-primary);
}
.w6e60-section-title i { color: var(--w6e60-accent); font-size: 1.6rem; }
.w6e60-h1 {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    background: linear-gradient(90deg, var(--w6e60-primary), var(--w6e60-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w6e60-subtitle {
    font-size: 1.25rem;
    color: var(--w6e60-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

/* ============ Quick CTA ============ */
.w6e60-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}
.w6e60-cta-card {
    padding: 1.1rem;
    border-radius: var(--w6e60-radius);
    background: linear-gradient(135deg, var(--w6e60-bg-soft), var(--w6e60-bg-card));
    border: 0.1rem solid rgba(255,241,118,0.15);
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.w6e60-cta-card:active { transform: scale(0.96); }
.w6e60-cta-card i { font-size: 2.1rem; color: var(--w6e60-primary); margin-bottom: 0.3rem; }
.w6e60-cta-card-title { font-size: 1.25rem; font-weight: 700; color: var(--w6e60-text); }
.w6e60-cta-card-text { font-size: 1.05rem; color: var(--w6e60-secondary); margin-top: 0.2rem; }

/* ============ Game Grid ============ */
.w6e60-cat-section { margin-bottom: 1.6rem; }
.w6e60-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    padding-bottom: 0.4rem;
    border-bottom: 0.1rem solid rgba(255,241,118,0.15);
}
.w6e60-cat-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--w6e60-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.w6e60-cat-title i { color: var(--w6e60-accent); font-size: 1.3rem; }
.w6e60-cat-tag {
    font-size: 0.95rem;
    background: var(--w6e60-accent);
    color: var(--w6e60-bg);
    padding: 0.15rem 0.55rem;
    border-radius: 0.5rem;
    font-weight: 700;
}
.w6e60-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}
.w6e60-game-card {
    background: var(--w6e60-bg-card);
    border-radius: var(--w6e60-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 0.1rem solid rgba(255,255,255,0.05);
}
.w6e60-game-card:active {
    transform: scale(0.95);
    box-shadow: 0 0 1rem rgba(255,241,118,0.4);
}
.w6e60-game-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #000;
}
.w6e60-game-name {
    padding: 0.4rem 0.3rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--w6e60-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.2rem;
}

/* ============ Card ============ */
.w6e60-card {
    background: var(--w6e60-bg-card);
    border-radius: var(--w6e60-radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border: 0.1rem solid rgba(255,241,118,0.12);
}
.w6e60-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--w6e60-primary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.w6e60-card-text {
    font-size: 1.22rem;
    line-height: 1.6;
    color: var(--w6e60-text);
    margin-bottom: 0.6rem;
}
.w6e60-card-text:last-child { margin-bottom: 0; }
.w6e60-card-text strong, .w6e60-card-text b { color: var(--w6e60-primary); }
.w6e60-card-text a { color: var(--w6e60-accent); font-weight: 700; text-decoration: underline; }

/* ============ Feature Grid ============ */
.w6e60-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}
.w6e60-feature-item {
    padding: 1rem 0.8rem;
    background: linear-gradient(135deg, var(--w6e60-bg-soft), var(--w6e60-bg-card));
    border-radius: var(--w6e60-radius-sm);
    text-align: center;
    border: 0.1rem solid rgba(255,241,118,0.1);
}
.w6e60-feature-item i { font-size: 2rem; color: var(--w6e60-primary); margin-bottom: 0.3rem; }
.w6e60-feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--w6e60-text);
    margin-bottom: 0.2rem;
}
.w6e60-feature-item p {
    font-size: 1.05rem;
    color: var(--w6e60-secondary);
    line-height: 1.3;
}

/* ============ RTP Analysis ============ */
.w6e60-rtp-list { display: grid; gap: 0.6rem; }
.w6e60-rtp-row {
    background: var(--w6e60-bg-soft);
    border-radius: 0.7rem;
    padding: 0.7rem 0.9rem;
    font-size: 1.1rem;
}
.w6e60-rtp-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
    align-items: center;
}
.w6e60-rtp-name { font-weight: 700; color: var(--w6e60-text); }
.w6e60-rtp-value {
    color: var(--w6e60-primary);
    font-weight: 800;
    text-align: right;
    font-size: 1.2rem;
}
.w6e60-rtp-bar {
    height: 0.45rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.4rem;
    overflow: hidden;
    margin-top: 0.4rem;
}
.w6e60-rtp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--w6e60-accent), var(--w6e60-primary));
}

/* ============ FAQ ============ */
.w6e60-faq-item {
    background: var(--w6e60-bg-card);
    border-radius: var(--w6e60-radius-sm);
    margin-bottom: 0.6rem;
    overflow: hidden;
    border: 0.1rem solid rgba(255,241,118,0.1);
}
.w6e60-faq-q {
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--w6e60-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.w6e60-faq-q i { color: var(--w6e60-primary); transition: transform 0.3s; flex-shrink: 0; }
.w6e60-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.2rem;
    color: var(--w6e60-secondary);
    font-size: 1.12rem;
    line-height: 1.5;
}
.w6e60-faq-open .w6e60-faq-a { max-height: 60rem; padding: 0 1.2rem 1rem; }
.w6e60-faq-open .w6e60-faq-q i { transform: rotate(180deg); }

/* ============ App CTA ============ */
.w6e60-app-cta {
    background: linear-gradient(135deg, #2A2A4A, #1A1A2E);
    border-radius: var(--w6e60-radius);
    padding: 1.4rem;
    text-align: center;
    border: 0.15rem solid var(--w6e60-primary);
    margin-bottom: 1rem;
}
.w6e60-app-cta h3 {
    font-size: 1.6rem;
    color: var(--w6e60-primary);
    margin-bottom: 0.4rem;
    font-weight: 800;
}
.w6e60-app-cta p {
    font-size: 1.2rem;
    color: var(--w6e60-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.w6e60-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ============ Payment Methods ============ */
.w6e60-pay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}
.w6e60-pay-item {
    background: var(--w6e60-bg-card);
    border-radius: 0.8rem;
    padding: 0.8rem 0.3rem;
    text-align: center;
    border: 0.1rem solid rgba(255,255,255,0.08);
}
.w6e60-pay-item i { font-size: 2rem; color: var(--w6e60-primary); margin-bottom: 0.2rem; }
.w6e60-pay-item span { font-size: 1rem; color: var(--w6e60-text); font-weight: 600; }

/* ============ Promo Link / Button ============ */
.w6e60-promo-link {
    color: var(--w6e60-primary);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}
.w6e60-promo-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--w6e60-primary), #F59E0B);
    color: var(--w6e60-bg);
    padding: 0.85rem 1.5rem;
    border-radius: 1rem;
    font-weight: 800;
    cursor: pointer;
    border: none;
    font-size: 1.3rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: 100%;
}
.w6e60-promo-btn:active { transform: scale(0.96); }
.w6e60-promo-btn-outline {
    background: transparent;
    color: var(--w6e60-primary);
    border: 0.15rem solid var(--w6e60-primary);
}

/* ============ Testimonials ============ */
.w6e60-testi-item {
    background: var(--w6e60-bg-card);
    border-radius: var(--w6e60-radius-sm);
    padding: 1rem;
    margin-bottom: 0.6rem;
    border-left: 0.3rem solid var(--w6e60-primary);
}
.w6e60-testi-stars { color: var(--w6e60-gold); font-size: 1.1rem; margin-bottom: 0.3rem; }
.w6e60-testi-text { font-size: 1.12rem; color: var(--w6e60-text); line-height: 1.5; margin-bottom: 0.4rem; }
.w6e60-testi-user { font-size: 1.05rem; color: var(--w6e60-secondary); font-weight: 700; }

/* ============ Winners ============ */
.w6e60-winner-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: var(--w6e60-bg-soft);
    border-radius: 0.6rem;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    align-items: center;
}
.w6e60-winner-name { color: var(--w6e60-text); font-weight: 700; }
.w6e60-winner-game { color: var(--w6e60-secondary); font-size: 1rem; }
.w6e60-winner-amount { color: var(--w6e60-primary); font-weight: 800; text-align: right; }

/* ============ Footer ============ */
.w6e60-footer {
    background: linear-gradient(180deg, #232347, #1A1A2E);
    padding: 1.8rem 1.2rem;
    border-top: 0.15rem solid rgba(255,241,118,0.2);
    margin-top: 1rem;
}
.w6e60-footer-brand {
    font-size: 1.18rem;
    color: var(--w6e60-text);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.w6e60-footer-brand strong { color: var(--w6e60-primary); }
.w6e60-footer-promos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}
.w6e60-footer-promo-btn {
    background: var(--w6e60-bg-card);
    color: var(--w6e60-primary);
    border: 0.1rem solid var(--w6e60-primary);
    padding: 0.5rem 0.9rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}
.w6e60-footer-promo-btn:active { transform: scale(0.95); }
.w6e60-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin-bottom: 1rem;
}
.w6e60-footer-links a { color: var(--w6e60-secondary); font-size: 1.1rem; }
.w6e60-footer-links a:hover { color: var(--w6e60-primary); }
.w6e60-footer-copy {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding-top: 1rem;
    border-top: 0.1rem solid rgba(255,255,255,0.08);
}

/* ============ Bottom Nav (mobile only, fixed) ============ */
.w6e60-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--w6e60-bottom-h);
    background: linear-gradient(180deg, #232347, #1A1A2E);
    border-top: 0.15rem solid var(--w6e60-primary);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -0.3rem 1rem rgba(0,0,0,0.5);
}
.w6e60-bottom-nav-btn {
    flex: 1;
    min-width: 60px;
    min-height: 60px;
    background: transparent;
    border: none;
    color: var(--w6e60-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    cursor: pointer;
    padding: 0.4rem;
    transition: color 0.2s, transform 0.2s;
    text-decoration: none;
}
.w6e60-bottom-nav-btn i,
.w6e60-bottom-nav-btn .material-icons {
    font-size: 2.2rem;
    color: var(--w6e60-secondary);
    transition: color 0.2s;
}
.w6e60-bottom-nav-btn span {
    font-size: 1rem;
    color: var(--w6e60-secondary);
    font-weight: 600;
}
.w6e60-bottom-nav-btn.w6e60-nav-active i,
.w6e60-bottom-nav-btn.w6e60-nav-active .material-icons,
.w6e60-bottom-nav-btn.w6e60-nav-active span {
    color: var(--w6e60-primary);
}
.w6e60-bottom-nav-btn:active { transform: scale(0.92); }
.w6e60-nav-badge { position: relative; }
.w6e60-nav-badge::after {
    content: '';
    position: absolute;
    top: 0.6rem;
    right: 28%;
    width: 0.7rem;
    height: 0.7rem;
    background: var(--w6e60-accent);
    border-radius: 50%;
    box-shadow: 0 0 0.2rem var(--w6e60-accent);
}

@media (min-width: 769px) {
    .w6e60-bottom-nav { display: none; }
    .w6e60-container { max-width: 768px; }
    .w6e60-header-inner { max-width: 768px; }
    .w6e60-grid { grid-template-columns: repeat(6, 1fr); }
    .w6e60-feature-grid { grid-template-columns: repeat(4, 1fr); }
    .w6e60-pay-grid { grid-template-columns: repeat(8, 1fr); }
}
