/**
 * bl77 casino - Chromatic Design System
 * CSS Class Prefix: v0ce-
 * Color Palette: #FAFAD2 | #DEB887 | #EEE8AA | #0A0A0A | #FFB74D
 */

/* CSS Variables */
:root {
    --v0ce-primary: #FFB74D;
    --v0ce-secondary: #DEB887;
    --v0ce-accent: #EEE8AA;
    --v0ce-bg: #0A0A0A;
    --v0ce-bg-light: #1a1a1a;
    --v0ce-text: #FAFAD2;
    --v0ce-text-muted: #b8b8a0;
    --v0ce-border: #333333;
    --v0ce-success: #4CAF50;
    --v0ce-danger: #f44336;
    --v0ce-gradient: linear-gradient(135deg, #FFB74D 0%, #DEB887 50%, #EEE8AA 100%);
    --v0ce-shadow: 0 4px 20px rgba(255, 183, 77, 0.3);
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v0ce-bg);
    color: var(--v0ce-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.v0ce-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.v0ce-wrapper {
    padding: 1rem 0;
}

/* Header */
.v0ce-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--v0ce-bg) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid var(--v0ce-border);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

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

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

.v0ce-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--v0ce-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v0ce-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.v0ce-menu-toggle {
    background: none;
    border: none;
    color: var(--v0ce-text);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
}

/* Buttons */
.v0ce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 36px;
}

.v0ce-btn-primary {
    background: var(--v0ce-gradient);
    color: var(--v0ce-bg);
}

.v0ce-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--v0ce-shadow);
}

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

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

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

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

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

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

.v0ce-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--v0ce-text);
    font-size: 2rem;
    cursor: pointer;
}

.v0ce-menu-nav {
    margin-top: 3rem;
    list-style: none;
    padding: 0;
}

.v0ce-menu-nav li {
    margin-bottom: 0.8rem;
}

.v0ce-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--v0ce-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.v0ce-menu-nav a:hover {
    background: var(--v0ce-border);
    color: var(--v0ce-primary);
}

/* Carousel */
.v0ce-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 1rem 0;
}

.v0ce-slide-container {
    display: flex;
    transition: transform 0.5s ease;
}

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

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

.v0ce-slide img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

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

/* Section */
.v0ce-section {
    padding: 1.5rem 0;
}

.v0ce-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--v0ce-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v0ce-section-subtitle {
    font-size: 1.4rem;
    color: var(--v0ce-text-muted);
    margin-bottom: 1.5rem;
}

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

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

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

.v0ce-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--v0ce-border);
    transition: border-color 0.3s ease;
}

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

.v0ce-game-name {
    font-size: 1rem;
    color: var(--v0ce-text);
    margin-top: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Cards */
.v0ce-card {
    background: var(--v0ce-bg-light);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid var(--v0ce-border);
    margin-bottom: 1rem;
}

.v0ce-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--v0ce-primary);
    margin-bottom: 0.8rem;
}

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

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

.v0ce-feature-item {
    background: var(--v0ce-bg-light);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--v0ce-border);
}

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

.v0ce-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--v0ce-text);
}

/* Bottom Navigation */
.v0ce-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, var(--v0ce-bg) 100%);
    border-top: 1px solid var(--v0ce-border);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    height: 60px;
}

.v0ce-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 50px;
    color: var(--v0ce-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.v0ce-bottom-nav-item:hover,
.v0ce-nav-active {
    color: var(--v0ce-primary);
}

.v0ce-bottom-nav-item .material-icons,
.v0ce-bottom-nav-item .fas,
.v0ce-bottom-nav-item .far,
.v0ce-bottom-nav-item ion-icon {
    font-size: 22px;
    margin-bottom: 2px;
}

.v0ce-bottom-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Footer */
.v0ce-footer {
    background: var(--v0ce-bg-light);
    border-top: 1px solid var(--v0ce-border);
    padding: 1.5rem 0;
    text-align: center;
}

.v0ce-footer-brand {
    font-size: 1.3rem;
    color: var(--v0ce-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.v0ce-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.v0ce-footer-link {
    padding: 0.5rem 1rem;
    background: var(--v0ce-bg);
    border: 1px solid var(--v0ce-border);
    border-radius: 6px;
    color: var(--v0ce-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.v0ce-copyright {
    font-size: 1.1rem;
    color: var(--v0ce-text-muted);
}

/* RTP Display */
.v0ce-rtp-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.v0ce-rtp-green {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.v0ce-rtp-gold {
    background: rgba(255, 183, 77, 0.2);
    color: var(--v0ce-primary);
}

.v0ce-rtp-diamond {
    background: rgba(156, 39, 176, 0.2);
    color: #CE93D8;
}

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

.v0ce-payment-item {
    background: var(--v0ce-bg-light);
    border: 1px solid var(--v0ce-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    color: var(--v0ce-text);
}

/* Testimonials */
.v0ce-testimonial {
    background: var(--v0ce-bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--v0ce-primary);
}

.v0ce-testimonial-author {
    font-weight: 600;
    color: var(--v0ce-primary);
    margin-bottom: 0.4rem;
}

.v0ce-testimonial-text {
    font-size: 1.2rem;
    color: var(--v0ce-text-muted);
    font-style: italic;
}

/* Winners */
.v0ce-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background: var(--v0ce-bg-light);
    border-radius: 8px;
    margin-bottom: 0.6rem;
}

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

.v0ce-winner-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v0ce-primary);
}

/* Utilities */
.v0ce-text-center { text-align: center; }
.v0ce-text-left { text-align: left; }
.v0ce-mb-1 { margin-bottom: 0.5rem; }
.v0ce-mb-2 { margin-bottom: 1rem; }
.v0ce-mb-3 { margin-bottom: 1.5rem; }
.v0ce-mt-2 { margin-top: 1rem; }
.v0ce-hidden { display: none; }

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

.v0ce-promo-link:hover {
    color: var(--v0ce-secondary);
    text-decoration: underline;
}

/* Responsive - Hide bottom nav on desktop */
@media (min-width: 769px) {
    .v0ce-bottom-nav {
        display: none;
    }

    .v0ce-main {
        padding-bottom: 0;
    }

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .v0ce-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }

    .v0ce-game-name {
        font-size: 0.9rem;
    }
}

/* FAQ Styles */
.v0ce-faq-item {
    background: var(--v0ce-bg-light);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.v0ce-faq-question {
    padding: 1rem;
    font-weight: 600;
    color: var(--v0ce-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v0ce-faq-answer {
    padding: 0 1rem 1rem;
    color: var(--v0ce-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Tips List */
.v0ce-tips-list {
    list-style: none;
    padding: 0;
}

.v0ce-tips-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--v0ce-border);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.v0ce-tips-list li:last-child {
    border-bottom: none;
}

.v0ce-tips-icon {
    color: var(--v0ce-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* App Download */
.v0ce-app-download {
    background: linear-gradient(135deg, var(--v0ce-bg-light) 0%, var(--v0ce-bg) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--v0ce-border);
}

.v0ce-app-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--v0ce-text);
    margin-bottom: 0.8rem;
}

.v0ce-app-desc {
    font-size: 1.2rem;
    color: var(--v0ce-text-muted);
    margin-bottom: 1rem;
}
