﻿/* --- LOGIN PANEL ANA KONTEYNER --- */
.login-layer {
    width: 270px;
    /* Arxa plan şəkli və qaraltma */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('/images/download/bg_download.png') no-repeat center center;
    background-size: cover;
    border: 1px solid #222;
    border-top: 3px solid #f6b60c;
    padding: 20px 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-family: 'Tahoma', sans-serif;
    position: relative;
}

/* --- GİRİŞ FORMU ELEMENTLƏRİ --- */
.pb-input {
    width: 100%;
	
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    margin-bottom: 10px;
    font-size: 12px;
    box-sizing: border-box;
    transition: 0.3s;
}

.pb-input:focus {
    border-color: #f6b60c;
    outline: none;
}

.pb-login-btn {
    width: 100%;
    height: 45px;
    background: #f6b60c;
    color: #000;
    border: none;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.pb-login-btn:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(246, 182, 12, 0.4);
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.login-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.login-links a:hover {
    color: #f6b60c;
}

/* --- PROFİL PANELİ (GİRİŞ EDİLDİKDƏ) --- */
.my_info_list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

/* Rütbə və Nik bölməsi - BÖYÜDÜLMÜŞ */
.my_nick_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
}

/* Rütbə ikonunun ölçüsü */
.my_nick_row img { 
    height: 55px; /* İkon böyüdü */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(246, 182, 12, 0.6));
}

.my_nick_row span { 
    color: #f6b60c; 
    font-weight: 800; 
    font-size: 16px; 
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px #000;
}

/* Balans məlumatları */
.grade_info {
    background: rgba(0, 0, 0, 0.6);
    padding: 12px;
    border: 1px solid #252525;
}

.grade_info p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.grade_info p:last-child { border-bottom: none; }

.grade_info span { 
    color: #999; 
    font-weight: bold;
}

.grade_info b { 
    color: #eee; 
    font-family: 'Verdana', sans-serif;
}

/* Düymə qrupu */
.btn_group {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.btn_group a { 
    flex: 1; 
}

.btn_group img { 
    width: 100%; 
    height: auto; 
    border: 1px solid #333; 
    transition: 0.3s;
}

.btn_group img:hover { 
    border-color: #f6b60c; 
    filter: brightness(1.3) contrast(1.1); 
}

.status-online {
    color: #00ff00;
    font-size: 10px;
    display: block;
    text-align: right;
    margin-top: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}