/**
 * Maya Games - Core Stylesheet
 * Prefix: vc09-
 * Color palette: #4169E1 #00CED1 #D3D3D3 #FFA500 #1A1A2E #191970
 */

/* CSS Variables */
:root {
    --vc09-primary: #4169E1;
    --vc09-accent: #00CED1;
    --vc09-light: #D3D3D3;
    --vc09-warm: #FFA500;
    --vc09-bg-dark: #1A1A2E;
    --vc09-bg-navy: #191970;
    --vc09-text-light: #F0F0F0;
    --vc09-text-muted: #B0B0C0;
    --vc09-card-bg: #232342;
    --vc09-card-border: #2E2E52;
    --vc09-radius: 8px;
    --vc09-radius-lg: 12px;
    --vc09-shadow: 0 4px 16px rgba(0,0,0,0.3);
    --vc09-transition: all 0.3s ease;
    font-size: 62.5%;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--vc09-bg-dark);
    color: var(--vc09-text-light);
    line-height: 1.5rem;
    font-size: 1.6rem;
    max-width: 430px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--vc09-accent); text-decoration: none; transition: var(--vc09-transition); }
a:hover { color: var(--vc09-warm); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.vc09-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--vc09-bg-navy), var(--vc09-bg-dark));
    border-bottom: 1px solid var(--vc09-primary);
    max-width: 430px;
    margin: 0 auto;
}
.vc09-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    height: 56px;
}
.vc09-logo-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.vc09-logo-area img { width: 28px; height: 28px; border-radius: 4px; }
.vc09-logo-area span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vc09-warm);
    white-space: nowrap;
}
.vc09-header-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.vc09-btn-register {
    background: var(--vc09-warm);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: var(--vc09-radius);
    border: none;
    cursor: pointer;
    transition: var(--vc09-transition);
}
.vc09-btn-register:hover { background: #FFB833; transform: scale(1.05); }
.vc09-btn-login {
    background: transparent;
    color: var(--vc09-accent);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--vc09-radius);
    border: 1px solid var(--vc09-accent);
    cursor: pointer;
    transition: var(--vc09-transition);
}
.vc09-btn-login:hover { background: rgba(0,206,209,0.15); }
.vc09-menu-toggle {
    background: none;
    border: none;
    color: var(--vc09-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
}

/* Mobile Menu */
.vc09-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
    max-width: 430px;
    margin: 0 auto;
}
.vc09-overlay-active { display: block; }
.vc09-mobile-menu {
    position: fixed;
    top: 0; right: -280px;
    width: 280px;
    height: 100%;
    background: var(--vc09-bg-navy);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}
.vc09-menu-active { right: 0; }
.vc09-mobile-menu .vc09-menu-close {
    background: none;
    border: none;
    color: var(--vc09-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.vc09-mobile-menu nav a {
    display: block;
    padding: 1.2rem 0;
    color: var(--vc09-text-light);
    font-size: 1.5rem;
    border-bottom: 1px solid var(--vc09-card-border);
    transition: var(--vc09-transition);
}
.vc09-mobile-menu nav a:hover {
    color: var(--vc09-warm);
    padding-left: 0.8rem;
}

/* Bottom Navigation */
.vc09-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--vc09-bg-navy), #0D0D1F);
    border-top: 1px solid var(--vc09-primary);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    max-width: 430px;
    margin: 0 auto;
}
.vc09-bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    background: none;
    border: none;
    color: var(--vc09-text-muted);
    cursor: pointer;
    transition: var(--vc09-transition);
    padding: 0.3rem;
    gap: 0.2rem;
}
.vc09-bottom-btn i,
.vc09-bottom-btn .material-icons,
.vc09-bottom-btn ion-icon,
.vc09-bottom-btn bi {
    font-size: 22px;
}
.vc09-bottom-btn span {
    font-size: 1rem;
    white-space: nowrap;
}
.vc09-bottom-btn:hover,
.vc09-bottom-btn:focus {
    color: var(--vc09-warm);
    transform: scale(1.1);
}
.vc09-bottom-btn.vc09-active {
    color: var(--vc09-accent);
}
.vc09-bottom-btn.vc09-active i,
.vc09-bottom-btn.vc09-active .material-icons,
.vc09-bottom-btn.vc09-active ion-icon {
    color: var(--vc09-accent);
}

/* Main Content */
.vc09-main {
    padding-top: 56px;
    padding-bottom: 1rem;
}
@media (max-width: 768px) {
    .vc09-main { padding-bottom: 80px; }
}

/* Carousel */
.vc09-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--vc09-radius-lg) var(--vc09-radius-lg);
}
.vc09-slide {
    display: none;
    cursor: pointer;
    position: relative;
}
.vc09-slide img {
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: cover;
}
.vc09-carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.vc09-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: none;
    transition: var(--vc09-transition);
}
.vc09-dot-active { background: var(--vc09-warm); width: 20px; border-radius: 4px; }
.vc09-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    transition: var(--vc09-transition);
}
.vc09-carousel-arrow:hover { background: rgba(0,0,0,0.7); }
.vc09-arrow-prev { left: 8px; }
.vc09-arrow-next { right: 8px; }

/* Section */
.vc09-section {
    padding: 2rem 1.2rem;
}
.vc09-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vc09-warm);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--vc09-primary);
}
.vc09-section-title i { margin-right: 0.5rem; }
.vc09-subtitle {
    font-size: 1.4rem;
    color: var(--vc09-text-muted);
    margin-bottom: 1rem;
}

