/* ========================================
   LEMON BET - BRUTALIST DESIGN SYSTEM
   Generated: December 2025
   Style: Brutalism (hard shadows, thick borders, 0 radius)
   Font: Bebas Neue + Roboto
   Palette: Golden Hour
   ======================================== */

@import url('css2');

:root {
    /* Colors - Amber Orange */
    --lb-primary: #F59E0B;
    --lb-primary-dark: #D97706;
    --lb-secondary: #FBBF24;
    --lb-accent: #FCD34D;
    --lb-bg: #0A0A0A;
    --lb-surface: #141414;
    --lb-surface-alt: #1F1F1F;
    --lb-text: #FFFBEB;
    --lb-text-muted: #A3A3A3;
    --lb-border: #DAA31A;
    --lb-success: #22C55E;
    --lb-error: #EF4444;
    
    /* Brutalist shadows - hard, no blur */
    --lb-shadow: 6px 6px 0 #000;
    --lb-shadow-sm: 4px 4px 0 #000;
    --lb-shadow-lg: 8px 8px 0 #000;
    --lb-shadow-accent: 6px 6px 0 var(--lb-primary);
    
    /* No border radius - brutalist */
    --lb-radius: 0;
    
    /* Borders - thick */
    --lb-border-width: 3px;
    
    /* Spacing - compact */
    --lb-section-py: 48px;
    --lb-section-py-lg: 72px;
    --lb-gap-xl: 32px;
    --lb-gap-lg: 24px;
    --lb-gap-md: 16px;
    --lb-gap-sm: 12px;
    
    /* Transitions */
    --lb-transition: 0.2s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lb-text);
    background: var(--lb-bg);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

a {
    color: var(--lb-primary);
    text-decoration: none;
    transition: var(--lb-transition);
}

a:hover {
    color: var(--lb-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== LAYOUT ===== */
.lb-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lb-section {
    padding: var(--lb-section-py) 0;
}

/* ===== FLOATING PILL HEADER ===== */
.lb-header-float {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 400px;
}

.lb-header-pill {
    background: var(--lb-surface);
    border: var(--lb-border-width) solid var(--lb-primary);
    box-shadow: var(--lb-shadow);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--lb-text);
    letter-spacing: 0.1em;
}

.lb-logo span {
    color: var(--lb-primary);
}

.lb-menu-btn {
    background: var(--lb-primary);
    border: var(--lb-border-width) solid #000;
    box-shadow: var(--lb-shadow-sm);
    color: #000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: var(--lb-transition);
}

.lb-menu-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #000;
}

.lb-menu-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
}

/* Mobile Navigation Overlay */
.lb-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lb-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--lb-transition);
}

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

.lb-nav-overlay ul {
    list-style: none;
    text-align: center;
}

.lb-nav-overlay li {
    margin: 16px 0;
}

.lb-nav-overlay a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--lb-text);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.lb-nav-overlay a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--lb-primary);
    transition: var(--lb-transition);
}

.lb-nav-overlay a:hover::after {
    width: 100%;
}

.lb-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--lb-text);
    font-size: 32px;
    cursor: pointer;
}

/* ===== HERO - BENTO GRID ===== */
.lb-hero {
    padding: 120px 0 var(--lb-section-py);
}

.lb-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--lb-gap-md);
}

