/**
 * PHCash11 - Theme Stylesheet
 * Website: phcash11.sbs
 * Class Prefix: vcd7-
 */

/* CSS Variables */
:root {
    --vcd7-primary: #BAE1FF;
    --vcd7-secondary: #E9ECEF;
    --vcd7-bg-dark: #262626;
    --vcd7-bg-light: #1a1a1a;
    --vcd7-text-light: #ffffff;
    --vcd7-text-muted: #a0a0a0;
    --vcd7-accent: #4CAF50;
    --vcd7-gold: #FFD700;
    --vcd7-gradient: linear-gradient(135deg, #BAE1FF 0%, #E9ECEF 100%);
    --vcd7-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --vcd7-radius: 8px;
    --vcd7-transition: all 0.3s ease;
}

/* Reset and 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-color: var(--vcd7-bg-dark);
    color: var(--vcd7-text-light);
    line-height: 1.5;
    font-size: 1.6rem;
    min-height: 100vh;
}

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

/* Header */
.vcd7-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--vcd7-bg-dark);
    border-bottom: 1px solid rgba(186, 225, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.vcd7-logo img {
    width: 32px;
    height: 32px;
}

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

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

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

.vcd7-btn-primary {
    background: var(--vcd7-primary);
    color: var(--vcd7-bg-dark);
}

.vcd7-btn-primary:hover {
    background: #a0d1ff;
    transform: translateY(-2px);
}

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

.vcd7-btn-secondary:hover {
    background: rgba(186, 225, 255, 0.1);
}

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

/* Desktop Navigation */
.vcd7-desktop-nav {
    display: none;
}

@media (min-width: 769px) {
    .vcd7-menu-toggle {
        display: block;
    }

    .vcd7-desktop-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .vcd7-desktop-nav a {
        color: var(--vcd7-text-light);
        text-decoration: none;
        font-size: 1.4rem;
        transition: var(--vcd7-transition);
    }

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

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

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

.vcd7-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(--vcd7-transition);
}

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

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

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

.vcd7-mobile-nav-links {
    list-style: none;
}

.vcd7-mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.vcd7-mobile-nav-links a {
    color: var(--vcd7-text-light);
    text-decoration: none;
    font-size: 1.6rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(186, 225, 255, 0.1);
    transition: var(--vcd7-transition);
}

.vcd7-mobile-nav-links a:hover {
    color: var(--vcd7-primary);
    padding-left: 1rem;
}

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

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

/* Carousel/Banner */
.vcd7-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--vcd7-radius);
    margin: 1rem 0;
}

.vcd7-slides {
    position: relative;
    height: 200px;
}

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

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

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

/* Section Titles */
.vcd7-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vcd7-primary);
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--vcd7-primary);
}

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

.vcd7-game-card {
    background: var(--vcd7-bg-light);
    border-radius: var(--vcd7-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--vcd7-transition);
    text-align: center;
}

.vcd7-game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vcd7-shadow);
}

