/**
 * GL29 Main Stylesheet
 * All classes use prefix 'vb45-' for namespace isolation
 * Website: gl29.sbs
 * Color Palette: #20B2AA | #98FB98 | #1C2833 | #006400
 */

/* CSS Variables */
:root {
    --vb45-primary: #20B2AA;
    --vb45-secondary: #98FB98;
    --vb45-bg-dark: #1C2833;
    --vb45-bg-darker: #0d1419;
    --vb45-accent: #006400;
    --vb45-text-light: #ffffff;
    --vb45-text-muted: #a0aec0;
    --vb45-gradient-start: #20B2AA;
    --vb45-gradient-end: #006400;
    --vb45-card-bg: rgba(28, 40, 51, 0.95);
    --vb45-border-color: rgba(32, 178, 170, 0.3);
    --vb45-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --vb45-radius: 12px;
    --vb45-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', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--vb45-bg-darker) 0%, var(--vb45-bg-dark) 100%);
    color: var(--vb45-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

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

/* Header */
.vb45-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--vb45-bg-darker) 0%, rgba(28, 40, 51, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--vb45-border-color);
    transition: all 0.3s ease;
}

.vb45-header-scrolled {
    background: rgba(13, 20, 25, 0.98);
    box-shadow: var(--vb45-shadow);
}

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

.vb45-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vb45-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.vb45-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--vb45-primary), var(--vb45-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.vb45-btn-primary {
    background: linear-gradient(135deg, var(--vb45-primary) 0%, var(--vb45-accent) 100%);
    color: var(--vb45-text-light);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

.vb45-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.6);
}

.vb45-btn-outline {
    background: transparent;
    color: var(--vb45-primary);
    border: 2px solid var(--vb45-primary);
}

.vb45-btn-outline:hover {
    background: var(--vb45-primary);
    color: var(--vb45-bg-dark);
}

.vb45-menu-toggle {
    background: transparent;
    border: none;
    color: var(--vb45-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.vb45-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--vb45-bg-darker);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
    border-left: 1px solid var(--vb45-border-color);
}

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

.vb45-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;
}

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

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

.vb45-menu-close {
    background: transparent;
    border: none;
    color: var(--vb45-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

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

.vb45-nav-item {
    margin-bottom: 0.5rem;
}

.vb45-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
    color: var(--vb45-text-light);
    border-radius: var(--vb45-radius-sm);
    transition: all 0.3s ease;
}

.vb45-nav-link:hover {
    background: rgba(32, 178, 170, 0.15);
    color: var(--vb45-primary);
}

.vb45-nav-link i {
    font-size: 1.8rem;
    width: 24px;
    text-align: center;
}

/* Main Content */
.vb45-main {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Carousel */
.vb45-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--vb45-radius);
    margin-bottom: 2rem;
}

.vb45-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

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

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

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

.vb45-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

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

.vb45-dot-active {
    background: var(--vb45-primary);
    transform: scale(1.2);
}

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

.vb45-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--vb45-text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vb45-section-title i {
    color: var(--vb45-primary);
}

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

.vb45-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.vb45-game-icon {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--vb45-radius-sm);
    overflow: hidden;
    background: var(--vb45-card-bg);
    margin-bottom: 0.5rem;
    border: 1px solid var(--vb45-border-color);
}

.vb45-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vb45-game-name {
    font-size: 1.1rem;
    color: var(--vb45-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category Tabs */
.vb45-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.vb45-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--vb45-primary), var(--vb45-accent));
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.vb45-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--vb45-primary);
}

.vb45-card-text {
    font-size: 1.3rem;
    color: var(--vb45-text-muted);
    line-height: 1.8;
}

/* Features Grid */
.vb45-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vb45-feature-item {
    background: var(--vb45-card-bg);
    padding: 1.5rem;
    border-radius: var(--vb45-radius-sm);
    text-align: center;
    border: 1px solid var(--vb45-border-color);
}

.vb45-feature-icon {
    font-size: 2.4rem;
    color: var(--vb45-primary);
    margin-bottom: 0.8rem;
}

.vb45-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vb45-feature-desc {
    font-size: 1.1rem;
    color: var(--vb45-text-muted);
}

/* Promo Links */
.vb45-promo-text {
    color: var(--vb45-primary);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vb45-promo-text:hover {
    color: var(--vb45-secondary);
}

.vb45-promo-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--vb45-primary), var(--vb45-accent));
    color: var(--vb45-text-light);
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: var(--vb45-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.vb45-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.5);
}

/* Footer */
.vb45-footer {
    background: var(--vb45-bg-darker);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--vb45-border-color);
}

.vb45-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.vb45-footer-desc {
    font-size: 1.3rem;
    color: var(--vb45-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.vb45-footer-link {
    font-size: 1.2rem;
    color: var(--vb45-text-muted);
    transition: color 0.3s ease;
}

.vb45-footer-link:hover {
    color: var(--vb45-primary);
}

.vb45-footer-promos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vb45-footer-promo-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--vb45-primary), var(--vb45-accent));
    color: var(--vb45-text-light);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--vb45-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vb45-footer-promo-btn:hover {
    transform: scale(1.05);
}

.vb45-footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--vb45-text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid var(--vb45-border-color);
}

/* Bottom Navigation */
.vb45-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(28, 40, 51, 0.98) 0%, var(--vb45-bg-darker) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--vb45-border-color);
    padding: 0.5rem 0;
}

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

.vb45-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--vb45-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vb45-nav-btn:hover,
.vb45-nav-btn-active {
    color: var(--vb45-primary);
    transform: scale(1.1);
}

.vb45-nav-btn i {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.vb45-nav-btn span {
    font-size: 1rem;
    font-weight: 500;
}

/* FAQ Section */
.vb45-faq-item {
    background: var(--vb45-card-bg);
    border-radius: var(--vb45-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--vb45-border-color);
}

.vb45-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vb45-text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vb45-faq-question i {
    color: var(--vb45-primary);
}

.vb45-faq-answer {
    padding: 0 1.5rem 1.2rem;
    font-size: 1.3rem;
    color: var(--vb45-text-muted);
    line-height: 1.8;
}

/* Testimonials */
.vb45-testimonial {
    background: var(--vb45-card-bg);
    border-radius: var(--vb45-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--vb45-border-color);
}

.vb45-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vb45-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vb45-primary), var(--vb45-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.vb45-testimonial-name {
    font-size: 1.4rem;
    font-weight: 600;
}

.vb45-testimonial-text {
    font-size: 1.3rem;
    color: var(--vb45-text-muted);
    line-height: 1.6;
}

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

.vb45-payment-item {
    background: var(--vb45-card-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--vb45-radius-sm);
    border: 1px solid var(--vb45-border-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vb45-payment-item i {
    color: var(--vb45-primary);
    font-size: 1.8rem;
}

/* Winners Showcase */
.vb45-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--vb45-card-bg);
    border-radius: var(--vb45-radius-sm);
    margin-bottom: 0.8rem;
    border: 1px solid var(--vb45-border-color);
}

.vb45-winner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vb45-winner-game {
    font-size: 1.3rem;
    font-weight: 600;
}

.vb45-winner-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vb45-secondary);
}

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

    .vb45-main {
        padding-bottom: 2rem;
    }

    .vb45-container {
        max-width: 800px;
    }

    .vb45-header-content {
        max-width: 800px;
    }

    .vb45-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .vb45-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

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

.vb45-hidden {
    display: none;
}