.lb-bento-main {
    grid-row: span 2;
    background: var(--lb-surface);
    border: var(--lb-border-width) solid var(--lb-primary);
    box-shadow: var(--lb-shadow);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lb-bento-main h1 {
    font-size: clamp(48px, 8vw, 96px);
    color: var(--lb-text);
    margin-bottom: 16px;
}

.lb-bento-main h1 span {
    color: var(--lb-primary);
    display: block;
}

.lb-bento-main p {
    font-size: 18px;
    color: var(--lb-text-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

.lb-bento-stat {
    background: var(--lb-surface);
    border: var(--lb-border-width) solid var(--lb-border);
    box-shadow: var(--lb-shadow-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lb-bento-stat .lb-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--lb-primary);
    line-height: 1;
}

.lb-bento-stat .lb-stat-label {
    font-size: 14px;
    color: var(--lb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.lb-bento-featured {
    grid-column: span 2;
    background: var(--lb-primary);
    border: var(--lb-border-width) solid #000;
    box-shadow: var(--lb-shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb-bento-featured-text {
    color: #000;
}

.lb-bento-featured-text h3 {
    font-size: 28px;
    margin-bottom: 4px;
}

.lb-bento-featured-text p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.lb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border: var(--lb-border-width) solid #000;
    cursor: pointer;
    transition: var(--lb-transition);
    text-transform: uppercase;
}

.lb-btn-primary {
    background: var(--lb-primary);
    color: #000;
    box-shadow: var(--lb-shadow);
}

.lb-btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
    color: #000;
}

.lb-btn-primary:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #000;
}

.lb-btn-outline {
    background: transparent;
    color: var(--lb-primary);
    border-color: var(--lb-primary);
    box-shadow: var(--lb-shadow-accent);
}

.lb-btn-outline:hover {
    background: var(--lb-primary);
    color: #000;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--lb-primary);
}

.lb-btn-sm {
    font-size: 16px;
    padding: 10px 20px;
    box-shadow: var(--lb-shadow-sm);
}

.lb-btn-sm:hover {
    box-shadow: 6px 6px 0 #000;
}

/* ===== OPERATOR CARDS - HORIZONTAL ROW ===== */
.lb-operators {
    padding: var(--lb-section-py) 0;
}

.lb-section-header {
    margin-bottom: var(--lb-gap-lg);
}

.lb-section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--lb-text);
}

.lb-section-header h2 span {
    color: var(--lb-primary);
}

.lb-operator-stack {
    display: flex;
    flex-direction: column;
    gap: var(--lb-gap-md);
}

.lb-operator-row {
    background: var(--lb-surface);
    border: var(--lb-border-width) solid var(--lb-border);
    box-shadow: var(--lb-shadow);
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    align-items: center;
    gap: var(--lb-gap-md);
    padding: 20px;
    transition: var(--lb-transition);
}

.lb-operator-row:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
    border-color: var(--lb-primary);
}

.lb-op-rank {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--lb-primary);
    text-align: center;
}

.lb-op-info h3 {
    font-size: 24px;
    color: var(--lb-text);
    margin-bottom: 4px;
}

.lb-op-info p {
    font-size: 14px;
    color: var(--lb-text-muted);
}

.lb-op-features {
    display: flex;
    gap: 16px;
}

.lb-op-feature {
    background: var(--lb-surface-alt);
    border: 2px solid var(--lb-border);
    padding: 8px 12px;
    font-size: 12px;
    color: var(--lb-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lb-op-rating {
    text-align: center;
}

.lb-op-rating .lb-stars {
    color: var(--lb-primary);
    font-size: 18px;
    margin-bottom: 4px;
}

.lb-op-rating .lb-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--lb-text);
}

/* ===== FAQ - TWO COLUMN GRID ===== */
.lb-faq {
    padding: var(--lb-section-py) 0;
    background: var(--lb-surface);
    border-top: var(--lb-border-width) solid var(--lb-primary);
    border-bottom: var(--lb-border-width) solid var(--lb-primary);
}

.lb-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lb-gap-md);
}

.lb-faq-item {
    background: var(--lb-bg);
    border: var(--lb-border-width) solid var(--lb-border);
    box-shadow: var(--lb-shadow-sm);
    padding: 24px;
}

