/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

p {
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.app-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header & Navigation (Global) */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    color: var(--color-brand);
}

.nav .logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Social Icons in Header */
.social-icons-group {
    display: flex;
    gap: 0px;
    padding: 0 4px;
    align-items: center;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.nav-icon:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-brand);
    transform: translateY(-1px);
}

.nav-icon svg {
    stroke-width: 2.5px;
}

/* Legal Page Content Wrapper */
.legal-content-wrapper {
    padding: 100px 20px 0;
    /* Consistent padding for fixed header and sides */
    max-width: 800px;
    margin: 0 auto;
}