* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background: #0a0a0a;
color: #fff;
font-family: 'Courier New', monospace;
min-height: 100vh;
overflow-x: hidden;
line-height: 1.6;
}

.animated-lines {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.generative-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.6;
}

.container {
position: relative;
z-index: 10;
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
min-height: 100vh;
display: flex;
flex-direction: column;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 4rem;
padding: 1rem 0;
}

.logo {
width: 80px;
height: auto;
opacity: 0.9;
}

.tiny-menu {
display: flex;
gap: 2rem;
font-size: 1rem;
letter-spacing: 0.1em;
text-transform: lowercase;
}

.tiny-menu a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}

.tiny-menu a:hover {
color: #ff00c8;
}

.main-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 3rem;
margin-bottom: 4rem;
}

.content-section {
max-width: 800px;
}

.content-section h1 {
font-size: 2.5rem;
color: #ff00c8;
letter-spacing: 0.05em;
text-transform: lowercase;
font-weight: normal;
}

.content-section p {
font-size: 1rem;
color: #ccc;
margin-bottom: 1.5rem;
line-height: 1.25;
}

.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 2rem;
}

.info-box {
padding: 1.5rem;
border-left: #ff00c8 1px solid;
}

.info-box h3 {
color: #ff00c8;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1rem;
font-weight: bold;
}

.info-box p {
font-size: 1rem;
color: #ccc;
margin-bottom: 1.5rem;
line-height: 1.25;
white-space: pre-line;
text-align: justify;
}

.info-box a {
font-size: 1rem;
color: #ccc;
margin-bottom: 1.5rem;
line-height: 1.25;
white-space: pre-line;
text-align: justify;
}

.footer {
padding-top: 2rem;
margin-top: auto;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

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

.footer-logo {
height: 40px;
width: auto;
transition: opacity 0.3s ease;
}

.footer-logo:hover {
opacity: 1;
}

.footer-text {
font-size: 0.7rem;
color: #ccc;
letter-spacing: 0.1em;
}

.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    backdrop-filter: blur(10px);
    z-index: 20;
    padding: 1rem 2rem;
    margin-bottom: 0;
}

.container {
    padding-top: 130px; /* Add space to account for fixed header */
}

section[id] {
    scroll-margin-top: 130px;
}

@media (max-width: 768px) {
.container {
    padding: 1rem;
    padding-top: 130px;

}

.header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tiny-menu {
    gap: 1rem;
    font-size: 0.8rem;
}

.content-section h1 {
    font-size: 2rem;
}

.info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-content {
    flex-direction: column;
    text-align: center;
}

.footer-logos {
    gap: 1rem;
}

.footer-logo {
    height: 25px;
}

@media (max-width: 768px) {
    /* existing mobile styles ... */
    
    .footer {
        padding-top: 3rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logos {
        gap: 2rem;
    }

    .footer-logo {
        height: 40px;
    }
}
}