/* ZGŁOŚ GRACZA MODAL */
.rmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.rmodal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.rmodal-box {
    background: linear-gradient(135deg, rgba(20, 26, 38, 0.95), rgba(12, 16, 24, 0.98));
    border: 1px solid rgba(255, 60, 60, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 60, 60, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.rmodal-overlay.active .rmodal-box {
    transform: translateY(0) scale(1);
}

.rmodal-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rmodal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rmodal-title h2 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.rmodal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.rmodal-close:hover {
    color: #ff6060;
}

.rmodal-body {
    padding: 24px;
}

.rmodal-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}

.rmodal-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rmodal-group label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(210, 225, 255, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rmodal-group input,
.rmodal-group select,
.rmodal-group textarea {
    background: rgba(10, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rmodal-group input:focus,
.rmodal-group select:focus,
.rmodal-group textarea:focus {
    outline: none;
    border-color: rgba(255, 60, 60, 0.5);
    box-shadow: 0 0 10px rgba(255, 60, 60, 0.15);
}

.rmodal-group textarea {
    resize: vertical;
}

.rmodal-group select option {
    background: #101622;
    color: #fff;
}

.rmodal-ftr {
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 16px 16px;
    display: flex;
    justify-content: flex-end;
}

.rmodal-btn-submit {
    flex: 1;
    background: rgba(255, 60, 60, 0.15);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff6060;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.rmodal-btn-submit:hover {
    background: rgba(255, 60, 60, 0.3);
    color: #fff;
    border-color: #ff8080;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3);
}