/* --- LAYOUT --- */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 100px;
    min-height: 100vh;
}

.tab-content {
    display: none;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* --- NAVIGATION --- */
nav.desktop-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-center {
    display: flex;
    gap: 5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 8px 15px;
    border: 1px solid #333;
}

.search-box input {
    background: none;
    border: none;
    color: white;
    outline: none;
    width: 100px;
    max-width: 140px;
    margin-left: 8px;
    font-size: 0.9rem;
}

/* --- MOBILE NAV --- */
.mobile-nav {
    display: none;
}

.mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: #0a0a0c;
    border-top: 1px solid #222;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-btn.active {
    color: var(--accent);
}

#mobile-menu {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 10px;
    width: 250px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    z-index: 1002;
    flex-direction: column;
    gap: 15px;
}

/* --- FOOTER --- */
footer {
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 1px solid #222;
    text-align: center;
    background: #050507;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}