/* Ban System Styles for Planetki 2048 Game */

.ban-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(10, 10, 42); /* Fully opaque background */
    z-index: 10000; /* Make sure it's above everything */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ban-cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 1; /* Full opacity for stars */
}

.ban-content {
    text-align: center;
    color: white;
    width: 85%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ban-banner-container {
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ban-banner-image {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
}

.ban-emoji {
    font-size: 80px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.ban-title {
    font-size: 28px;
    text-shadow: 0 0 10px #5050ff;
    margin: 0 0 20px 0;
}

.ban-message {
    font-size: 18px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.ban-time {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px #5050ff;
}

.unban-button {
    background-color: #5050ff;
    color: white;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(80, 80, 255, 0.6);
    transition: all 0.2s ease;
    margin-top: 30px;
}

.unban-button:hover {
    background-color: #6060ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(80, 80, 255, 0.5);
}

.unban-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(80, 80, 255, 0.3);
}