.lb-faq-item h4 {
    font-size: 20px;
    color: var(--lb-primary);
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.lb-faq-item p {
    font-size: 14px;
    color: var(--lb-text-muted);
    line-height: 1.7;
}

/* ===== RESPONSIBLE GAMING ===== */
.lb-responsible {
    padding: var(--lb-section-py) 0;
    text-align: center;
}

.lb-responsible-box {
    background: var(--lb-surface);
    border: var(--lb-border-width) solid var(--lb-error);
    box-shadow: 6px 6px 0 var(--lb-error);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.lb-responsible h3 {
    font-size: 32px;
    color: var(--lb-error);
    margin-bottom: 12px;
}

.lb-responsible p {
    color: var(--lb-text-muted);
    margin-bottom: 20px;
}

.lb-responsible-links {
    display: flex;
    justify-content: center;
    gap: var(--lb-gap-md);
    flex-wrap: wrap;
}

.lb-responsible-links a {
    background: var(--lb-bg);
    border: 2px solid var(--lb-border);
    padding: 10px 16px;
    font-size: 14px;
    color: var(--lb-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lb-responsible-links a:hover {
    border-color: var(--lb-primary);
    color: var(--lb-primary);
}

/* ===== FOOTER - CENTERED MINIMAL ===== */
.lb-footer {
    padding: var(--lb-section-py) 0;
    text-align: center;
    border-top: var(--lb-border-width) solid var(--lb-border);
}

.lb-footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--lb-text);
    margin-bottom: 24px;
}

.lb-footer-logo span {
    color: var(--lb-primary);
}

.lb-footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.lb-footer-nav a {
    color: var(--lb-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lb-footer-nav a:hover {
    color: var(--lb-primary);
}

.lb-footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.lb-footer-social a {
    width: 44px;
    height: 44px;
    background: var(--lb-surface);
    border: 2px solid var(--lb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-text);
    font-size: 18px;
}

.lb-footer-social a:hover {
    background: var(--lb-primary);
    border-color: var(--lb-primary);
    color: #000;
}

.lb-footer-partners {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.lb-partner-badge {
    background: var(--lb-surface);
    border: 2px solid var(--lb-border);
    padding: 8px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--lb-text-muted);
    letter-spacing: 0.1em;
}

.lb-footer-copy {
    color: var(--lb-text-muted);
    font-size: 12px;
}

.lb-footer-copy p {
    margin: 4px 0;
}

.lb-18plus {
    display: inline-block;
    background: var(--lb-error);
    color: #fff;
    font-weight: 700;
    padding: 2px 8px;
    margin-right: 8px;
}

/* ===== COOKIE BANNER ===== */
.lb-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--lb-surface);
    border-top: var(--lb-border-width) solid var(--lb-primary);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.lb-cookie.lb-show {
    display: block;
}

.lb-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lb-cookie p {
    color: var(--lb-text-muted);
    font-size: 14px;
}

.lb-cookie a {
    color: var(--lb-primary);
}

/* ===== CONTENT PAGES ===== */
.lb-page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--lb-surface);
    border-bottom: var(--lb-border-width) solid var(--lb-primary);
}

.lb-page-hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    color: var(--lb-text);
}

.lb-page-hero h1 span {
    color: var(--lb-primary);
}

.lb-content {
    padding: var(--lb-section-py) 0;
}

.lb-content-box {
    background: var(--lb-surface);
    border: var(--lb-border-width) solid var(--lb-border);
    box-shadow: var(--lb-shadow);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.lb-content-box h2 {
    font-size: 32px;
    color: var(--lb-primary);
    margin: 32px 0 16px;
    text-transform: none;
}

.lb-content-box h2:first-child {
    margin-top: 0;
}

.lb-content-box h3 {
    font-size: 24px;
    color: var(--lb-text);
    margin: 24px 0 12px;
    text-transform: none;
}

.lb-content-box p {
    color: var(--lb-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.lb-content-box ul, .lb-content-box ol {
    color: var(--lb-text-muted);
    margin: 16px 0;
    padding-left: 24px;
}

.lb-content-box li {
    margin: 8px 0;
    line-height: 1.7;
}

.lb-content-box a {
    color: var(--lb-primary);
    border-bottom: 2px solid var(--lb-primary);
}

.lb-content-box a:hover {
    color: var(--lb-secondary);
    border-color: var(--lb-secondary);
}

.lb-update-date {
    font-size: 14px;
    color: var(--lb-text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--lb-border);
}

/* ===== CONTACT FORM ===== */
.lb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lb-gap-lg);
}

.lb-form-group {
    margin-bottom: 20px;
}

.lb-form-group label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--lb-text);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.lb-input, .lb-select, .lb-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--lb-text);
    background: var(--lb-bg);
    border: var(--lb-border-width) solid var(--lb-border);
    outline: none;
    transition: var(--lb-transition);
}

.lb-input:focus, .lb-select:focus, .lb-textarea:focus {
    border-color: var(--lb-primary);
    box-shadow: var(--lb-shadow-sm);
}

