/**
 * GCash Gaming Platform - Main Stylesheet
 * All classes use vcd6- prefix for namespace isolation
 * Website: gcash.click
 * Color Palette: #FFEBCD | #1B263B | #F0E68C | #00E5FF | #B8860B
 */

/* CSS Variables */
:root {
    --vcd6-primary: #00E5FF;
    --vcd6-secondary: #F0E68C;
    --vcd6-accent: #B8860B;
    --vcd6-bg-dark: #1B263B;
    --vcd6-bg-light: #FFEBCD;
    --vcd6-text-light: #FFEBCD;
    --vcd6-text-dark: #1B263B;
    --vcd6-gradient: linear-gradient(135deg, #1B263B 0%, #2d3e5f 100%);
    --vcd6-gold: #B8860B;
    --vcd6-cyan: #00E5FF;
}

/* 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: var(--vcd6-bg-dark);
    color: var(--vcd6-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header Styles */
.vcd6-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.98) 0%, rgba(27, 38, 59, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

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

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

.vcd6-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.vcd6-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vcd6-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.vcd6-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.vcd6-btn-register {
    background: linear-gradient(135deg, var(--vcd6-gold) 0%, #d4a817 100%);
    color: var(--vcd6-text-dark);
}

.vcd6-btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

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

.vcd6-btn-login:hover {
    background: var(--vcd6-primary);
    color: var(--vcd6-text-dark);
}

.vcd6-menu-btn {
    background: transparent;
    border: none;
    color: var(--vcd6-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
}

/* Mobile Menu */
.vcd6-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--vcd6-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    border-left: 1px solid rgba(0, 229, 255, 0.2);
}

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

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

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

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

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

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

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

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

.vcd6-menu-nav a:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--vcd6-primary);
}

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

/* Carousel */
.vcd6-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.vcd6-slide {
    display: none;
    width: 100%;
    cursor: pointer;
}

.vcd6-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.vcd6-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.vcd6-dot-active {
    background: var(--vcd6-primary);
    width: 24px;
    border-radius: 4px;
}

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

.vcd6-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vcd6-primary);
    margin-bottom: 1.2rem;
    text-align: center;
}

.vcd6-section-subtitle {
    font-size: 1.3rem;
    color: var(--vcd6-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.vcd6-game-card {
    background: linear-gradient(145deg, rgba(45, 62, 95, 0.8) 0%, rgba(27, 38, 59, 0.9) 100%);
    border-radius: 10px;
    padding: 0.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.vcd6-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--vcd6-primary);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.vcd6-game-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.4rem;
}

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

/* Category Badge */
.vcd6-category-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--vcd6-primary) 0%, #00b8d4 100%);
    color: var(--vcd6-text-dark);
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Box */
.vcd6-content-box {
    background: linear-gradient(145deg, rgba(45, 62, 95, 0.6) 0%, rgba(27, 38, 59, 0.8) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.vcd6-content-box h2 {
    font-size: 1.6rem;
    color: var(--vcd6-primary);
    margin-bottom: 1rem;
}

.vcd6-content-box p {
    font-size: 1.3rem;
    color: var(--vcd6-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Features List */
.vcd6-features-list {
    list-style: none;
}

.vcd6-features-list li {
    padding: 0.8rem 0;
    font-size: 1.3rem;
    color: var(--vcd6-text-light);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vcd6-features-list li:last-child {
    border-bottom: none;
}

.vcd6-features-list i {
    color: var(--vcd6-gold);
    font-size: 1.4rem;
}

/* CTA Button */
.vcd6-cta-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--vcd6-gold) 0%, #d4a817 100%);
    color: var(--vcd6-text-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.vcd6-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Testimonials */
.vcd6-testimonial {
    background: rgba(45, 62, 95, 0.5);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--vcd6-gold);
}

.vcd6-testimonial-text {
    font-size: 1.2rem;
    color: var(--vcd6-text-light);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.vcd6-testimonial-author {
    font-size: 1.1rem;
    color: var(--vcd6-secondary);
    font-weight: 600;
}

/* Stats Grid */
.vcd6-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vcd6-stat-item {
    background: linear-gradient(145deg, rgba(45, 62, 95, 0.6) 0%, rgba(27, 38, 59, 0.8) 100%);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.vcd6-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vcd6-gold);
}

.vcd6-stat-label {
    font-size: 1.1rem;
    color: var(--vcd6-text-light);
}

/* Footer */
.vcd6-footer {
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.95) 0%, rgba(20, 28, 45, 1) 100%);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.vcd6-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vcd6-footer-brand p {
    font-size: 1.2rem;
    color: var(--vcd6-text-light);
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

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

.vcd6-footer-links a {
    color: var(--vcd6-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.vcd6-footer-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 235, 205, 0.6);
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

/* Mobile Bottom Navigation */
.vcd6-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.98) 0%, rgba(20, 28, 45, 1) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

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

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

.vcd6-bottom-nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
}

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

.vcd6-bottom-nav-item.active {
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
}

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

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .vcd6-main {
        padding-bottom: 80px;
    }
}

/* Partners */
.vcd6-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.vcd6-partner-logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.vcd6-partner-logo:hover {
    opacity: 1;
}

/* Text Links */
.vcd6-text-link {
    color: var(--vcd6-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Highlight Text */
.vcd6-highlight {
    color: var(--vcd6-gold);
    font-weight: 600;
}

/* Promotional Links */
.vcd6-promo-link {
    color: var(--vcd6-gold);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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