﻿.tf-page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.tf-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11,15,23,0.72);
    border-bottom: 1px solid var(--tf-border);
}

.tf-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.tf-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.tf-brand-badge {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--tf-accent);
    box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

.tf-nav-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.tf-main {
    flex: 1;
    padding: 28px 0 50px;
}

.tf-footer {
    border-top: 1px solid var(--tf-border);
    background: rgba(255,255,255,0.02);
    padding: 18px 0;
    color: var(--tf-muted);
}
