/* Final Header Stilleri */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Sol - Orta - Sağ */
    align-items: center;
    background-color: rgba(30, 33, 41, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logo Stilleri */
.header-logo {
    justify-self: start;
    padding-left: 22px;
}

.header-center-logo {
    justify-self: center;
}

.logo {
    font-weight: 800;
    font-size: 28px;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #69c43c;
}

.logo .logo-dot {
    color: #69c43c;
    font-size: 36px;
    line-height: 1;
}

.logo.studio-logo {
    font-size: 24px;
}

.logo.studio-logo .logo-dot {
    font-size: 30px;
}

/* Sağ Taraf Eylemler */
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
}

.jeton-balance {
    background-color: var(--bg-dark);
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.jeton-balance i {
    color: var(--warning);
    margin-right: 8px;
}

/* Sadece ikon içeren butonlar için stil */
.action-button.icon-only {
    padding: 10px 14px;
    /* İkon için kareye yakın boşluk */
}

/* Mobil Stilleri */
@media (max-width: 992px) {
    .header-content {
        grid-template-columns: 1fr 1fr;
    }

    .header-center-logo {
        display: none;
    }
}

@media (max-width: 768px) {
    .user-name {
        display: none;
    }
}