#main-content-wrapper {
    opacity: 0;
    transition: opacity 0.8s ease-in-out 0.3s;
}

#main-content-wrapper.visible {
    opacity: 1;
}

.global-alert-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #1a1a1a;
    color: var(--text-primary);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 2px solid var(--border-color);
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}


section+section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-title .metallic {
    background: linear-gradient(135deg, #888 0%, #fff 25%, #aaa 50%, #fff 75%, #888 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-layout 5s linear infinite;
}

@keyframes shimmer-layout {
    0% {
        background-position: -300% center;
    }

    100% {
        background-position: 300% center;
    }
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 600px;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    box-shadow: 0 0 0 1000px #0e0e0f inset !important;
    -webkit-box-shadow: 0 0 0 1000px #0e0e0f inset !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    transition: background-color 999999s ease-in-out 0s !important;
}

body.no-scroll,
body.menu-open {
    overflow: hidden;
}

#main-content-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

a,
button {
    font-family: inherit;
}

button {
    border: 0;
}

::selection {
    color: #000;
    background: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid #050505;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.28);
}

img {
    max-width: 100%;
}

.mono {
    font-family: "JetBrains Mono", monospace;
}