/* Game Grid */
.vc09-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}
.vc09-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--vc09-transition);
    border-radius: var(--vc09-radius);
    padding: 0.4rem;
    background: var(--vc09-card-bg);
    border: 1px solid var(--vc09-card-border);
}
.vc09-game-card:hover {
    transform: translateY(-2px);
    border-color: var(--vc09-primary);
    box-shadow: 0 4px 12px rgba(65,105,225,0.3);
}
.vc09-game-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    object-fit: cover;
}
.vc09-game-card span {
    font-size: 1rem;
    text-align: center;
    color: var(--vc09-text-light);
    margin-top: 0.3rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Header */
.vc09-cat-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}
.vc09-cat-header i,
.vc09-cat-header .material-icons {
    font-size: 2rem;
    color: var(--vc09-accent);
}
.vc09-cat-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vc09-text-light);
}

/* Promo Button */
.vc09-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--vc09-warm), #FF6B00);
    color: #000;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border-radius: var(--vc09-radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--vc09-transition);
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 16px rgba(255,165,0,0.3);
}
.vc09-promo-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255,165,0,0.5);
}

/* Promo Link */
.vc09-promo-link {
    color: var(--vc09-warm);
    font-weight: 700;
    cursor: pointer;
    border-bottom: 1px dashed var(--vc09-warm);
    transition: var(--vc09-transition);
}
.vc09-promo-link:hover { color: #FFD700; border-bottom-color: #FFD700; }

/* Card */
.vc09-card {
    background: var(--vc09-card-bg);
    border: 1px solid var(--vc09-card-border);
    border-radius: var(--vc09-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.vc09-card h3 {
    font-size: 1.6rem;
    color: var(--vc09-accent);
    margin-bottom: 0.8rem;
}
.vc09-card p {
    font-size: 1.3rem;
    color: var(--vc09-text-muted);
    line-height: 1.6;
}

/* Content Text */
.vc09-content-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--vc09-text-muted);
}
.vc09-content-text p { margin-bottom: 1rem; }
.vc09-content-text strong { color: var(--vc09-text-light); }

/* Footer */
.vc09-footer {
    background: var(--vc09-bg-navy);
    padding: 2rem 1.2rem;
    border-top: 1px solid var(--vc09-primary);
}
.vc09-footer-brand {
    font-size: 1.3rem;
    color: var(--vc09-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.vc09-footer-promo {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.vc09-footer-promo button {
    background: var(--vc09-primary);
    color: #fff;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--vc09-radius);
    border: none;
    cursor: pointer;
    transition: var(--vc09-transition);
}
.vc09-footer-promo button:hover { background: var(--vc09-accent); color: #000; }
.vc09-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.vc09-footer-links a {
    color: var(--vc09-text-muted);
    font-size: 1.2rem;
    transition: var(--vc09-transition);
}
.vc09-footer-links a:hover { color: var(--vc09-accent); }
.vc09-footer-partners {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.vc09-footer-partners img {
    height: 24px;
    opacity: 0.6;
    transition: var(--vc09-transition);
}
.vc09-footer-partners img:hover { opacity: 1; }
.vc09-footer-copy {
    text-align: center;
    font-size: 1.1rem;
    color: var(--vc09-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--vc09-card-border);
}

/* FAQ */
.vc09-faq-item {
    background: var(--vc09-card-bg);
    border: 1px solid var(--vc09-card-border);
    border-radius: var(--vc09-radius);
    padding: 1.2rem;
    margin-bottom: 0.8rem;
}
.vc09-faq-item h3 {
    font-size: 1.4rem;
    color: var(--vc09-accent);
    margin-bottom: 0.5rem;
}
.vc09-faq-item p {
    font-size: 1.2rem;
    color: var(--vc09-text-muted);
    line-height: 1.5;
}

/* Winner Showcase */
.vc09-winner-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.vc09-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--vc09-card-bg);
    padding: 0.8rem 1rem;
    border-radius: var(--vc09-radius);
    border: 1px solid var(--vc09-card-border);
}
.vc09-winner-name {
    font-size: 1.2rem;
    color: var(--vc09-text-light);
    font-weight: 600;
}
.vc09-winner-amount {
    font-size: 1.3rem;
    color: var(--vc09-warm);
    font-weight: 700;
}

/* Payment Methods */
.vc09-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}
.vc09-payment-item {
    background: var(--vc09-card-bg);
    border: 1px solid var(--vc09-card-border);
    border-radius: var(--vc09-radius);
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
    color: var(--vc09-text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Testimonial */
.vc09-testimonial {
    background: var(--vc09-card-bg);
    border: 1px solid var(--vc09-card-border);
    border-radius: var(--vc09-radius-lg);
    padding: 1.2rem;
    margin-bottom: 0.8rem;
}
.vc09-testimonial-text {
    font-size: 1.2rem;
    color: var(--vc09-text-muted);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.vc09-testimonial-author {
    font-size: 1.1rem;
    color: var(--vc09-accent);
    font-weight: 600;
}

/* Responsive */
@media (min-width: 769px) {
    .vc09-bottom-nav { display: none; }
    .vc09-main { padding-bottom: 0; }
}
@media (max-width: 360px) {
    .vc09-game-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}
