/**
 * gbet login - CSS Stylesheet
 * Website: gbetlogin.click
 * Prefix: vc06-
 */

/* CSS Variables */
:root {
    --vc06-primary: #FF5722;
    --vc06-secondary: #FF8A65;
    --vc06-bg-dark: #262626;
    --vc06-bg-darker: #1a1a1a;
    --vc06-bg-card: #2d2d2d;
    --vc06-text-light: #ADB5BD;
    --vc06-text-white: #ffffff;
    --vc06-accent-gold: #FFD700;
    --vc06-gradient-start: #FF5722;
    --vc06-gradient-end: #FF8A65;
    --vc06-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --vc06-radius: 12px;
    --vc06-radius-sm: 8px;
}

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

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--vc06-bg-dark);
    color: var(--vc06-text-light);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header */
.vc06-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--vc06-bg-darker);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--vc06-shadow);
}

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

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

.vc06-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vc06-text-white);
}

.vc06-logo-text span {
    color: var(--vc06-primary);
}

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

.vc06-btn {
    padding: 0.8rem 1.6rem;
    border-radius: var(--vc06-radius-sm);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.vc06-btn-primary {
    background: linear-gradient(135deg, var(--vc06-gradient-start), var(--vc06-gradient-end));
    color: var(--vc06-text-white);
}

.vc06-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

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

.vc06-btn-outline:hover {
    background: var(--vc06-primary);
    color: var(--vc06-text-white);
}

.vc06-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--vc06-text-white);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

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

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

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

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

.vc06-menu-nav a {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--vc06-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: var(--vc06-radius-sm);
    transition: all 0.3s ease;
}

.vc06-menu-nav a:hover {
    background: rgba(255, 87, 34, 0.2);
    color: var(--vc06-primary);
}

/* Main Content */
.vc06-main {
    padding-top: 70px;
    padding-bottom: 2rem;
}

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

.vc06-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.vc06-slide {
    min-width: 100%;
    cursor: pointer;
}

.vc06-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--vc06-radius);
}

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

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

.vc06-indicator-active {
    background: var(--vc06-primary);
    transform: scale(1.2);
}

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

.vc06-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vc06-text-white);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--vc06-primary);
}

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

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

.vc06-game-item:hover {
    transform: translateY(-5px);
}

.vc06-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--vc06-radius-sm);
    margin-bottom: 0.5rem;
}

.vc06-game-name {
    font-size: 1.1rem;
    color: var(--vc06-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Title */
.vc06-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vc06-primary);
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vc06-category-title i {
    font-size: 1.8rem;
}

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

.vc06-feature-card {
    background: var(--vc06-bg-card);
    padding: 1.5rem;
    border-radius: var(--vc06-radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.vc06-feature-card:hover {
    transform: translateY(-3px);
}

.vc06-feature-icon {
    font-size: 3rem;
    color: var(--vc06-primary);
    margin-bottom: 1rem;
}

.vc06-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vc06-text-white);
    margin-bottom: 0.5rem;
}

.vc06-feature-desc {
    font-size: 1.2rem;
    color: var(--vc06-text-light);
}

/* Promo Section */
.vc06-promo-section {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 138, 101, 0.1));
    padding: 2rem;
    border-radius: var(--vc06-radius);
    margin: 2rem 0;
    text-align: center;
}

.vc06-promo-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--vc06-text-white);
    margin-bottom: 1rem;
}

.vc06-promo-text {
    font-size: 1.4rem;
    color: var(--vc06-text-light);
    margin-bottom: 1.5rem;
}

/* Footer */
.vc06-footer {
    background: var(--vc06-bg-darker);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.vc06-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vc06-footer-desc {
    font-size: 1.3rem;
    color: var(--vc06-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.vc06-footer-link {
    padding: 0.8rem 1.5rem;
    background: var(--vc06-bg-card);
    color: var(--vc06-text-light);
    text-decoration: none;
    border-radius: var(--vc06-radius-sm);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.vc06-footer-link:hover {
    background: var(--vc06-primary);
    color: var(--vc06-text-white);
}

.vc06-footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--vc06-text-light);
    opacity: 0.7;
}

/* Mobile Bottom Navigation */
.vc06-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vc06-bg-darker);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.vc06-nav-btn i,
.vc06-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.vc06-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

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

.vc06-nav-btn:hover i,
.vc06-nav-btn.active i {
    transform: scale(1.1);
}

/* Content Cards */
.vc06-content-card {
    background: var(--vc06-bg-card);
    border-radius: var(--vc06-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.vc06-content-card h3 {
    font-size: 1.6rem;
    color: var(--vc06-text-white);
    margin-bottom: 1rem;
}

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

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

.vc06-testimonial-text {
    font-size: 1.3rem;
    color: var(--vc06-text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

.vc06-payment-item {
    background: var(--vc06-bg-card);
    padding: 1rem 1.5rem;
    border-radius: var(--vc06-radius-sm);
    font-size: 1.2rem;
    color: var(--vc06-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.vc06-winner-game {
    font-size: 1.3rem;
    color: var(--vc06-text-white);
}

.vc06-winner-amount {
    font-size: 1.4rem;
    color: var(--vc06-accent-gold);
    font-weight: 700;
}

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

.vc06-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vc06-text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vc06-faq-answer {
    padding: 0 1.5rem 1.2rem;
    font-size: 1.3rem;
    color: var(--vc06-text-light);
    line-height: 1.6;
}

/* Partners */
.vc06-partners {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.vc06-partner-logo {
    width: 60px;
    height: 40px;
    background: var(--vc06-bg-card);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--vc06-text-light);
}

/* Text Utilities */
.vc06-text-primary {
    color: var(--vc06-primary);
}

.vc06-text-white {
    color: var(--vc06-text-white);
}

.vc06-text-center {
    text-align: center;
}

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

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

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

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

    .vc06-container {
        max-width: 768px;
    }

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

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .vc06-menu-toggle {
        display: block;
    }

    .vc06-header-actions .vc06-btn {
        padding: 0.6rem 1rem;
        font-size: 1.2rem;
    }

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

    .vc06-section-title {
        font-size: 1.8rem;
    }

    .vc06-promo-title {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vc06-animate-fade {
    animation: fadeIn 0.5s ease forwards;
}
