﻿* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', sans-serif; 
}

body { 
    background: #080808 url('/images/menu/pbtr_bg_all.jpg') no-repeat center top fixed; 
    background-size: cover; 
    color: #ccc; 
}

.container { 
    width: 1100px; 
    margin: 0 auto; 
}

.body-flex { 
    display: flex; 
    gap: 20px; 
    padding-top: 30px; 
    justify-content: center; 
}

/* LEFT SIDEBAR */
.left-side-container { 
    width: 275px; 
    flex-shrink: 0; 
}

.download-layer { 
    background: #f6b60c; 
    padding: 25px; 
    text-align: center; 
    text-decoration: none; 
    display: block; 
    clip-path: polygon(0 0, 100% 0, 100% 85%, 92% 100%, 0 100%); 
    margin-bottom: 5px; 
}

.download-text { 
    color: #000; 
    font-size: 20px; 
    font-weight: 900; 
}

.quick-menu-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 5px; 
    margin: 10px 0; 
}

.menu-item { 
    display: block; 
    height: 110px; 
    border: 1px solid #222; 
    overflow: hidden; 
    position: relative; 
}

.menu-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.3s; 
}

.menu-item:hover img { 
    transform: scale(1.1); 
    filter: brightness(1.2); 
}

.menu-item span { 
    display: none; 
}

/* RANKING */


/* SLIDER */
.slider-area { 
    flex: 1; 
    max-width: 805px; 
    margin-bottom: 0 !important; /* Boşluğu tam bağlayır */
}

.slider-wrapper { 
    position: relative; 
    height: 380px; 
    overflow: hidden; 
    border: 1px solid #1a1a1a; 
    background: #000; 
}

.slide { 
    position: absolute; 
    inset: 0; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

.slide.active { 
    opacity: 1; 
}

.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: scale(1); 
    transition: transform 6s linear; 
}

.slide.active img { 
    transform: scale(1.15); 
}

.slide-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    padding: 50px 30px 30px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); 
    z-index: 5; 
}

.slide-overlay h2 { 
    color: #f6b60c; 
    font-size: 26px; 
    font-weight: 900; 
    margin-bottom: 5px; 
    transform: translateY(20px); 
    opacity: 0; 
    transition: 0.5s 0.3s; 
}

.slide.active h2 { 
    transform: translateY(0); 
    opacity: 1; 
}

.slide-overlay p { 
    color: #fff; 
    font-size: 14px; 
    opacity: 0; 
    transition: 0.5s 0.5s; 
}

.slide.active p { 
    opacity: 1; 
}

.slider-dots { 
    position: absolute; 
    bottom: 20px; 
    left: 30px; 
    display: flex; 
    gap: 8px; 
    z-index: 10; 
}

.dot { 
    width: 40px; 
    height: 4px; 
    background: rgba(255,255,255,0.2); 
    position: relative; 
}

.dot span { 
    position: absolute; 
    left: 0; 
    top: 0; 
    height: 100%; 
    width: 0; 
    background: #f6b60c; 
}

.dot.active span { 
    animation: progress 5s linear forwards; 
}

@keyframes progress { 
    0% { width: 0; } 
    100% { width: 100%; } 
}

.slider-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0,0,0,0.5); 
    color: #fff; 
    border: none; 
    padding: 15px 10px; 
    cursor: pointer; 
    z-index: 10; 
    transition: 0.3s; 
}

.slider-btn:hover { 
    background: #f6b60c; 
    color: #000; 
}

.btn-next { 
    right: 0; 
}


/* LOGIN LAYER */
/* LOGIN LAYER YENİLƏNMİŞ */
/* LOGIN LAYER YENİLƏNMİŞ (QARA FONLU) */
.login-layer {
    /* Həm tündləşdirmə (overlay), həm də şəkli eyni vaxtda əlavə edirik */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/images/download/bg_download_header.jpg') no-repeat center right;
    background-size: cover;
    border: 1px solid #1a1a1a;
    border-top: 3px solid #f6b60c;
    padding: 20px;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Şəklin kənarlarını bir az yumşaltmaq üçün (istəyə bağlı) */
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.login-layer-title {
    color: #f6b60c;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    border-left: 3px solid #f6b60c;
    padding-left: 10px;
    margin-bottom: 15px;
    /* Başlıq qara fonda daha parlaq görünsün */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.login-form-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 15px;
}

.login-inputs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.pb-input { 
    width: 100%; 
    background: rgba(10, 10, 10, 0.9); /* Inputların içi tam tünd olsun */
    border: 1px solid #333; 
    padding: 10px; 
    color: #fff; 
    font-size: 12px;
    outline: none;
    transition: border 0.3s;
}

.pb-input:focus {
    border-color: #f6b60c;
}

.pb-login-btn { 
    width: 90px;
    background: #f6b60c; 
    border: none; 
    color: #000; 
    padding: 10px; 
    font-weight: 900; 
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
}

.pb-login-btn:hover {
    background: #ffcc00;
    filter: brightness(1.1);
}

.login-links {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.login-links a { 
    color: #aaa; /* Yazı tünd fonda ağa yaxın olsun ki oxunsun */
    text-decoration: none; 
    font-size: 10px;
    font-weight: 600;
    text-shadow: 1px 1px 2px #000;
}

.login-links a:hover {
    color: #f6b60c;
}

/* ALT BANNERLƏR */
.bottom-ads { 
    display: flex; 
    gap: 15px; 
    margin-top: 15px; 
}

.bottom-ads a { 
    flex: 1; 
    height: 250px; 
    border: 1px solid #1a1a1a; 
    overflow: hidden; 
}

.bottom-ads img { 
    width: 100%; 
    height: 100%; 
    object-fit: fill; 
}

/* TAB CONTENT */
.ranking-box { width: 100%; position: relative; }
.tab-content { display: none; }
.tab-content.active { display: block !important; }
.clan-list { list-style: none; }
.clan-item { display: flex; align-items: center; padding: 10px; border-bottom: 1px solid #222; }
/* Köz (Embers) Effekti Üçün CSS */
.ember-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 999; /* Hər şeyin üstündə görünməsi üçün */
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -10px;
    background: orange;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(1px);
    box-shadow: 0 0 10px orange;
    animation: ember-rise 4s infinite ease-in;
}

@keyframes ember-rise {
    0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.8; }
    50% { opacity: 1; }
    100% { transform: translateY(-110vh) scale(0.3) rotate(360deg); opacity: 0; }
}