﻿.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-bordered::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(0,0,0,.15), transparent);
}

.logo-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: orange;
}

.logo-sub {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.top-bar {
    background: #08162a;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .top-left a {
        color: #f7941d;
        text-decoration: none;
    }

.social-links {
    display: flex;
    gap: 8px;
}

    .social-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .25s;
    }

        .social-links a:hover {
            background: orange;
            color: #08162a;
        }

@media (max-width: 768px) {

    .top-bar-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .top-left {
        flex-direction: column;
        gap: 6px;
    }
}

.social-links a::after {
    display: none !important;
    content: none !important;
}

.social-links a {
    text-decoration: none !important;
}