 
body {
    background-color: #0d1117;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: #161b22;
    border-bottom: 2px solid #ff4655;
}

.navbar-brand, .nav-link {
    color: #fff !important;
    font-weight: 700;
}

    .nav-link:hover {
        color: #ff4655 !important;
    }

    .navbar-brand img {
        height: 32px;
        margin-right: 8px;
    }

.brand-bar {
    background: #21262d;
    padding: 0.5rem 0;
    text-align: center;
    border-bottom: 2px solid #ff4655;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .brand-bar img {
        height: 32px;
        margin: 0 8px;
        vertical-align: middle;
    }

    .brand-bar .brand-info {
        color: #ff4655;
        font-weight: 700;
        margin-left: 8px;
        font-size: 1rem;
    }

main.container, main.container-fluid {
    flex: 1 0 auto;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

footer {
    background: #161b22;
    color: #aaa;
    padding: 1.5rem 0 1rem 0;
    margin-top: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

    .footer-social a {
        color: #ff4655;
        font-size: 2rem;
        transition: color 0.2s;
    }

        .footer-social a:hover {
            color: #fff;
        }

@media (max-width: 576px) {
    .navbar-brand img {
        height: 28px;
    }

    .brand-bar img {
        height: 24px;
    }

    .brand-bar .brand-info {
        font-size: 0.95rem;
    }

    .footer-social a {
        font-size: 1.5rem;
    }

    footer {
        font-size: 0.95rem;
        padding: 1rem 0 0.5rem 0;
    }
}
.brand-equal {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.brand-logo {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff4655 60%, #161b22 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px #ff4655;
}

    .brand-logo::after {
        content: '';
        position: absolute;
        left: 8px;
        top: 8px;
        width: 16px;
        height: 16px;
        background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 4 L8 12 L12 4" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
        opacity: 0.9;
    }

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    height: 32px;
}

@media (max-width: 576px) {
    .brand-equal {
        height: 32px;
        gap: 8px;
    }

    .brand-logo {
        width: 24px;
        height: 24px;
    }

        .brand-logo::after {
            left: 4px;
            top: 4px;
            width: 12px;
            height: 12px;
        }

    .brand-text {
        font-size: 1.05rem;
        height: 24px;
    }
}
