@font-face {
    font-family: 'Replica';
    src: url('fonts/ReplicaLLSub-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Replica', sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-title {
    text-align: center;
    padding: 2rem;
}

.title-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.line {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: normal;
    letter-spacing: -0.02em;
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 2rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 1.25rem;
    position: relative;
    padding: 0.5rem;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: normal;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: normal;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.navigation {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.navigation a {
    color: #000000;
    text-decoration: none;
    font-size: 1.25rem;
    position: relative;
    padding: 0.5rem;
}

.navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    .navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ASCII Background Styles */
.ascii-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    font-family: "Courier New", monospace;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    white-space: pre;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    z-index: 1;
    background-color: #ffffff;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: none;
    font-smooth: never;
    text-rendering: geometricPrecision;
}

.ascii-row {
    flex: 1;
    width: 100%;
    text-align: center;
    white-space: pre;
    color: #000000;
    margin: 0;
    padding: 0;
    opacity: 1;
    text-shadow: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Different densities for abstract elements */
.ascii-row:nth-child(-n+3) {
    /* Upper area - very sparse */
    opacity: 0.4;
    font-weight: 300;
}

.ascii-row:nth-child(n+4):nth-child(-n+8) {
    /* Upper middle - flowing forms */
    opacity: 0.7;
    font-weight: 400;
}

.ascii-row:nth-child(n+9):nth-child(-n+15) {
    /* Middle section - medium density */
    opacity: 0.85;
    font-weight: 500;
}

.ascii-row:nth-child(n+16):nth-child(-n+22) {
    /* Lower middle - high density */
    opacity: 0.95;
    font-weight: 600;
}

.ascii-row:nth-child(n+23) {
    /* Base - highest density */
    opacity: 1;
    font-weight: 700;
}

:root {
    --neon-green: #00ff48;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --text-black: #000000;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.content-container h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: normal;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.text-content {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity 0.3s ease;
}

.text-content a:hover {
    opacity: 0.7;
}

.attribution {
    margin-top: 3rem;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-container {
        padding: 1.5rem;
    }

    .content-container h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .text-content {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .text-content p {
        margin-bottom: 1.25rem;
    }

    .attribution {
        margin-top: 2rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-nav ul {
        gap: 1.25rem;
    }

    .footer-nav a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 1rem;
    }

    .footer {
        padding: 1rem;
    }

    .footer-nav ul {
        gap: 1rem;
    }
} 