/**
 * Bouncing Ball - Main Stylesheet
 * File: css/design-0a8c.css
 * Prefix: vcb0-
 * Color Palette: #FFEFD5 | #FFF176 | #FF5722 | #D2B48C | #1A1A1A
 */

/* CSS Variables */
:root {
    --vcb0-primary: #FF5722;
    --vcb0-secondary: #FFF176;
    --vcb0-accent: #FFEFD5;
    --vcb0-bg: #1A1A1A;
    --vcb0-bg-light: #2A2A2A;
    --vcb0-text: #FFEFD5;
    --vcb0-text-dark: #1A1A1A;
    --vcb0-tan: #D2B48C;
    --vcb0-border-radius: 8px;
    --vcb0-transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--vcb0-bg);
    color: var(--vcb0-text);
    line-height: 1.5rem;
    min-height: 100vh;
}

a {
    color: var(--vcb0-secondary);
    text-decoration: none;
    transition: var(--vcb0-transition);
}

a:hover {
    color: var(--vcb0-primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.vcb0-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.vcb0-wrapper {
    padding: 1rem 0;
}

/* Header Styles */
.vcb0-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vcb0-bg) 0%, var(--vcb0-bg-light) 100%);
    border-bottom: 2px solid var(--vcb0-primary);
    z-index: 1000;
    padding: 0.8rem 0;
}

.vcb0-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.vcb0-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vcb0-logo img {
    width: 32px;
    height: 32px;
}

.vcb0-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vcb0-secondary);
}

.vcb0-header-btns {
    display: flex;
    gap: 0.6rem;
}

.vcb0-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--vcb0-border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--vcb0-transition);
    border: none;
    min-height: 36px;
    min-width: 70px;
}

.vcb0-btn-primary {
    background: linear-gradient(135deg, var(--vcb0-primary) 0%, #FF7043 100%);
    color: var(--vcb0-text);
}

.vcb0-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.vcb0-btn-secondary {
    background: transparent;
    border: 2px solid var(--vcb0-secondary);
    color: var(--vcb0-secondary);
}

.vcb0-btn-secondary:hover {
    background: var(--vcb0-secondary);
    color: var(--vcb0-bg);
}

.vcb0-menu-toggle {
    background: none;
    border: none;
    color: var(--vcb0-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.vcb0-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--vcb0-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.vcb0-menu-active {
    right: 0;
}

.vcb0-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(--vcb0-transition);
}

.vcb0-overlay-active {
    opacity: 1;
    visibility: visible;
}

.vcb0-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--vcb0-tan);
}

.vcb0-menu-title {
    font-size: 1.8rem;
    color: var(--vcb0-secondary);
}

.vcb0-menu-close {
    background: none;
    border: none;
    color: var(--vcb0-text);
    font-size: 2.4rem;
    cursor: pointer;
}

.vcb0-menu-nav {
    list-style: none;
}

.vcb0-menu-nav li {
    margin-bottom: 0.8rem;
}

.vcb0-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--vcb0-text);
    font-size: 1.4rem;
    border-radius: var(--vcb0-border-radius);
    transition: var(--vcb0-transition);
}

.vcb0-menu-nav a:hover {
    background: var(--vcb0-primary);
    color: var(--vcb0-text);
}

.vcb0-menu-section-title {
    font-size: 1.2rem;
    color: var(--vcb0-tan);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-bottom: 1px solid var(--vcb0-tan);
}

/* Main Content */
main {
    padding-top: 60px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.vcb0-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.vcb0-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.vcb0-slide-active {
    opacity: 1;
}

.vcb0-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vcb0-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.vcb0-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.vcb0-dot-active {
    background: var(--vcb0-secondary);
}

/* Section Styles */
.vcb0-section {
    padding: 2rem 1.5rem;
}

.vcb0-section-title {
    font-size: 1.8rem;
    color: var(--vcb0-secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--vcb0-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vcb0-section-title i {
    color: var(--vcb0-primary);
}

/* Game Grid */
.vcb0-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.vcb0-game-card {
    background: var(--vcb0-bg-light);
    border-radius: var(--vcb0-border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--vcb0-transition);
    border: 1px solid transparent;
}

.vcb0-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--vcb0-primary);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.vcb0-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.vcb0-game-name {
    font-size: 1rem;
    color: var(--vcb0-text);
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Tabs */
.vcb0-category-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--vcb0-primary) 0%, #FF7043 100%);
    color: var(--vcb0-text);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Content Card */
.vcb0-card {
    background: var(--vcb0-bg-light);
    border-radius: var(--vcb0-border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--vcb0-tan);
}

.vcb0-card-title {
    font-size: 1.5rem;
    color: var(--vcb0-secondary);
    margin-bottom: 1rem;
}

.vcb0-card-text {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: var(--vcb0-text);
}

.vcb0-card-text p {
    margin-bottom: 1rem;
}

/* Feature List */
.vcb0-feature-list {
    list-style: none;
}

.vcb0-feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--vcb0-bg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vcb0-feature-list li:last-child {
    border-bottom: none;
}

.vcb0-feature-list i {
    color: var(--vcb0-primary);
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.vcb0-feature-text h4 {
    font-size: 1.4rem;
    color: var(--vcb0-secondary);
    margin-bottom: 0.3rem;
}

.vcb0-feature-text p {
    font-size: 1.2rem;
    color: var(--vcb0-tan);
}

/* Promo Link Styles */
.vcb0-promo-link {
    color: var(--vcb0-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--vcb0-transition);
}

.vcb0-promo-link:hover {
    color: var(--vcb0-primary);
    text-decoration: underline;
}

.vcb0-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--vcb0-primary) 0%, #FF7043 100%);
    color: var(--vcb0-text);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--vcb0-transition);
    border: none;
    text-align: center;
}

