/* ========== HEADER STYLES ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #f44444;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.btn-nav {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #9a9a9a;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-nav::before,
.btn-nav::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.btn-nav::before {
    top: -3px;
    left: -3px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

.btn-nav::after {
    bottom: -3px;
    right: -3px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.btn-nav:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-nav:hover::before {
    top: -6px;
    left: -6px;
    width: 10px;
    height: 10px;
    border-color: rgba(255,255,255,0.8);
}

.btn-nav:hover::after {
    bottom: -6px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-color: rgba(255,255,255,0.8);
}

/* ========== HERO CONTAINER ========== */
.hero-container {
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    color: #9a9a9a;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #f44444, transparent);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========== FOOTER ========== */
.btn-nav-sm {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #9a9a9a;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-nav-sm::before,
.btn-nav-sm::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    transition: all 0.3s ease;
}

.btn-nav-sm::before {
    top: -2px;
    left: -2px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

.btn-nav-sm::after {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.btn-nav-sm:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-nav-sm:hover::before {
    top: -5px;
    left: -5px;
    width: 8px;
    height: 8px;
    border-color: rgba(255,255,255,0.8);
}

.btn-nav-sm:hover::after {
    bottom: -5px;
    right: -5px;
    width: 8px;
    height: 8px;
    border-color: rgba(255,255,255,0.8);
}
