body, html {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: white;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.3);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: -1;
}

.hero-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 300;
        max-width: 700px;
    }

    .hero-content a {
        text-decoration: none;
        color: #fff;
    }

.btn-backoffice {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    background-color: #1BDBDB;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.1s ease-in-out;
    box-shadow: 0 0 0 transparent;
}

    .btn-backoffice:hover {
        background-color: #1BDBDB;
        box-shadow: 0 0 20px rgba(126, 87, 194, 0.6);
        transform: translateY(-1px) scale(1.03);
        color: #ffffff;
    }

.divider {
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 2rem auto 1rem;
    opacity: 0.3;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 50px;
    z-index: 10;
    opacity: 0.95;
}

#cookieModal .modal-content {
    background: #1e1e1e;
    color: #f5f5f5;
    border-radius: 10px;
    border: 1px solid #333;
}

#cookieModal .modal-header,
#cookieModal .modal-footer {
    background: #252525;
    border: none;
}

#cookieModal .modal-title {
    font-weight: 600;
    color: #f1f1f1;
}

#cookieModal .modal-body {
    color: #d1d1d1;
    font-size: 0.95rem;
}

#cookieModal .btn-dark {
    background: #3b82f6;
    border: none;
}

    #cookieModal .btn-dark:hover {
        background: #2563eb;
    }

#cookieModal .btn-light {
    background: #2e2e2e;
    color: #f5f5f5;
    border: none;
}

    #cookieModal .btn-light:hover {
        background: #444;
    }
