/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(26, 28, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 246, 255, 0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--color-cyan);
}

/* ToS Hero */
.tos-hero {
    padding: 150px 0 40px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 246, 255, 0.08) 0%, transparent 60%);
}

.tos-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.tos-hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ToS Content */
.tos-content {
    padding: 3rem 0 5rem;
}

.tos-prose {
    max-width: 800px;
    margin: 0 auto;
}

.tos-section {
    margin-bottom: 3rem;
}

.tos-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tos-section h2 i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.tos-section p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tos-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tos-section ul li {
    color: var(--color-text-muted);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tos-section ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--color-cyan);
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.contact-email a {
    color: var(--color-cyan);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

.contact-email a:hover {
    text-decoration: underline;
}

.tos-updated {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 246, 255, 0.5));
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .tos-hero {
        padding: 100px 0 30px;
    }

    .tos-prose {
        padding: 0 1rem;
    }
}
