/**
 * jilliqq - Main Stylesheet
 * All classes use vcd3- prefix for namespace isolation
 * Mobile-first responsive design
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --vcd3-primary: #FF0000;
    --vcd3-secondary: #2E4057;
    --vcd3-accent: #C0C0C0;
    --vcd3-bg-dark: #1a1a2e;
    --vcd3-bg-darker: #16213e;
    --vcd3-text-light: #ffffff;
    --vcd3-text-muted: #a0a0a0;
    --vcd3-border: #333;
    --vcd3-success: #28a745;
    --vcd3-warning: #ffc107;
    --vcd3-gradient: linear-gradient(135deg, var(--vcd3-primary) 0%, #cc0000 100%);
    --vcd3-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --vcd3-radius: 8px;
    --vcd3-transition: all 0.3s ease;
}

/* Base Reset */
*, *::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;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--vcd3-bg-dark);
    color: var(--vcd3-text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--vcd3-primary);
    text-decoration: none;
    transition: var(--vcd3-transition);
}

a:hover {
    color: #ff3333;
}

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

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

/* Header Styles */
.vcd3-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--vcd3-bg-darker) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--vcd3-border);
    padding: 1rem 0;
}

.vcd3-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.vcd3-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.vcd3-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vcd3-primary);
    letter-spacing: 1px;
}

.vcd3-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.vcd3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    border-radius: var(--vcd3-radius);
    cursor: pointer;
    transition: var(--vcd3-transition);
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
}

.vcd3-btn-primary {
    background: var(--vcd3-gradient);
    color: var(--vcd3-text-light);
    box-shadow: var(--vcd3-shadow);
}

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

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

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

.vcd3-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--vcd3-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

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

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

.vcd3-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: var(--vcd3-transition);
}

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

.vcd3-nav-list {
    list-style: none;
    padding: 0;
}

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

.vcd3-nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--vcd3-text-light);
    font-size: 1.5rem;
    border-radius: var(--vcd3-radius);
    transition: var(--vcd3-transition);
}

.vcd3-nav-link:hover,
.vcd3-nav-active {
    background: rgba(255, 0, 0, 0.2);
    color: var(--vcd3-primary);
}

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

/* Carousel Styles */
.vcd3-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.vcd3-slides-container {
    display: flex;
    transition: transform 0.5s ease;
}

.vcd3-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
}

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

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

.vcd3-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.vcd3-slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vcd3-slide-desc {
    font-size: 1.4rem;
    color: var(--vcd3-text-muted);
}

.vcd3-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.vcd3-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--vcd3-accent);
    cursor: pointer;
    transition: var(--vcd3-transition);
}

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

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

.vcd3-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--vcd3-text-light);
    position: relative;
    padding-left: 1.5rem;
}

.vcd3-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--vcd3-primary);
    border-radius: 2px;
}

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

.vcd3-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--vcd3-transition);
    border-radius: var(--vcd3-radius);
    overflow: hidden;
}

.vcd3-game-item:hover {
    transform: translateY(-3px);
}

.vcd3-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--vcd3-radius);
    border: 2px solid transparent;
    transition: var(--vcd3-transition);
}

.vcd3-game-item:hover .vcd3-game-img {
    border-color: var(--vcd3-primary);
}

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

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

.vcd3-category-title i {
    font-size: 2rem;
}

/* Feature Cards */
.vcd3-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.vcd3-feature-card {
    background: var(--vcd3-bg-darker);
    border-radius: var(--vcd3-radius);
    padding: 1.5rem;
    border: 1px solid var(--vcd3-border);
    transition: var(--vcd3-transition);
}

.vcd3-feature-card:hover {
    border-color: var(--vcd3-primary);
    transform: translateY(-2px);
}

.vcd3-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--vcd3-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.vcd3-feature-desc {
    font-size: 1.3rem;
    color: var(--vcd3-text-muted);
    line-height: 1.4;
}

/* Promo Links */
.vcd3-promo-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: var(--vcd3-primary);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--vcd3-transition);
}

