.osb-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
	margin: 0px 0px -25px -5px;
}

.logo-gear-container {
    position: absolute;
    top: 27%;
    left: -1px;
    width: 43%;
    height: 43%;
    clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 100% 50%, 100% 100%, 0% 100%);
    z-index: 2;
    filter: drop-shadow(-2px 3px 1px rgba(0,0,0,0.6));
}

.logo-gear {
    position: relative;
    width: 92%;
    height: 92%;
    animation: logo-rotate 6s linear infinite;
    margin: -2px -1px 0px 3px;
}

.logo-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 69%;
    z-index: 1;
    filter: drop-shadow(-2px 3px 1px rgba(0,0,0,0.6));
}

@keyframes logo-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .logo-container {
        width: 50px;
        height: 50px;
		margin: 0px -10px -20px -10px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 40px;
        height: 40px;
    }
}