﻿#landing-page {
    display: none;
}

.landing-popup-bg {
    background: rgba(0,0,0,0.65);
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.landing-card {
    width: 900px;
    max-width: 95%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.landing-header {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), var(--landing-page-img);
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.landing-title {
    color: snow;
    font-size: 2.7rem;
    font-weight: 700;
}

.landing-date {
    font-size: 1rem;
    opacity: 0.85;
}

.landing-body {
    padding: 35px;
}

.landing-content p {
    line-height: 1.6;
}

.btn-main {
    background: #0d6efd;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

.text-muted {
    color: black !important;
    font-size: 21px;
    font-weight: bold;
}