.lb-textarea {
    min-height: 150px;
    resize: vertical;
}

.lb-select {
    cursor: pointer;
}

.lb-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lb-contact-item {
    background: var(--lb-surface-alt);
    border: 2px solid var(--lb-border);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lb-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--lb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.lb-contact-item h4 {
    font-size: 18px;
    color: var(--lb-text);
    margin-bottom: 4px;
    text-transform: none;
}

.lb-contact-item p {
    font-size: 14px;
    color: var(--lb-text-muted);
    margin: 0;
}

/* ===== THANK YOU PAGE ===== */
.lb-thankyou {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.lb-thankyou-icon {
    width: 100px;
    height: 100px;
    background: var(--lb-success);
    border: var(--lb-border-width) solid #000;
    box-shadow: var(--lb-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.lb-thankyou-icon i {
    font-size: 48px;
    color: #000;
}

.lb-thankyou h1 {
    font-size: 64px;
    color: var(--lb-text);
    margin-bottom: 16px;
}

.lb-thankyou p {
    color: var(--lb-text-muted);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ===== JOGO SEGURO ===== */
.lb-warning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--lb-gap-md);
    margin: 32px 0;
}

.lb-warning-card {
    background: var(--lb-surface-alt);
    border: var(--lb-border-width) solid var(--lb-border);
    box-shadow: var(--lb-shadow-sm);
    padding: 24px;
}

.lb-warning-card.lb-danger {
    border-color: var(--lb-error);
    box-shadow: 4px 4px 0 var(--lb-error);
}

.lb-warning-card h4 {
    font-size: 20px;
    color: var(--lb-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
}

.lb-warning-card.lb-danger h4 {
    color: var(--lb-error);
}

.lb-warning-card p {
    font-size: 14px;
    color: var(--lb-text-muted);
    margin: 0;
}

.lb-help-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.lb-help-link {
    background: var(--lb-surface);
    border: 2px solid var(--lb-border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--lb-text);
    font-size: 14px;
}

.lb-help-link i {
    color: var(--lb-primary);
    font-size: 20px;
}

.lb-help-link:hover {
    border-color: var(--lb-primary);
    color: var(--lb-primary);
}

/* ===== ABOUT PAGE ===== */
.lb-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--lb-gap-md);
    margin: 32px 0;
}

.lb-value-card {
    background: var(--lb-bg);
    border: var(--lb-border-width) solid var(--lb-border);
    box-shadow: var(--lb-shadow-sm);
    padding: 24px;
    text-align: center;
}

.lb-value-card i {
    font-size: 32px;
    color: var(--lb-primary);
    margin-bottom: 16px;
}

.lb-value-card h4 {
    font-size: 20px;
    color: var(--lb-text);
    margin-bottom: 8px;
    text-transform: none;
}

.lb-value-card p {
    font-size: 14px;
    color: var(--lb-text-muted);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .lb-bento {
        grid-template-columns: 1fr 1fr;
    }
    
    .lb-bento-main {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .lb-bento-featured {
        grid-column: span 2;
    }
    
    .lb-operator-row {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .lb-op-rank {
        grid-row: span 3;
    }
    
    .lb-op-features {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .lb-op-rating {
        text-align: left;
    }
    
    .lb-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .lb-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .lb-header-float {
        top: 10px;
        width: calc(100% - 20px);
    }
    
    .lb-header-pill {
        padding: 10px 16px;
    }
    
    .lb-logo {
        font-size: 22px;
    }
    
    .lb-bento {
        grid-template-columns: 1fr;
    }
    
    .lb-bento-main, .lb-bento-featured, .lb-bento-stat {
        grid-column: span 1;
    }
    
    .lb-bento-main {
        padding: 24px;
    }
    
    .lb-bento-main h1 {
        font-size: 48px;
    }
    
    .lb-operator-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lb-op-rank {
        grid-row: span 1;
    }
    
    .lb-op-features {
        justify-content: center;
    }
    
    .lb-op-rating {
        text-align: center;
    }
    
    .lb-nav-overlay a {
        font-size: 36px;
    }
    
    .lb-content-box {
        padding: 24px;
    }
    
    .lb-footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}
