/**
 * 35bd bd - Main Stylesheet
 * All classes use prefix "w1c34-" for namespace isolation
 * Color palette: #F0F0F0 | #0E1621 | #FFEF94 | #FFF8DC | #FAFAD2
 * @package 35bd bd
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --w1c34-primary: #FFEF94;
    --w1c34-bg: #0E1621;
    --w1c34-text: #F0F0F0;
    --w1c34-accent: #FFEF94;
    --w1c34-light: #FFF8DC;
    --w1c34-cream: #FAFAD2;
    --w1c34-dark: #0E1621;
    --w1c34-darker: #0a0f18;
    --w1c34-card: #151e2d;
    --w1c34-border: #1f2d42;
    --w1c34-success: #4caf50;
    --w1c34-danger: #f44336;
    --w1c34-radius: 8px;
    --w1c34-shadow: 0 2px 12px rgba(0,0,0,0.3);
    --w1c34-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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--w1c34-bg);
    color: var(--w1c34-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    max-width: 430px;
    margin: 0 auto;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

a {
    color: var(--w1c34-accent);
    text-decoration: none;
    transition: var(--w1c34-transition);
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header */
.w1c34-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--w1c34-darker);
    border-bottom: 1px solid var(--w1c34-border);
    max-width: 430px;
    margin: 0 auto;
}

.w1c34-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    height: 52px;
}

.w1c34-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.w1c34-logo img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.w1c34-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--w1c34-primary);
    white-space: nowrap;
}

.w1c34-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.w1c34-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--w1c34-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--w1c34-transition);
    white-space: nowrap;
    min-height: 36px;
    text-decoration: none;
}

.w1c34-btn-register {
    background: var(--w1c34-primary);
    color: var(--w1c34-dark);
}

.w1c34-btn-register:hover {
    background: #fff3a8;
    transform: scale(1.05);
}

.w1c34-btn-login {
    background: transparent;
    color: var(--w1c34-primary);
    border: 1px solid var(--w1c34-primary);
}

.w1c34-btn-login:hover {
    background: rgba(255,239,148,0.1);
}

.w1c34-menu-toggle {
    background: none;
    border: none;
    color: var(--w1c34-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.w1c34-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--w1c34-darker);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.w1c34-menu-active {
    right: 0;
}

.w1c34-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
}

.w1c34-overlay-active {
    display: block;
}

.w1c34-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--w1c34-border);
}

.w1c34-menu-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--w1c34-primary);
}

.w1c34-menu-close {
    background: none;
    border: none;
    color: var(--w1c34-text);
    font-size: 2rem;
    cursor: pointer;
}

.w1c34-menu-nav {
    list-style: none;
}

.w1c34-menu-nav li {
    margin-bottom: 0.5rem;
}

.w1c34-menu-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--w1c34-text);
    font-size: 1.4rem;
    border-radius: var(--w1c34-radius);
    transition: var(--w1c34-transition);
}

.w1c34-menu-nav a:hover {
    background: var(--w1c34-card);
    color: var(--w1c34-primary);
}

.w1c34-menu-nav a i,
.w1c34-menu-nav a .material-icons {
    font-size: 2rem;
    width: 24px;
    text-align: center;
}

/* Main Content */
.w1c34-main {
    padding-top: 52px;
    min-height: 100vh;
}

/* Carousel / Slider */
.w1c34-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.w1c34-slides-wrapper {
    position: relative;
    width: 100%;
}

.w1c34-slide {
    display: none;
    width: 100%;
    cursor: pointer;
}

.w1c34-slide-active {
    display: block;
}

.w1c34-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0;
}

.w1c34-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.w1c34-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--w1c34-transition);
    border: none;
}

.w1c34-dot-active {
    background: var(--w1c34-primary);
    width: 20px;
    border-radius: 4px;
}

/* Sections */
.w1c34-section {
    padding: 1.5rem 1.2rem;
    margin-bottom: 1rem;
}

.w1c34-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--w1c34-primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--w1c34-border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.w1c34-section-title i,
.w1c34-section-title .material-icons {
    font-size: 2rem;
}

/* Game Grid */
.w1c34-category-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--w1c34-primary);
    margin: 1.5rem 0 0.8rem;
    padding-left: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.w1c34-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.w1c34-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--w1c34-transition);
    text-align: center;
}

.w1c34-game-item:hover {
    transform: translateY(-2px);
}

.w1c34-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--w1c34-radius);
    border: 1px solid var(--w1c34-border);
    margin-bottom: 0.4rem;
    background: var(--w1c34-card);
}

.w1c34-game-name {
    font-size: 1.1rem;
    color: var(--w1c34-text);
    line-height: 1.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Cards */
.w1c34-card {
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--w1c34-border);
}

.w1c34-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--w1c34-primary);
    margin-bottom: 0.8rem;
}

.w1c34-card-text {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: var(--w1c34-text);
    margin-bottom: 0.8rem;
}

/* Promo Link Styles */
.w1c34-promo-link {
    display: inline-block;
    color: var(--w1c34-primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--w1c34-transition);
}

.w1c34-promo-link:hover {
    color: #fff3a8;
}

.w1c34-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--w1c34-primary);
    color: var(--w1c34-dark);
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: var(--w1c34-radius);
    cursor: pointer;
    transition: var(--w1c34-transition);
    text-decoration: none;
    margin: 0.8rem 0;
}

