/* ============================================================
   PROJECT: lucecolore.com (site37-de)
   CSS ARCHITECTURE: BEM with lc- prefix (Lucecolore = Light + Color)
   PALETTE: Lucecolore (luce-ivory, luce-coral, luce-sky, luce-gold, luce-lavender, luce-charcoal)
   EFFECT: Animated Gradients
   TYPOGRAPHY: Quicksand + Open Sans (Playful)
   BUTTON STYLE: Gradient Fill
   ============================================================ */

:root {
    --luce-ivory: #fefdfb;
    --luce-coral: #ff6b6b;
    --luce-sky: #4ecdc4;
    --luce-gold: #ffe66d;
    --luce-lavender: #a8b5e8;
    --luce-charcoal: #2d3436;
    --lc-text: #2d3436;
    --lc-muted: #636e72;
    --lc-border: rgba(78, 205, 196, 0.25);
    --lc-shadow: rgba(45, 52, 54, 0.08);
    --header-height: 78px;
    font-size: clamp(15px, 1.05vw, 17px);
}

*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100% !important;
    overflow-x: hidden !important;
    background: var(--luce-ivory);
    color: var(--lc-text);
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.l-lc-wrap {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

/* Header */
.lc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 251, 0.98);
    border-bottom: 2px solid var(--lc-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem min(4vw, 2rem);
    height: var(--header-height);
}

.lc-header__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lc-header__home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--luce-coral);
}

.lc-badge {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.15));
    color: var(--luce-sky);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lc-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid var(--lc-border);
    border-radius: 8px;
    background: var(--luce-ivory);
    color: var(--luce-coral);
    position: relative;
    cursor: pointer;
}

.lc-burger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--luce-coral);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.lc-burger span:nth-child(1) { top: 14px; }
.lc-burger span:nth-child(2) { top: 21px; }
.lc-burger span:nth-child(3) { top: 28px; }

.lc-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lc-burger.is-open span:nth-child(2) { opacity: 0; }
.lc-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lc-nav {
    display: flex;
    align-items: center;
}

.lc-nav__list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-nav__link {
    padding: 0.25rem 0;
    font-weight: 600;
    color: var(--lc-text);
    transition: color 0.2s ease;
}

.lc-nav__link:hover { color: var(--luce-coral); }

main { padding-top: var(--header-height); }

/* Hero - Animated Gradient */
.lc-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 18vw, 160px) 0 clamp(60px, 12vw, 100px);
    background: linear-gradient(45deg, var(--luce-ivory), rgba(78, 205, 196, 0.08), rgba(255, 230, 109, 0.06), rgba(168, 181, 232, 0.05), var(--luce-ivory));
    background-size: 400% 400%;
    animation: lc-gradient 12s ease infinite;
}

@keyframes lc-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.lc-hero__content { position: relative; z-index: 2; max-width: 640px; }

.lc-hero__title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--lc-text);
    line-height: 1.25;
}

.lc-hero__subtitle {
    color: var(--lc-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.lc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.lc-hero__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.lc-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--lc-text);
}

.lc-lead { margin: 0 0 2rem; color: var(--lc-muted); line-height: 1.7; }

.lc-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(78, 205, 196, 0.15);
    color: var(--lc-text);
    font-size: 0.85rem;
}

/* Gradient Button */
.lc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--luce-coral), var(--luce-sky));
    color: white;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.lc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.45);
}

.lc-btn--primary {
    background: linear-gradient(135deg, var(--luce-coral), var(--luce-sky));
}

.lc-btn--secondary {
    background: linear-gradient(135deg, var(--luce-gold), #e6c94a);
    box-shadow: 0 4px 14px rgba(255, 230, 109, 0.3);
}

/* Age gate & Cookie */
.lc-age {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 52, 54, 0.9);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lc-age.state-visible { opacity: 1; visibility: visible; }

.lc-age__window {
    background: var(--luce-ivory);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--lc-border);
}

.lc-age__header { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--lc-border); }
.lc-age__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    margin: 0;
    color: var(--lc-text);
}

.lc-age__content { padding: 1.5rem; }
.lc-age__content p { margin: 0 0 0.8rem; color: var(--lc-text); line-height: 1.6; }
.lc-age__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }

.lc-cookie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1999;
    max-width: 340px;
    padding: 1.2rem;
    background: rgba(254, 253, 251, 0.98);
    border: 2px solid var(--luce-sky);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lc-cookie.state-visible { opacity: 1; visibility: visible; }
.lc-cookie p { margin: 0 0 0.8rem; font-size: 0.95rem; line-height: 1.5; }
.lc-cookie__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Benefits */
.lc-benefits { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.lc-benefits__grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.2rem, 3vw, 2rem);
    justify-content: center;
    align-items: stretch;
}

.lc-benefit-card {
    flex: 1 1 280px;
    max-width: 360px;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(254,253,251,0.95));
    border: 1px solid var(--lc-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--lc-shadow);
}

.lc-benefit-card__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: var(--luce-sky);
}

.lc-benefit-card p { margin: 0; color: var(--lc-text); line-height: 1.6; font-size: 0.95rem; }

/* Games grid */
.lc-games {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(78, 205, 196, 0.05) 100%);
}

