.page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #3D3223;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #FFA626 0%, rgba(255, 166, 38, 0) 100%);
}

.page-title img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 166, 38, 0.3));
}

.page-subtitle {
    color: #A18C76;
    font-size: 14px;
    margin-bottom: 4px;
}

.page-main-title {
    color: #FFA626;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 166, 38, 0.3);
}

.current-category {
    background: rgba(255, 166, 38, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #3D3223;
}

.current-category span {
    color: #A18C76;
    font-size: 14px;
}

.current-category strong {
    color: #FFA626;
    font-weight: 600;
    margin-left: 5px;
}

/* Ana Container */
.ranking-container {
    background: linear-gradient(145deg, #1A1716 0%, #0F1013 100%);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

/* Sol MenÃ¼ */
.ranking-menu {
    background: rgba(15, 16, 19, 0.5);
    border: 1px solid #3D3223;
    border-radius: 8px;
    padding: 15px;
}

.menu-section {
    margin-bottom: 20px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-title {
    color: #FFA626;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #3D3223;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #E0B16D;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.menu-item:not(.disabled):hover {
    background: rgba(255, 166, 38, 0.1);
    border-color: #3D3223;
    transform: translateX(5px);
}

.menu-item.active {
    background: linear-gradient(145deg, #570D0D 0%, #3D0808 100%);
    border-color: #FFA626;
    color: #FFA626;
}

.menu-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.menu-item span {
    flex: 1;
    font-size: 14px;
}

.menu-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(15, 16, 19, 0.5);
}

.coming-soon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #570D0D;
    color: #FFA626;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #FFA626;
}

/* SaÄŸ Ä°Ã§erik */
.ranking-content {
    background: rgba(15, 16, 19, 0.5);
    border: 1px solid #3D3223;
    border-radius: 8px;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .current-category {
        width: 100%;
        text-align: center;
    }

    .ranking-menu {
        margin-bottom: 20px;
    }

    .menu-item:not(.disabled):hover {
        transform: none;
    }
}