.vcd3-promo-link:hover {
    background: var(--vcd3-primary);
    color: var(--vcd3-text-light);
}

/* Testimonials */
.vcd3-testimonials {
    background: var(--vcd3-bg-darker);
    border-radius: var(--vcd3-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.vcd3-testimonial-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--vcd3-border);
}

.vcd3-testimonial-item:last-child {
    border-bottom: none;
}

.vcd3-testimonial-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

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

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

.vcd3-payment-item {
    background: var(--vcd3-bg-darker);
    padding: 1rem 1.5rem;
    border-radius: var(--vcd3-radius);
    border: 1px solid var(--vcd3-border);
    font-size: 1.3rem;
    font-weight: 500;
}

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

.vcd3-footer-brand {
    font-size: 1.4rem;
    color: var(--vcd3-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vcd3-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vcd3-footer-link {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 0, 0, 0.1);
    color: var(--vcd3-primary);
    border-radius: var(--vcd3-radius);
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--vcd3-transition);
}

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

.vcd3-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--vcd3-border);
}

.vcd3-footer-nav a {
    color: var(--vcd3-text-muted);
    font-size: 1.3rem;
}

.vcd3-footer-nav a:hover {
    color: var(--vcd3-primary);
}

.vcd3-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--vcd3-text-muted);
}

/* Mobile Bottom Navigation */
.vcd3-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, var(--vcd3-bg-darker) 0%, var(--vcd3-bg-dark) 100%);
    border-top: 1px solid var(--vcd3-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.vcd3-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(--vcd3-text-muted);
    cursor: pointer;
    transition: var(--vcd3-transition);
    border-radius: 12px;
}

.vcd3-nav-btn:hover,
.vcd3-nav-btn-active {
    color: var(--vcd3-primary);
    background: rgba(255, 0, 0, 0.1);
}

.vcd3-nav-btn i,
.vcd3-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

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

/* Partners */
.vcd3-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--vcd3-bg-darker);
    border-radius: var(--vcd3-radius);
}

.vcd3-partner-logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--vcd3-transition);
}

.vcd3-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* FAQ Styles */
.vcd3-faq-item {
    background: var(--vcd3-bg-darker);
    border-radius: var(--vcd3-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--vcd3-border);
}

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

.vcd3-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--vcd3-text-muted);
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Winners Showcase */
.vcd3-winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vcd3-winner-card {
    background: var(--vcd3-bg-darker);
    border-radius: var(--vcd3-radius);
    padding: 1.2rem;
    border: 1px solid var(--vcd3-border);
}

.vcd3-winner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vcd3-primary);
}

.vcd3-winner-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vcd3-success);
}

.vcd3-winner-game {
    font-size: 1.2rem;
    color: var(--vcd3-text-muted);
}

/* CTA Section */
.vcd3-cta {
    background: var(--vcd3-gradient);
    border-radius: var(--vcd3-radius);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}

.vcd3-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vcd3-cta-desc {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.vcd3-cta .vcd3-btn {
    background: var(--vcd3-text-light);
    color: var(--vcd3-primary);
    font-size: 1.6rem;
    padding: 1rem 3rem;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .vcd3-container {
        max-width: 768px;
    }

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

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

    .vcd3-bottom-nav {
        display: none;
    }

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

    .vcd3-menu-toggle {
        display: none;
    }

    .vcd3-desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .vcd3-desktop-nav a {
        color: var(--vcd3-text-light);
        font-size: 1.4rem;
        font-weight: 500;
    }

    .vcd3-desktop-nav a:hover {
        color: var(--vcd3-primary);
    }
}

/* Hide desktop nav on mobile */
.vcd3-desktop-nav {
    display: none;
}

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

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

/* Text Utilities */
.vcd3-text-center { text-align: center; }
.vcd3-text-primary { color: var(--vcd3-primary); }
.vcd3-text-muted { color: var(--vcd3-text-muted); }
.vcd3-mb-1 { margin-bottom: 1rem; }
.vcd3-mb-2 { margin-bottom: 2rem; }
.vcd3-mt-2 { margin-top: 2rem; }