.lc-games__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.lc-game-card {
    flex: 0 0 auto;
    width: clamp(280px, 28vw, 340px);
    max-width: 340px;
    background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(254,253,251,0.95));
    border: 1px solid var(--lc-border);
    border-radius: 16px;
    box-shadow: 0 8px 28px var(--lc-shadow);
    overflow: hidden;
}

.lc-game-card__thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.lc-game-card__body { padding: 1.25rem; }
.lc-game-card__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--lc-text);
}

.lc-game-card__text { margin: 0 0 0.8rem; color: var(--lc-muted); line-height: 1.55; font-size: 0.95rem; }
.lc-game-card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

/* FAQ */
.lc-faq { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.lc-faq__item {
    margin-bottom: 0.8rem;
    border: 1px solid var(--lc-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.lc-faq__item summary {
    padding: 1rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--lc-text);
}

.lc-faq__item p { margin: 0; padding: 0 1.2rem 1rem; color: var(--lc-muted); line-height: 1.65; }

/* Disclaimer */
.lc-disclaimer {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: linear-gradient(135deg, var(--luce-coral) 0%, #e85555 100%);
    color: #fff;
}

.lc-disclaimer__title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 0 0 1rem;
}

.lc-disclaimer p { margin: 0 0 0.8rem; line-height: 1.7; font-size: 0.95rem; }
.lc-disclaimer a { color: #ffecb3; text-decoration: underline; }
.lc-disclaimer__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.lc-disclaimer__badges .lc-tag { background: rgba(255,255,255,0.25); color: #fff; }

/* Footer */
.lc-footer {
    padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
    background: var(--luce-charcoal);
    color: var(--luce-ivory);
}

.lc-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.lc-footer__heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.8rem;
    color: var(--luce-gold);
}

.lc-footer__link {
    display: block;
    padding: 0.25rem 0;
    color: rgba(254, 253, 251, 0.85);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.lc-footer__link:hover { color: var(--luce-ivory); }
.lc-footer__section p { margin: 0 0 0.4rem; font-size: 0.9rem; color: rgba(254, 253, 251, 0.9); }

.lc-footer__logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.lc-footer__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

.lc-footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px !important;
    height: 52px !important;
    min-width: 100px;
    min-height: 44px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 12px;
    overflow: hidden;
}
.lc-footer__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lc-footer__age {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.lc-footer__legal {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(254, 253, 251, 0.8);
}

/* Page content */
.lc-page .lc-hero { padding-top: 120px; padding-bottom: 2rem; }
.lc-content { padding: 2rem 0 3rem; }
.lc-content h2 { font-family: 'Quicksand', sans-serif; margin: 1.8rem 0 0.6rem; color: var(--luce-coral); }
.lc-content h3 { font-family: 'Quicksand', sans-serif; margin: 1.4rem 0 0.5rem; color: var(--lc-text); }
.lc-content p { margin: 0 0 1rem; line-height: 1.75; }
.lc-content ul, .lc-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }

/* Card grids */
.lc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.lc-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--lc-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--lc-shadow);
}

.lc-card__body { padding: 1.2rem; }
.lc-card__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.lc-card__meta { font-size: 0.85rem; color: var(--lc-muted); margin-bottom: 0.6rem; }
.lc-card p { margin: 0 0 0.8rem; font-size: 0.95rem; line-height: 1.55; }

/* Mobile */
@media (max-width: 960px) {
    :root { --header-height: 62px; }
    .lc-burger { display: flex; align-items: center; justify-content: center; }
    .lc-nav {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        bottom: auto;
        background: var(--luce-ivory);
        border-bottom: 2px solid var(--lc-border);
        padding: 1rem;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }
    .lc-nav.state-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .lc-nav__list { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .lc-nav__link { padding: 0.6rem 0; display: block; }
    .lc-hero { padding-top: 100px; }
    .lc-games__grid { flex-direction: column; align-items: center; }
    .lc-game-card { width: 100%; max-width: 400px; }
    .lc-cookie { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* Account */
.lc-account .lc-title,
.lc-account .lc-lead { text-align: center; max-width: 420px; margin-left: auto; margin-right: auto; }
.lc-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
.lc-tabs__tab {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--lc-border);
    background: transparent;
    color: var(--lc-text);
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
}
.lc-tabs__tab.state-active {
    background: linear-gradient(135deg, var(--luce-coral), var(--luce-sky));
    border-color: var(--luce-coral);
    color: white;
}
.lc-panel { display: none; padding: 1.5rem 0; }
.lc-panel.state-visible { display: block; }
.lc-panel form { max-width: 420px; margin-left: auto; margin-right: auto; }
.lc-panel form label { display: block; margin-bottom: 0.4rem; font-weight: 500; }
.lc-panel form input[type="text"],
.lc-panel form input[type="email"],
.lc-panel form input[type="password"],
.lc-panel form textarea {
    width: 100%;
    max-width: 400px;
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--lc-border);
    border-radius: 8px;
    font-family: inherit;
}
.form-status { margin-top: 0.8rem; font-size: 0.95rem; color: var(--luce-coral); min-height: 1.5em; }
.form-status.state-visible { font-weight: 500; }

@media (max-width: 600px) {
    .lc-footer__grid { grid-template-columns: 1fr; text-align: center; }
    .lc-footer__logos-row { flex-direction: column; }
}
