
.soulcraze-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.soulcraze-popup.active {
    display: flex;
}
.soulcraze-popup-content {
    background: #ffffff;
    color: #1a1a1a;
    padding: 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    position: relative;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.soulcraze-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: #666666;
    transition: color 0.2s;
}
.soulcraze-close:hover {
    color: #ff4d4d;
}
.soulcraze-popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.soulcraze-popup-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333333;
}
.soulcraze-popup-content .advisory {
    font-weight: 500;
    color: #e63946;
}
.soulcraze-button, .soulcraze-join-button {
    background: #e63946;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    margin: 8px;
    transition: background 0.3s, transform 0.1s;
}
.soulcraze-join-button {
    background: #daf400;
    color: black;
}
.soulcraze-button:hover {
    background: #000000;
    transform: translateY(-1px);
}
.soulcraze-join-button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}
.soulcraze-footer-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 20px;
    background: white;
    border: 1px solid #e3e3e3;
    border-radius: 100%;
    z-index: 9999;
    box-shadow: 0 1px 10px 1px #0003;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.soulcraze-footer-icon:hover {
    transform: scale(1.05);
}
.soulcraze-footer-icon img {
    width: 45px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}
