@charset "utf-8";
.intro-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.intro-popup.show {
    opacity: 1;
    visibility: visible;
}

.intro-popup-content {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.intro-popup.show .intro-popup-content {
    transform: scale(1);
}

.intro-popup-content h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #111;
    font-family: 'Helvetica Neue', sans-serif;
}

.intro-popup-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.intro-popup-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.intro-popup-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.intro-popup-item span {
    font-size: 16px;
    color: #0071bc;
    font-weight: 500;
}

.intro-popup-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.intro-popup-item a:hover {
    transform: translateX(5px);
}

#intro-popup-close {
    padding: 12px 25px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.3s ease;
}

#intro-popup-close:hover {
    background: #0071bc;
}


