/**
 * BunnyGaming Core CSS Module
 * Prefix: ve6b-
 * Version: 1.0.0
 */

/* CSS Variables */
:root {
    --ve6b-primary: #FF0000;
    --ve6b-secondary: #FF3333;
    --ve6b-bg: #141414;
    --ve6b-bg-light: #1a1a1a;
    --ve6b-bg-card: #222222;
    --ve6b-text: #ffffff;
    --ve6b-text-muted: #aaaaaa;
    --ve6b-border: #333333;
    --ve6b-gradient: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    --ve6b-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    --ve6b-radius: 8px;
    --ve6b-radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--ve6b-bg);
    color: var(--ve6b-text);
    line-height: 1.5;
    min-height: 100vh;
    max-width: 430px;
    margin: 0 auto;
}

/* Container */
.ve6b-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ve6b-wrapper {
    padding-top: 6rem;
}

/* Header */
.ve6b-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: var(--ve6b-bg);
    border-bottom: 1px solid var(--ve6b-border);
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.ve6b-header-scrolled {
    background: rgba(20, 20, 20, 0.98);
    box-shadow: var(--ve6b-shadow);
}

.ve6b-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ve6b-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--ve6b-text);
}

.ve6b-logo img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
}

.ve6b-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ve6b-primary);
}

.ve6b-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ve6b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--ve6b-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    min-height: 3.6rem;
    min-width: 6rem;
}

.ve6b-btn-primary {
    background: var(--ve6b-gradient);
    color: var(--ve6b-text);
}

.ve6b-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--ve6b-shadow);
}

.ve6b-btn-outline {
    background: transparent;
    color: var(--ve6b-primary);
    border: 2px solid var(--ve6b-primary);
}

.ve6b-btn-outline:hover {
    background: var(--ve6b-primary);
    color: var(--ve6b-text);
}

.ve6b-menu-toggle {
    background: none;
    border: none;
    color: var(--ve6b-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.ve6b-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--ve6b-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.ve6b-menu-active {
    right: 0;
}

.ve6b-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;
}

.ve6b-overlay-active {
    opacity: 1;
    visibility: visible;
}

.ve6b-mobile-menu ul {
    list-style: none;
}

.ve6b-mobile-menu li {
    border-bottom: 1px solid var(--ve6b-border);
}

.ve6b-mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: var(--ve6b-text);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.ve6b-mobile-menu a:hover {
    color: var(--ve6b-primary);
}

/* Carousel */
.ve6b-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.ve6b-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.ve6b-slide {
    min-width: 100%;
    display: none;
}

.ve6b-slide-active {
    display: block;
}

.ve6b-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--ve6b-radius);
    cursor: pointer;
}

.ve6b-slide-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 0;
}

.ve6b-slide-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--ve6b-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ve6b-dot-active {
    background: var(--ve6b-primary);
    transform: scale(1.2);
}

/* Game Grid */
.ve6b-game-section {
    padding: 2rem 0;
}

.ve6b-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ve6b-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ve6b-primary);
}

.ve6b-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ve6b-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ve6b-game-item:hover {
    transform: translateY(-5px);
}

.ve6b-game-img {
    width: 6rem;
    height: 6rem;
    border-radius: var(--ve6b-radius);
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--ve6b-border);
    transition: border-color 0.3s ease;
}

.ve6b-game-item:hover .ve6b-game-img {
    border-color: var(--ve6b-primary);
}

.ve6b-game-name {
    font-size: 1rem;
    color: var(--ve6b-text);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Content Sections */
.ve6b-content-section {
    background: var(--ve6b-bg-card);
    border-radius: var(--ve6b-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ve6b-content-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ve6b-primary);
    margin-bottom: 1rem;
}

.ve6b-content-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--ve6b-text-muted);
}

.ve6b-content-text p {
    margin-bottom: 1rem;
}

.ve6b-content-text a {
    color: var(--ve6b-primary);
    text-decoration: none;
    font-weight: 600;
}

.ve6b-content-text a:hover {
    text-decoration: underline;
}

.ve6b-promo-link {
    color: var(--ve6b-primary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

/* Footer */
.ve6b-footer {
    background: var(--ve6b-bg-light);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.ve6b-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.ve6b-footer-links a {
    color: var(--ve6b-text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ve6b-footer-links a:hover {
    color: var(--ve6b-primary);
}

.ve6b-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ve6b-partners img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ve6b-partners img:hover {
    opacity: 1;
}

.ve6b-copyright {
    text-align: center;
    color: var(--ve6b-text-muted);
    font-size: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ve6b-border);
}

/* Bottom Navigation */
.ve6b-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: var(--ve6b-bg-light);
    border-top: 1px solid var(--ve6b-border);
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    z-index: 1000;
    height: 6rem;
}

.ve6b-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
    min-height: 5rem;
    color: var(--ve6b-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ve6b-nav-item:hover,
.ve6b-nav-item-active {
    color: var(--ve6b-primary);
}

.ve6b-nav-item i,
.ve6b-nav-item .material-icons {
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
}

.ve6b-nav-item span {
    font-size: 1rem;
}

/* Desktop Hide */
@media (min-width: 769px) {
    .ve6b-bottom-nav {
        display: none;
    }
}

/* Mobile Padding for Bottom Nav */
@media (max-width: 768px) {
    .ve6b-wrapper {
        padding-bottom: 8rem;
    }
}

/* Utility Classes */
.ve6b-text-center { text-align: center; }
.ve6b-mb-1 { margin-bottom: 1rem; }
.ve6b-mb-2 { margin-bottom: 2rem; }
.ve6b-mt-2 { margin-top: 2rem; }
.ve6b-hidden { display: none; }

/* Features List */
.ve6b-features-list {
    list-style: none;
}

.ve6b-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ve6b-border);
}

.ve6b-features-list li:last-child {
    border-bottom: none;
}

.ve6b-features-list i {
    color: var(--ve6b-primary);
    font-size: 1.6rem;
    margin-top: 0.2rem;
}

.ve6b-features-list span {
    font-size: 1.3rem;
    color: var(--ve6b-text-muted);
    line-height: 1.5;
}

/* FAQ Section */
.ve6b-faq-item {
    background: var(--ve6b-bg-card);
    border-radius: var(--ve6b-radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.ve6b-faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ve6b-primary);
    margin-bottom: 0.8rem;
}

.ve6b-faq-answer {
    font-size: 1.3rem;
    color: var(--ve6b-text-muted);
    line-height: 1.6;
}

/* Promo Banner */
.ve6b-promo-banner {
    background: var(--ve6b-gradient);
    border-radius: var(--ve6b-radius-lg);
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.ve6b-promo-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.ve6b-promo-banner p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* H1 Title */
.ve6b-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ve6b-text);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.3;
}

/* RTP Stats */
.ve6b-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ve6b-rtp-item {
    background: var(--ve6b-bg);
    border-radius: var(--ve6b-radius);
    padding: 1rem;
    text-align: center;
}

.ve6b-rtp-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ve6b-primary);
}

.ve6b-rtp-label {
    font-size: 1.1rem;
    color: var(--ve6b-text-muted);
}
