/**
 * Pokemon Bets Layout Styles
 * Prefix: va53-
 * Color Palette: #EEEEEE | #1C2833 | #00FFFF | #004D40
 */

/* CSS Variables */
:root {
    --va53-bg-primary: #1C2833;
    --va53-bg-secondary: #004D40;
    --va53-text-primary: #EEEEEE;
    --va53-accent: #00FFFF;
    --va53-accent-dark: #00B8B8;
    --va53-gradient: linear-gradient(135deg, #1C2833 0%, #004D40 100%);
    --va53-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
    --va53-radius: 12px;
    --va53-radius-sm: 8px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--va53-bg-primary);
    color: var(--va53-text-primary);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

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

.va53-wrapper {
    padding: 2rem 0;
}

/* Header */
.va53-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 40, 51, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.va53-header-scrolled {
    background: rgba(28, 40, 51, 0.98);
    box-shadow: var(--va53-shadow);
}

.va53-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.6rem;
}

.va53-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.va53-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.va53-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--va53-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.va53-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.va53-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--va53-radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-height: 44px;
}

.va53-btn-primary {
    background: var(--va53-accent);
    color: var(--va53-bg-primary);
}

.va53-btn-primary:hover {
    background: var(--va53-accent-dark);
    transform: translateY(-2px);
}

.va53-btn-secondary {
    background: transparent;
    color: var(--va53-accent);
    border: 2px solid var(--va53-accent);
}

.va53-btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
}

.va53-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.va53-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--va53-accent);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.va53-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--va53-bg-primary);
    z-index: 9999;
    padding: 8rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 255, 255, 0.2);
}

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

.va53-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.va53-overlay-active {
    opacity: 1;
    visibility: visible;
}

.va53-nav-list {
    list-style: none;
}

.va53-nav-item {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--va53-text-primary);
    text-decoration: none;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.va53-nav-item:hover {
    color: var(--va53-accent);
    padding-left: 1.5rem;
}

/* Main Content */
main {
    padding-top: 70px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Hero/Slider Section */
.va53-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.va53-slider {
    position: relative;
    width: 100%;
    height: 200px;
}

.va53-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.va53-slide-active {
    opacity: 1;
}

.va53-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.va53-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.va53-dot-active {
    background: var(--va53-accent);
    transform: scale(1.2);
}

/* Section Styles */
.va53-section {
    padding: 2rem 0;
}

.va53-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--va53-accent);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--va53-accent);
}

/* Game Grid */
.va53-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.va53-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.va53-game-item:hover {
    transform: scale(1.05);
}

.va53-game-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--va53-radius-sm);
    object-fit: cover;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.va53-game-name {
    font-size: 1rem;
    color: var(--va53-text-primary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Category Section */
.va53-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.va53-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--va53-accent);
}

/* Cards */
.va53-card {
    background: rgba(0, 77, 64, 0.3);
    border-radius: var(--va53-radius);
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.va53-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--va53-accent);
    margin-bottom: 1rem;
}

.va53-card-content {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--va53-text-primary);
}

/* Features List */
.va53-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.va53-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: var(--va53-radius-sm);
}

.va53-feature-icon {
    font-size: 2rem;
    color: var(--va53-accent);
}

.va53-feature-text {
    font-size: 1.2rem;
    color: var(--va53-text-primary);
}

/* Promo Banner */
.va53-promo-banner {
    background: var(--va53-gradient);
    border-radius: var(--va53-radius);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid var(--va53-accent);
}

.va53-promo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--va53-accent);
    margin-bottom: 0.5rem;
}

.va53-promo-text {
    font-size: 1.3rem;
    color: var(--va53-text-primary);
    margin-bottom: 1.5rem;
}

/* Footer */
.va53-footer {
    background: rgba(0, 77, 64, 0.5);
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.va53-footer-brand {
    font-size: 1.3rem;
    color: var(--va53-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.va53-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.va53-footer-link {
    color: var(--va53-accent);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.va53-footer-link:hover {
    color: var(--va53-accent-dark);
}

.va53-footer-copyright {
    font-size: 1.1rem;
    color: rgba(238, 238, 238, 0.6);
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Bottom Navigation */
.va53-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(28, 40, 51, 0.98);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

@media (min-width: 769px) {
    .va53-bottom-nav {
        display: none;
    }
}

.va53-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 60px;
    min-height: 60px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.va53-nav-btn:hover {
    background: rgba(0, 255, 255, 0.1);
}

.va53-nav-btn.active {
    background: rgba(0, 255, 255, 0.15);
}

.va53-nav-btn i,
.va53-nav-btn .material-icons {
    font-size: 24px;
    color: var(--va53-text-primary);
    transition: color 0.3s ease;
}

.va53-nav-btn:hover i,
.va53-nav-btn:hover .material-icons,
.va53-nav-btn.active i,
.va53-nav-btn.active .material-icons {
    color: var(--va53-accent);
}

.va53-nav-btn span {
    font-size: 10px;
    color: var(--va53-text-primary);
    transition: color 0.3s ease;
}

.va53-nav-btn:hover span,
.va53-nav-btn.active span {
    color: var(--va53-accent);
}

/* Testimonials */
.va53-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.va53-testimonial {
    background: rgba(0, 77, 64, 0.3);
    padding: 1.5rem;
    border-radius: var(--va53-radius);
    border-left: 3px solid var(--va53-accent);
}

.va53-testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.va53-testimonial-author {
    font-size: 1.2rem;
    color: var(--va53-accent);
    font-weight: 600;
}

/* Payment Methods */
.va53-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.va53-payment-item {
    background: rgba(0, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--va53-radius-sm);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Winners Showcase */
.va53-winners {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.va53-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: var(--va53-radius-sm);
}

.va53-winner-name {
    font-weight: 600;
    color: var(--va53-accent);
}

.va53-winner-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
}

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

.va53-text-accent {
    color: var(--va53-accent);
}

.va53-mb-1 {
    margin-bottom: 1rem;
}

.va53-mb-2 {
    margin-bottom: 2rem;
}

.va53-mt-2 {
    margin-top: 2rem;
}

/* Link Styles */
.va53-text-link {
    color: var(--va53-accent);
    text-decoration: none;
    border-bottom: 1px dashed var(--va53-accent);
    transition: all 0.3s ease;
}

.va53-text-link:hover {
    color: var(--va53-accent-dark);
    border-bottom-style: solid;
}

/* FAQ Section */
.va53-faq-item {
    margin-bottom: 1rem;
}

.va53-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--va53-accent);
    margin-bottom: 0.5rem;
}

.va53-faq-answer {
    font-size: 1.2rem;
    color: var(--va53-text-primary);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .va53-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .va53-game-icon {
        width: 50px;
        height: 50px;
    }
}