.w1c34-promo-btn:hover {
    background: #fff3a8;
    transform: scale(1.05);
}

/* Footer */
.w1c34-footer {
    background: var(--w1c34-darker);
    border-top: 1px solid var(--w1c34-border);
    padding: 2rem 1.2rem 6rem;
}

.w1c34-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.w1c34-footer-brand p {
    font-size: 1.2rem;
    color: rgba(240,240,240,0.7);
    line-height: 1.6rem;
    margin-bottom: 0.5rem;
}

.w1c34-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.w1c34-footer-links a {
    padding: 0.6rem 1.2rem;
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    font-size: 1.2rem;
    color: var(--w1c34-text);
    border: 1px solid var(--w1c34-border);
    transition: var(--w1c34-transition);
}

.w1c34-footer-links a:hover {
    background: var(--w1c34-primary);
    color: var(--w1c34-dark);
}

.w1c34-footer-site-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--w1c34-border);
}

.w1c34-footer-site-links a {
    font-size: 1.2rem;
    color: rgba(240,240,240,0.6);
    text-decoration: underline;
}

.w1c34-footer-site-links a:hover {
    color: var(--w1c34-primary);
}

.w1c34-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(240,240,240,0.4);
    border-top: 1px solid var(--w1c34-border);
    padding-top: 1rem;
}

/* Bottom Navigation */
.w1c34-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--w1c34-darker);
    border-top: 1px solid var(--w1c34-border);
    display: none;
    height: 60px;
}

.w1c34-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.w1c34-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 52px;
    background: none;
    border: none;
    color: rgba(240,240,240,0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--w1c34-transition);
    gap: 2px;
    padding: 0.4rem 0;
}

.w1c34-nav-btn i,
.w1c34-nav-btn .material-icons,
.w1c34-nav-btn ion-icon {
    font-size: 22px;
    transition: var(--w1c34-transition);
}

.w1c34-nav-btn span {
    font-size: 1rem;
    line-height: 1.2rem;
    white-space: nowrap;
}

.w1c34-nav-btn:hover,
.w1c34-nav-btn.w1c34-nav-active {
    color: var(--w1c34-primary);
}

.w1c34-nav-btn.w1c34-nav-active i,
.w1c34-nav-btn.w1c34-nav-active .material-icons,
.w1c34-nav-btn.w1c34-nav-active ion-icon {
    transform: scale(1.1);
}

.w1c34-nav-btn:active {
    transform: scale(0.92);
}

/* H1 styling */
.w1c34-h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--w1c34-primary);
    margin: 1.5rem 0 1rem;
    padding: 0 1.2rem;
    line-height: 2.4rem;
}

/* Content text */
.w1c34-content-text {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: var(--w1c34-text);
    padding: 0 1.2rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.w1c34-faq-item {
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    border: 1px solid var(--w1c34-border);
}

.w1c34-faq-q {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--w1c34-primary);
    margin-bottom: 0.5rem;
}

.w1c34-faq-a {
    font-size: 1.3rem;
    line-height: 1.6rem;
    color: var(--w1c34-text);
}

/* Feature list */
.w1c34-feature-list {
    list-style: none;
    padding: 0;
}

.w1c34-feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--w1c34-border);
    font-size: 1.3rem;
    line-height: 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.w1c34-feature-list li:last-child {
    border-bottom: none;
}

.w1c34-feature-list li i,
.w1c34-feature-list li .material-icons {
    color: var(--w1c34-primary);
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Winner showcase */
.w1c34-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    margin-bottom: 0.5rem;
    border: 1px solid var(--w1c34-border);
}

.w1c34-winner-name {
    font-size: 1.2rem;
    color: var(--w1c34-text);
}

.w1c34-winner-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--w1c34-primary);
}

.w1c34-winner-game {
    font-size: 1.1rem;
    color: rgba(240,240,240,0.5);
}

/* Payment icons */
.w1c34-payment-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

.w1c34-payment-item {
    padding: 0.8rem 1.2rem;
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    border: 1px solid var(--w1c34-border);
    font-size: 1.2rem;
    color: var(--w1c34-text);
}

/* Responsive */
@media (min-width: 769px) {
    .w1c34-bottom-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .w1c34-bottom-nav {
        display: block;
    }

    .w1c34-main {
        padding-bottom: 80px;
    }

    .w1c34-footer {
        padding-bottom: 8rem;
    }
}

/* Utility */
.w1c34-text-center {
    text-align: center;
}

.w1c34-mt-1 {
    margin-top: 0.8rem;
}

.w1c34-mb-1 {
    margin-bottom: 0.8rem;
}

.w1c34-hidden {
    display: none;
}

/* Testimonials */
.w1c34-testimonial {
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--w1c34-primary);
}

.w1c34-testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6rem;
    color: var(--w1c34-text);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.w1c34-testimonial-author {
    font-size: 1.1rem;
    color: var(--w1c34-primary);
    font-weight: 600;
}

/* Achievement badge */
.w1c34-achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--w1c34-card);
    border-radius: var(--w1c34-radius);
    margin-bottom: 0.5rem;
    border: 1px solid var(--w1c34-border);
}

.w1c34-achievement-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,239,148,0.15);
    border-radius: 50%;
    color: var(--w1c34-primary);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.w1c34-achievement-text {
    font-size: 1.2rem;
    color: var(--w1c34-text);
}

.w1c34-achievement-text strong {
    color: var(--w1c34-primary);
}
