

/* popup.css */

.popup-overlay {
    display: none; /* Скрыт по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Поверх всего */
}

.popup-content {
    background-color: #2a2a2a;
    color: #eee;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: fadeIn 0.3s ease-out;
    border: 2px solid #00ff00; /* Неоновая рамка */
}

.popup-content h2 {
    color: #00ff00; /* Неоновый зеленый */
    margin-bottom: 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8em;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
}

.popup-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #00ff00;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2em;
    color: #00ff00;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #ff0000;
}

.popup-button {
    display: inline-block;
    background-color: #00ff00;
    color: #2a2a2a;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9em;
    border: none;
    cursor: pointer;
}

.popup-button:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

/* Анимация появления */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Добавим стили для OSO валюты */
.oso-currency {
    color: #00ff00; /* Неоновый зеленый */
    font-weight: bold;
    text-shadow: 0 0 3px #00ff00;
}

/* Стили для навигации аутентификации */
.auth-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.auth-button {
    display: inline-block;
    background-color: #00ff00;
    color: #2a2a2a;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8em;
    border: none;
    cursor: pointer;
}

.auth-button:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}
