/* VE23-1 THEME - CSS Framework for bigwin casino */
/* Mobile-first responsive design with professional color palette */

:root {
    /* Color variables with ve23- prefix */
    --ve23-primary: #2E8B57;
    --ve23-primary-dark: #006400;
    --ve23-secondary: #A0522D;
    --ve23-accent: #9AFF9A;
    --ve23-text-dark: #333333;
    --ve23-text-light: #FFFFFF;
    --ve23-bg-dark: #1a1a1a;
    --ve23-bg-light: #f5f5f5;
    --ve23-border: #444444;
    --ve23-shadow: rgba(0, 0, 0, 0.3);
    --ve23-gradient: linear-gradient(135deg, #2E8B57 0%, #006400 100%);

    /* Layout variables */
    --ve23-header-height: 60px;
    --ve23-nav-height: 60px;
    --ve23-max-width: 430px;
    --ve23-padding: 20px;
    --ve23-radius: 8px;
    --ve23-transition: all 0.3s ease;

    /* Font variables */
    --ve23-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --ve23-font-size-base: 16px;
    --ve23-line-height: 1.6;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ve23-font-family);
    font-size: var(--ve23-font-size-base);
    line-height: var(--ve23-line-height);
    color: var(--ve23-text-dark);
    background-color: var(--ve23-bg-light);
    overflow-x: hidden;
}

/* Container and layout */
.ve23-container {
    max-width: var(--ve23-max-width);
    margin: 0 auto;
    padding: 0 var(--ve23-padding);
}

.ve23-wrapper {
    width: 100%;
    overflow: hidden;
}

.ve23-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.ve23-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.ve23-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Header styles */
.ve23-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ve23-header-height);
    background: var(--ve23-bg-dark);
    color: var(--ve23-text-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 10px var(--ve23-shadow);
    transition: var(--ve23-transition);
}

.ve23-header.scrolled {
    box-shadow: 0 4px 20px var(--ve23-shadow);
}

.ve23-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ve23-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ve23-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ve23-logo-text {
    font-size: 18px;
    font-weight: bold;
    color: var(--ve23-accent);
}

.ve23-nav-buttons {
    display: flex;
    gap: 10px;
}

.ve23-btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--ve23-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ve23-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ve23-btn-primary {
    background: var(--ve23-primary);
    color: var(--ve23-text-light);
}

.ve23-btn-primary:hover {
    background: var(--ve23-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.3);
}

.ve23-btn-secondary {
    background: var(--ve23-secondary);
    color: var(--ve23-text-light);
}

.ve23-btn-secondary:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

.ve23-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.ve23-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--ve23-text-light);
    margin: 3px 0;
    transition: var(--ve23-transition);
}

.ve23-hamburger.ve23-is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ve23-hamburger.ve23-is-active span:nth-child(2) {
    opacity: 0;
}

.ve23-hamburger.ve23-is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
.ve23-mobile-menu {
    position: fixed;
    top: var(--ve23-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ve23-bg-dark);
    color: var(--ve23-text-light);
    z-index: 9999;
    transform: translateX(-100%);
    transition: var(--ve23-transition);
    padding: 30px 20px;
}

.ve23-mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ve23-mobile-menu-item a {
    color: var(--ve23-text-light);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--ve23-radius);
    transition: var(--ve23-transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ve23-mobile-menu-item a:hover {
    background: rgba(46, 139, 87, 0.2);
    padding-left: 24px;
}

/* Main content area */
.ve23-main {
    margin-top: var(--ve23-header-height);
    min-height: calc(100vh - var(--ve23-header-height) - var(--ve23-nav-height));
    padding-bottom: 100px;
}

/* Carousel styles */
.ve23-carousel-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--ve23-radius);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px var(--ve23-shadow);
}

.ve23-carousel {
    width: 100%;
    height: 100%;
}

.ve23-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.ve23-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--ve23-transition);
}

.ve23-carousel-slide img:hover {
    transform: scale(1.05);
}

/* Game sections */
.ve23-game-section {
    margin-bottom: 40px;
}

.ve23-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.ve23-section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--ve23-primary-dark);
    position: relative;
    padding-bottom: 10px;
}

