.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.warning-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;;
}

.warning-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    margin-top: -27px;
}

.warning-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    color: #fff;
    width: 90%;
    margin-left: 5%;
}

.warning-box p {
    margin-bottom: 2rem;
    line-height: 1.6;
    width: 80%;
    margin-left: 10%;
}

.back-link {
    background-color:transparent !important;
    border:none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.back-link:hover {
    opacity: 1;
}

.back-arrow {
    width: 20px;
    height: 20px;
    cursor: pointer;
}