.vcb0-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.5);
}

/* FAQ Section */
.vcb0-faq-item {
    background: var(--vcb0-bg-light);
    border-radius: var(--vcb0-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.vcb0-faq-question {
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vcb0-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vcb0-faq-answer {
    padding: 0 1.2rem 1.2rem;
    font-size: 1.2rem;
    color: var(--vcb0-text);
    line-height: 1.6rem;
}

/* Footer */
.vcb0-footer {
    background: var(--vcb0-bg-light);
    padding: 2rem 1.5rem;
    border-top: 2px solid var(--vcb0-primary);
}

.vcb0-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vcb0-footer-links a {
    font-size: 1.2rem;
    color: var(--vcb0-text);
}

.vcb0-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.vcb0-partners img {
    height: 24px;
    opacity: 0.7;
    transition: var(--vcb0-transition);
}

.vcb0-partners img:hover {
    opacity: 1;
}

.vcb0-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--vcb0-tan);
}

/* Mobile Bottom Navigation */
.vcb0-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, var(--vcb0-bg-light) 0%, var(--vcb0-bg) 100%);
    border-top: 2px solid var(--vcb0-primary);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

@media (min-width: 769px) {
    .vcb0-bottom-nav {
        display: none;
    }
}

.vcb0-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(--vcb0-text);
    cursor: pointer;
    transition: var(--vcb0-transition);
    border-radius: 12px;
}

.vcb0-nav-btn:hover,
.vcb0-nav-btn:active {
    background: rgba(255, 87, 34, 0.2);
    color: var(--vcb0-primary);
}

.vcb0-nav-btn i,
.vcb0-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 4px;
}

.vcb0-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

.vcb0-nav-btn-active {
    color: var(--vcb0-secondary);
}

.vcb0-nav-btn-active i,
.vcb0-nav-btn-active .material-icons {
    color: var(--vcb0-secondary);
}

/* Responsive Adjustments */
@media (max-width: 380px) {
    .vcb0-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vcb0-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1.1rem;
        min-width: 60px;
    }
}

/* Utility Classes */
.vcb0-text-center {
    text-align: center;
}

.vcb0-mt-1 {
    margin-top: 1rem;
}

.vcb0-mb-1 {
    margin-bottom: 1rem;
}

.vcb0-mt-2 {
    margin-top: 2rem;
}

.vcb0-mb-2 {
    margin-bottom: 2rem;
}

.vcb0-hidden {
    display: none;
}

/* RTP Table */
.vcb0-rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2rem;
}

.vcb0-rtp-table th,
.vcb0-rtp-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--vcb0-bg);
}

.vcb0-rtp-table th {
    background: var(--vcb0-primary);
    color: var(--vcb0-text);
    font-weight: 600;
}

.vcb0-rtp-table tr:hover {
    background: rgba(255, 87, 34, 0.1);
}

/* Promo Banner */
.vcb0-promo-banner {
    background: linear-gradient(135deg, var(--vcb0-primary) 0%, #FF7043 50%, var(--vcb0-secondary) 100%);
    padding: 1.5rem;
    border-radius: var(--vcb0-border-radius);
    text-align: center;
    margin: 1rem 0;
}

.vcb0-promo-banner h3 {
    font-size: 1.6rem;
    color: var(--vcb0-bg);
    margin-bottom: 0.5rem;
}

.vcb0-promo-banner p {
    font-size: 1.2rem;
    color: var(--vcb0-bg);
}