.ve23-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--ve23-primary);
}

.ve23-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 10px;
}

.ve23-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--ve23-transition);
    padding: 10px;
    border-radius: var(--ve23-radius);
}

.ve23-game-card:hover {
    transform: translateY(-4px);
    background: rgba(46, 139, 87, 0.1);
}

.ve23-game-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
    transition: var(--ve23-transition);
}

.ve23-game-card:hover .ve23-game-icon {
    transform: scale(1.1);
}

.ve23-game-name {
    font-size: 10px;
    text-align: center;
    color: var(--ve23-text-dark);
    font-weight: 500;
    line-height: 1.2;
}

/* Content blocks */
.ve23-content-block {
    background: var(--ve23-text-light);
    border-radius: var(--ve23-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ve23-content-block h2 {
    color: var(--ve23-primary-dark);
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ve23-primary);
}

.ve23-content-block p {
    margin-bottom: 15px;
    color: var(--ve23-text-dark);
    line-height: 1.6;
}

/* Bottom navigation */
.ve23-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--ve23-bg-dark);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 -2px 10px var(--ve23-shadow);
    border-top: 1px solid var(--ve23-border);
}

@media (min-width: 769px) {
    .ve23-bottom-nav {
        display: none;
    }
}

.ve23-nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 60px;
    min-height: 60px;
    color: var(--ve23-text-light);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: var(--ve23-transition);
}

.ve23-nav-button:hover {
    transform: scale(1.1);
}

.ve23-nav-button.active {
    color: var(--ve23-primary);
}

.ve23-nav-button i {
    font-size: 24px;
}

.ve23-nav-button span {
    font-size: 10px;
    font-weight: 500;
}

/* Icon mixing from multiple libraries */
/* Font Awesome */
.ve23-icon-home { font-family: 'Font Awesome 5 Free'; font-weight: 900; }
.ve23-icon-home::before { content: "\f015"; }

/* Material Icons */
.ve23-icon-game { font-family: 'Material Icons'; }
.ve23-icon-game::before { content: "sports_esports"; }

/* Ionicons */
.ve23-icon-gift { font-family: 'Ionicons'; }
.ve23-icon-gift::before { content: "gift-outline"; }

/* Bootstrap Icons */
.ve23-icon-download { font-family: 'Bootstrap Icons'; }
.ve23-icon-download::before { content: "bi-download"; }

/* Tabler Icons */
.ve23-icon-help { font-family: 'Tabler Icons'; }
.ve23-icon-help::before { content="help-outline"; }

/* Footer */
.ve23-footer {
    background: var(--ve23-bg-dark);
    color: var(--ve23-text-light);
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.ve23-footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ve23-footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--ve23-accent);
}

.ve23-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.ve23-footer-links a {
    color: var(--ve23-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--ve23-transition);
}

.ve23-footer-links a:hover {
    color: var(--ve23-accent);
    text-decoration: underline;
}

.ve23-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.ve23-partner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--ve23-transition);
}

.ve23-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.ve23-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--ve23-border);
    font-size: 14px;
    color: var(--ve23-text-light);
}

/* Utility classes */
.ve23-text-center { text-align: center; }
.ve23-text-left { text-align: left; }
.ve23-text-right { text-align: right; }

.ve23-hidden { display: none !important; }
.ve23-visible { display: block !important; }

.ve23-mt-10 { margin-top: 10px; }
.ve23-mt-20 { margin-top: 20px; }
.ve23-mb-10 { margin-bottom: 10px; }
.ve23-mb-20 { margin-bottom: 20px; }

.ve23-p-10 { padding: 10px; }
.ve23-p-20 { padding: 20px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .ve23-hamburger {
        display: flex;
    }

    .ve23-nav-buttons {
        display: none;
    }

    .ve23-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .ve23-game-icon {
        width: 45px;
        height: 45px;
    }

    .ve23-section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ve23-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ve23-game-icon {
        width: 40px;
        height: 40px;
    }

    .ve23-game-name {
        font-size: 9px;
    }

    .ve23-section-title {
        font-size: 18px;
    }
}