.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.5rem;
    position: relative;
    max-width: 90%;
    width: 600px;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.close-button:hover {
    color: white;
}

.popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.log-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.log {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.times {
    color: white;
    font-size: 2rem;
}

.popup-text {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

.buy-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #444;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .logo-container {
        gap: 1rem;
    }

    .popup-text {
        font-size: 1.25rem;
    }

    .buy-button {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}