.vcd7-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.vcd7-game-card-title {
    font-size: 1.1rem;
    padding: 0.5rem;
    color: var(--vcd7-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cards */
.vcd7-card {
    background: var(--vcd7-bg-light);
    border-radius: var(--vcd7-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(186, 225, 255, 0.1);
}

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

.vcd7-card-text {
    color: var(--vcd7-text-muted);
    line-height: 1.6;
}

/* Feature List */
.vcd7-feature-list {
    list-style: none;
}

.vcd7-feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(186, 225, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vcd7-feature-list li:last-child {
    border-bottom: none;
}

.vcd7-feature-icon {
    color: var(--vcd7-accent);
    font-size: 2rem;
    flex-shrink: 0;
}

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

.vcd7-testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--vcd7-text-muted);
}

.vcd7-testimonial-author {
    font-weight: 600;
    color: var(--vcd7-primary);
}

/* Payment Methods */
.vcd7-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.vcd7-payment-item {
    background: var(--vcd7-bg-light);
    padding: 1rem;
    border-radius: var(--vcd7-radius);
    text-align: center;
    font-size: 1.2rem;
}

.vcd7-payment-item i {
    font-size: 2.4rem;
    color: var(--vcd7-primary);
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
.vcd7-footer {
    background: var(--vcd7-bg-light);
    padding: 3rem 1.5rem 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(186, 225, 255, 0.2);
}

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

.vcd7-footer-desc {
    color: var(--vcd7-text-muted);
    font-size: 1.4rem;
    max-width: 300px;
    margin: 0 auto;
}

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

.vcd7-footer-links a {
    color: var(--vcd7-text-light);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    background: rgba(186, 225, 255, 0.1);
    border-radius: var(--vcd7-radius);
    transition: var(--vcd7-transition);
}

.vcd7-footer-links a:hover {
    background: var(--vcd7-primary);
    color: var(--vcd7-bg-dark);
}

.vcd7-footer-copyright {
    text-align: center;
    color: var(--vcd7-text-muted);
    font-size: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(186, 225, 255, 0.1);
}

/* Bottom Navigation */
.vcd7-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #262626 100%);
    border-top: 1px solid rgba(186, 225, 255, 0.3);
    z-index: 1000;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
}

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

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

.vcd7-nav-item:hover,
.vcd7-nav-item.vcd7-active {
    color: var(--vcd7-primary);
    background: rgba(186, 225, 255, 0.1);
    transform: scale(1.05);
}

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

.vcd7-nav-item ion-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

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

/* Winner Showcase */
.vcd7-winner-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.vcd7-winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vcd7-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--vcd7-bg-dark);
}

.vcd7-winner-name {
    font-weight: 600;
    font-size: 1.3rem;
}

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

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

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

.vcd7-promo-cta h3 {
    color: var(--vcd7-bg-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vcd7-promo-cta p {
    color: var(--vcd7-bg-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.vcd7-promo-cta .vcd7-btn {
    background: var(--vcd7-bg-dark);
    color: var(--vcd7-primary);
}

/* App Download Section */
.vcd7-app-section {
    background: var(--vcd7-bg-light);
    padding: 2rem;
    border-radius: var(--vcd7-radius);
    text-align: center;
    margin: 2rem 0;
}

.vcd7-app-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vcd7-app-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--vcd7-bg-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--vcd7-radius);
    color: var(--vcd7-text-light);
    text-decoration: none;
    transition: var(--vcd7-transition);
    cursor: pointer;
}

.vcd7-app-btn:hover {
    background: rgba(186, 225, 255, 0.2);
    transform: translateY(-2px);
}

.vcd7-app-btn i {
    font-size: 2.4rem;
}

.vcd7-app-btn-text {
    text-align: left;
}

.vcd7-app-btn-text small {
    font-size: 1rem;
    color: var(--vcd7-text-muted);
    display: block;
}

.vcd7-app-btn-text strong {
    font-size: 1.4rem;
}

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

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

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

/* Utility Classes */
.vcd7-text-center { text-align: center; }
.vcd7-text-primary { color: var(--vcd7-primary); }
.vcd7-text-gold { color: var(--vcd7-gold); }
.vcd7-mb-1 { margin-bottom: 1rem; }
.vcd7-mb-2 { margin-bottom: 2rem; }
.vcd7-mt-2 { margin-top: 2rem; }

/* Jackpot Display */
.vcd7-jackpot {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--vcd7-gold);
    border-radius: var(--vcd7-radius);
    padding: 1.5rem;
    text-align: center;
    margin: 1rem 0;
}

.vcd7-jackpot-label {
    font-size: 1.2rem;
    color: var(--vcd7-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vcd7-jackpot-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--vcd7-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* RTP Badge */
.vcd7-rtp-badge {
    display: inline-block;
    background: var(--vcd7-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

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

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

    .vcd7-header-actions {
        gap: 0.5rem;
    }

    .vcd7-btn {
        padding: 0.6rem 1rem;
        font-size: 1.2rem;
    }
}
