/**
 * bl77 casino CSS Stylesheet
 * Psychology-first gaming platform with wellness theme
 * Mobile-first responsive design
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --gce6-bg-primary: #1A1A1A;
    --gce6-bg-secondary: #0D1B2A;
    --gce6-bg-tertiary: #1B3A4B;
    --gce6-text-primary: #F8F8FF;
    --gce6-text-secondary: #B8C5D0;
    --gce6-accent-teal: #00695C;
    --gce6-accent-purple: #6A5ACD;
    --gce6-accent-gold: #F4A460;
    --gce6-gradient-main: linear-gradient(135deg, #1A1A1A 0%, #0D1B2A 100%);
    --gce6-gradient-accent: linear-gradient(135deg, #00695C 0%, #6A5ACD 100%);
    --gce6-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --gce6-shadow-glow: 0 0 20px rgba(106, 90, 205, 0.3);
    --gce6-radius-sm: 8px;
    --gce6-radius-md: 12px;
    --gce6-radius-lg: 16px;
    --gce6-transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--gce6-bg-primary);
    color: var(--gce6-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.6rem; }
p { font-size: 1.4rem; line-height: 1.5rem; }

a {
    color: var(--gce6-accent-teal);
    text-decoration: none;
    transition: var(--gce6-transition);
}

a:hover {
    color: var(--gce6-accent-purple);
}

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

/* Header */
.gce6-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(106, 90, 205, 0.2);
    transition: var(--gce6-transition);
}

.gce6-header-scrolled {
    background: rgba(13, 27, 42, 0.98);
    box-shadow: var(--gce6-shadow-soft);
}

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

.gce6-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gce6-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.gce6-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gce6-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.gce6-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: var(--gce6-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--gce6-transition);
    text-decoration: none;
}

.gce6-btn-primary {
    background: var(--gce6-gradient-accent);
    color: var(--gce6-text-primary);
    box-shadow: var(--gce6-shadow-glow);
}

.gce6-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(106, 90, 205, 0.5);
}

.gce6-btn-secondary {
    background: transparent;
    color: var(--gce6-text-primary);
    border: 1px solid var(--gce6-accent-teal);
}

.gce6-btn-secondary:hover {
    background: var(--gce6-accent-teal);
    color: var(--gce6-text-primary);
}

.gce6-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.gce6-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gce6-text-primary);
    transition: var(--gce6-transition);
}

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

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

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

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

.gce6-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--gce6-text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

.gce6-menu-nav {
    margin-top: 4rem;
}

.gce6-menu-nav a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.5rem;
    color: var(--gce6-text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gce6-menu-nav a:hover {
    color: var(--gce6-accent-teal);
    padding-left: 0.5rem;
}

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

/* Hero Section */
.gce6-hero {
    position: relative;
    overflow: hidden;
}

.gce6-slider {
    position: relative;
    height: 200px;
}

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

.gce6-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 var(--gce6-radius-lg) var(--gce6-radius-lg);
}

/* Section Styles */
.gce6-section {
    padding: 2rem 0;
}

.gce6-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--gce6-accent-teal);
}

.gce6-section-title i {
    font-size: 2rem;
    color: var(--gce6-accent-gold);
}

.gce6-section-title h2 {
    font-size: 1.8rem;
    color: var(--gce6-text-primary);
    margin: 0;
}

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

.gce6-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--gce6-transition);
}

.gce6-game-item:hover {
    transform: translateY(-3px);
}

.gce6-game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--gce6-radius-md);
    margin-bottom: 0.5rem;
    box-shadow: var(--gce6-shadow-soft);
}

.gce6-game-item span {
    display: block;
    font-size: 1.1rem;
    color: var(--gce6-text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Card Component */
.gce6-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--gce6-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--gce6-transition);
}

.gce6-card:hover {
    border-color: var(--gce6-accent-teal);
    box-shadow: var(--gce6-shadow-glow);
}

.gce6-card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--gce6-accent-gold);
}

.gce6-card-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--gce6-text-secondary);
}

/* Feature List */
.gce6-feature-list {
    list-style: none;
    padding: 0;
}

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

.gce6-feature-list li i {
    font-size: 2rem;
    color: var(--gce6-accent-teal);
    flex-shrink: 0;
}

.gce6-feature-list li span {
    font-size: 1.3rem;
    color: var(--gce6-text-secondary);
}

/* Promo Link Styles */
.gce6-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gce6-accent-gold);
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
}

.gce6-promo-link:hover {
    color: var(--gce6-accent-purple);
}

/* Footer */
.gce6-footer {
    background: var(--gce6-bg-secondary);
    padding: 2rem 1.5rem 1rem;
    border-top: 1px solid rgba(106, 90, 205, 0.2);
}

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

.gce6-footer-brand p {
    font-size: 1.2rem;
    color: var(--gce6-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.gce6-footer-links a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--gce6-radius-sm);
    color: var(--gce6-text-secondary);
}

.gce6-footer-links a:hover {
    background: var(--gce6-accent-teal);
    color: var(--gce6-text-primary);
}

.gce6-footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gce6-footer-copyright p {
    font-size: 1.1rem;
    color: var(--gce6-text-secondary);
}

/* Bottom Navigation */
.gce6-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.98) 0%, rgba(26, 26, 26, 0.99) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(106, 90, 205, 0.3);
    display: none;
}

.gce6-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    max-width: 430px;
    margin: 0 auto;
}

.gce6-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    color: var(--gce6-text-secondary);
    transition: var(--gce6-transition);
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.gce6-nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
    transition: var(--gce6-transition);
}

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

.gce6-nav-item:hover,
.gce6-nav-item.active {
    color: var(--gce6-accent-gold);
}

.gce6-nav-item:hover i,
.gce6-nav-item.active i {
    transform: scale(1.15);
    color: var(--gce6-accent-teal);
}

/* Testimonials */
.gce6-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gce6-testimonial-item {
    background: rgba(0, 105, 92, 0.1);
    border-radius: var(--gce6-radius-md);
    padding: 1.2rem;
    border-left: 3px solid var(--gce6-accent-teal);
}

.gce6-testimonial-item p {
    font-size: 1.3rem;
    color: var(--gce6-text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.gce6-testimonial-author {
    font-size: 1.2rem;
    color: var(--gce6-accent-gold);
    font-weight: 600;
}

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

.gce6-payment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--gce6-radius-sm);
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--gce6-text-secondary);
}

/* Winners Section */
.gce6-winners-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.gce6-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(244, 164, 96, 0.1);
    border-radius: var(--gce6-radius-sm);
}

.gce6-winner-name {
    font-size: 1.3rem;
    color: var(--gce6-text-primary);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .gce6-bottom-nav {
        display: block;
    }

    .gce6-main {
        padding-bottom: 80px;
    }
}

@media (min-width: 769px) {
    .gce6-container {
        max-width: 768px;
    }

    .gce6-header-inner {
        max-width: 768px;
    }

    .gce6-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .gce6-slider {
        height: 280px;
    }
}

/* Animation Classes */
@keyframes gce6-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.gce6-animate-pulse {
    animation: gce6-pulse 2s infinite;
}

@keyframes gce6-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gce6-animate-fadeIn {
    animation: gce6-fadeIn 0.5s ease forwards;
}

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