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

:root {
    --bg-primary: #202020;
    --text-primary: #FEFEFE;
    --accent-green: #A6E242;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Custom neon green crosshair cursor - matches theme */
* {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cline x1='10' y1='0' x2='10' y2='8' stroke='%23A6E242' stroke-width='1.5'/%3E%3Cline x1='10' y1='12' x2='10' y2='20' stroke='%23A6E242' stroke-width='1.5'/%3E%3Cline x1='0' y1='10' x2='8' y2='10' stroke='%23A6E242' stroke-width='1.5'/%3E%3Cline x1='12' y1='10' x2='20' y2='10' stroke='%23A6E242' stroke-width='1.5'/%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23A6E242'/%3E%3C/svg%3E") 10 10, crosshair !important;
}

/* Text cursor for inputs */
input, textarea {
    cursor: text !important;
}

html, body {
    min-height: 100vh;
    width: 100vw;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: 2rem 0;
}

/* Scan Lines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    background: linear-gradient(
        transparent 50%,
        rgba(166, 226, 66, 0.03) 50%
    );
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

/* Header */
.header {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 100;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

/* Brand Name */
.brand-name {
    text-align: center;
    margin-bottom: 0.25rem;
    margin-top: -1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    padding: 0 2rem;
    overflow: visible;
    box-sizing: border-box;
}

.brand-title {
    font-family: var(--font-sans);
    font-size: 6.5rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    text-shadow: 
        0 0 20px rgba(254, 254, 254, 0.3),
        0 0 40px rgba(254, 254, 254, 0.1);
    animation: subtle-glow 4s ease-in-out infinite;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
}

.brand-letter {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.brand-letter:hover {
    color: var(--accent-green);
    text-shadow: 
        0 0 15px var(--accent-green),
        0 0 30px rgba(166, 226, 66, 0.5);
    transform: translateY(-2px);
}

.brand-accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-green),
        transparent
    );
    box-shadow: 0 0 10px var(--accent-green);
    opacity: 0.6;
    animation: pulse-glow 3s ease-in-out infinite;
}

.brand-accent-left {
    transform: rotate(180deg);
}

@keyframes subtle-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(254, 254, 254, 0.3),
            0 0 40px rgba(254, 254, 254, 0.1);
    }
    50% {
        text-shadow: 
            0 0 25px rgba(254, 254, 254, 0.4),
            0 0 50px rgba(254, 254, 254, 0.15),
            0 0 10px rgba(166, 226, 66, 0.2);
    }
}

.logo-underline {
    height: 2px;
    width: 100%;
    background-color: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--accent-green);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 12px var(--accent-green);
    }
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}

/* Central Message */
.central-message {
    text-align: center;
    margin-bottom: 0.25rem;
}

.headline {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0.8;
}

.subhead {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent-green);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(166, 226, 66, 0.5);
}

/* CTA Button (shown after headline on all screen sizes) */
.mobile-cta-container {
    display: block;
    text-align: center;
    margin: 1.5rem 0;
    padding: 0 2rem;
}

.mobile-cta-button {
    text-decoration: none;
    display: inline-block;
    font-size: 1rem !important;
    padding: 1rem 2.5rem !important;
}

/* Mission Statement Section */
.mission-section {
    width: 100%;
    max-width: 900px;
    margin: 3rem 0 2rem 0;
    padding: 0 2rem;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mission-intro {
    text-align: center;
}

.mission-tagline {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.mission-point {
    padding: 1.5rem;
    border: 1px solid rgba(166, 226, 66, 0.2);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mission-point:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(166, 226, 66, 0.2);
    transform: translateY(-2px);
}

.mission-point-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(166, 226, 66, 0.3);
}

.mission-point-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
    margin: 0;
}

.mission-cta {
    display: none; /* Hidden on all screen sizes - button now appears after headline */
}

.mission-cta-button {
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem !important;
    padding: 1.25rem 3rem !important;
}

.mission-cta-button:hover {
    transform: translateY(-2px);
}

/* Panel Container */
.panel-container {
    width: 100%;
    max-width: 700px;
    position: relative;
}

/* Role Selector */
.role-selector {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.role-button {
    background: transparent;
    border: 1px solid rgba(254, 254, 254, 0.3);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    flex: 1;
}

.role-button:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.role-button.active {
    background: var(--accent-green);
    color: var(--bg-primary);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(166, 226, 66, 0.4);
}

/* Subcategory Selector */
.subcategory-group {
    animation: fadeIn 0.3s ease-in-out;
}

.subcategory-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
    justify-content: center;
}

.subcategory-button {
    background: transparent;
    border: 1px solid rgba(254, 254, 254, 0.2);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    opacity: 0.7;
    flex: 0 1 auto;
    min-width: calc(33% - 0.4rem);
    text-align: center;
}

.subcategory-button:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    opacity: 1;
}

.subcategory-button.active {
    background: rgba(166, 226, 66, 0.15);
    color: var(--accent-green);
    border-color: var(--accent-green);
    opacity: 1;
    box-shadow: 0 0 8px rgba(166, 226, 66, 0.3);
}

/* Team Selector */
.team-group {
    animation: fadeIn 0.3s ease-in-out;
}

.team-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.team-button {
    background: transparent;
    border: 1px solid rgba(254, 254, 254, 0.2);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    opacity: 0.7;
}

.team-button:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    opacity: 1;
}

.team-button.active {
    background: rgba(166, 226, 66, 0.15);
    color: var(--accent-green);
    border-color: var(--accent-green);
    opacity: 1;
    box-shadow: 0 0 8px rgba(166, 226, 66, 0.3);
}

/* Follow-up Question */
.followup-group {
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.followup-group .form-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.followup-group .form-textarea {
    width: 100%;
    min-height: 50px;
    max-height: 60px;
    padding: 0.4rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(254, 254, 254, 0.3);
    color: var(--text-primary);
    resize: none;
    box-sizing: border-box;
}

.followup-group .form-textarea::placeholder {
    color: rgba(254, 254, 254, 0.3);
}

.followup-group .form-textarea:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 1px var(--accent-green);
    outline: none;
}

.hint {
    font-size: 0.6rem;
    opacity: 0.6;
    font-weight: 400;
}

.optional {
    font-size: 0.6rem;
    opacity: 0.5;
    font-weight: 400;
}

/* Panels */
.panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Forms */
.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Waitlist forms - more compact */
#waitlist-form-step1,
#waitlist-form-step2 {
    gap: 0.75rem;
}

/* Name row - side by side */
.name-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem;
    width: 100%;
}

.name-row > .form-group {
    flex: 1 1 45%;
    min-width: 0;
}

#waitlist-form-step1 .form-group,
#waitlist-form-step2 .form-group {
    gap: 0.25rem;
}

#waitlist-form-step1 .form-label,
#waitlist-form-step2 .form-label {
    font-size: 0.7rem;
}

#waitlist-form-step1 .form-input,
#waitlist-form-step1 .form-input-mono,
#waitlist-form-step2 .form-input,
#waitlist-form-step2 .form-input-mono {
    padding: 0.4rem 0;
    font-size: 0.75rem;
}

#waitlist-form-step2 .form-textarea {
    min-height: 50px;
    max-height: 60px;
    padding: 0.4rem;
    font-size: 0.75rem;
}

#waitlist-panel .panel-title {
    margin-bottom: 0.5rem;
    margin-top: -0.25rem;
    font-size: 1.1rem;
}

#waitlist-form-step1 .cta-button,
#waitlist-form-step2 .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

/* Step 2 Container */
.step2-container {
    margin-top: 1rem;
    padding-top: 1rem;
}

.step2-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(166, 226, 66, 0.5),
        transparent
    );
    margin-bottom: 0.75rem;
}

.step2-header {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

#waitlist-form-step2 {
    gap: 0.5rem;
}

#waitlist-form-step2 .form-textarea {
    min-height: 36px;
    max-height: 40px;
    padding: 0.3rem;
    font-size: 0.7rem;
}

#waitlist-form-step2 .cta-button {
    margin-top: 0.25rem;
    padding: 0.6rem 1rem;
}

/* URL Buttons Row */
.url-buttons-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.url-button {
    background: transparent;
    border: 1px solid rgba(254, 254, 254, 0.3);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    flex: 1;
    opacity: 0.6;
}

.url-button:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    opacity: 1;
}

.url-button.active {
    border-color: var(--accent-green);
    color: var(--accent-green);
    opacity: 1;
    box-shadow: 0 0 8px rgba(166, 226, 66, 0.3);
}

.url-fields-container {
    display: flex;
    gap: 0.5rem;
    min-height: 0;
    margin: 0;
}

.url-field {
    flex: 1;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

.url-field.visible {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 0;
}

.url-field.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.url-input {
    width: 100%;
    font-size: 0.8rem !important;
    padding: 0.5rem 0 !important;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.required {
    color: var(--accent-green);
}

.word-count {
    font-size: 0.65rem;
    opacity: 0.7;
    font-weight: 400;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(254, 254, 254, 0.3);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    caret-color: var(--accent-green); /* Green cursor */
}

.form-input-mono {
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.form-input:focus {
    border-bottom-color: var(--accent-green);
    box-shadow: 0 1px 0 0 var(--accent-green);
}

.form-input::placeholder {
    color: rgba(254, 254, 254, 0.3);
    opacity: 1;
}

.form-textarea {
    min-height: 60px;
    max-height: 80px;
    resize: none;
    border: 1px solid rgba(254, 254, 254, 0.3);
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    caret-color: var(--accent-green); /* Green cursor */
}

.form-textarea:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 1px var(--accent-green);
}

.cursor-blink {
    display: none !important; /* Disabled - using native green cursor instead */
}

.form-textarea + .cursor-blink {
    height: auto; /* Will be set by JavaScript to match font size */
}

/* Green cursor when input is focused */
.form-input:focus,
.form-textarea:focus {
    caret-color: var(--accent-green);
}

/* Cursor opacity controlled by JavaScript */

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* CTA Buttons */
.cta-button {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.875rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: none;
    outline: none;
}

.cta-primary {
    background: var(--accent-green);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(166, 226, 66, 0.4);
}

.cta-primary:hover {
    box-shadow: 0 0 30px rgba(166, 226, 66, 0.6);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.cta-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(254, 254, 254, 0.3);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    opacity: 0.6;
}

/* Responsive adjustments for 1920x1080 viewport */
@media (max-height: 1080px) {
    .brand-title {
        font-size: 5rem;
        letter-spacing: 0.3em;
    }
    
    .brand-accent-line {
        width: 40px;
    }
    
    .main-content {
        gap: 1rem;
    }
}

@media (max-width: 1920px) {
    .brand-title {
        font-size: clamp(4rem, 6vw, 6.5rem);
    }
}

/* Responsive adjustments for mission section */
@media (max-width: 768px) {
    /* Show mobile button on small screens */
    .mobile-cta-container {
        display: block;
        margin: 0.75rem 0;
    }
    
    .mission-section {
        margin: 0.75rem 0 0.5rem 0;
        padding: 0 1rem;
    }
    
    .mission-content {
        gap: 1rem;
    }
    
    .mission-intro {
        margin-bottom: -0.5rem;
    }
    
    .mission-tagline {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-point {
        padding: 1rem;
    }
    
    .mission-point-title {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .mission-point-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .mission-cta-button {
        font-size: 0.95rem !important;
        padding: 1rem 2rem !important;
    }
    
    /* Hide mission section CTA button on mobile (we show mobile-cta-container instead) */
    .mission-cta {
        display: none;
    }
}

/* Mobile/iPhone responsive */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
    
    .brand-name {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .brand-accent-line {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
    }
    
    .brand-name {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .brand-accent-line {
        width: 15px;
    }
}

@media (max-width: 375px) {
    .brand-title {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }
}

/* Desktop-only: More breathing room */
@media (min-width: 769px) {
    .mission-section {
        margin: 2rem 0 3rem 0;
    }
    
    .mission-tagline {
        font-size: 1.25rem;
    }
    
    .mobile-cta-button {
        font-size: 1.25rem !important;
        padding: 1.5rem 3.5rem !important;
    }
    
    .brand-name {
        margin-bottom: 1rem;
        margin-top: 0;
    }

    .central-message {
        margin-bottom: 1rem;
    }
    
    .mobile-cta-container {
        margin: 1rem 0;
    }

    .main-content {
        gap: 1.5rem;
        padding: 1rem 4rem;
    }

    .panel-container {
        max-width: 1400px;
        width: 80%;
    }

    #waitlist-panel .panel-title {
        margin-bottom: 1.5rem;
        margin-top: 0;
        font-size: 1.5rem;
    }

    #waitlist-form-step1,
    #waitlist-form-step2 {
        gap: 1.5rem;
    }

    #waitlist-form-step1 .form-group,
    #waitlist-form-step2 .form-group {
        gap: 0.6rem;
    }

    #waitlist-form-step1 .form-label,
    #waitlist-form-step2 .form-label {
        font-size: 0.9rem;
    }

    #waitlist-form-step1 .form-input,
    #waitlist-form-step1 .form-input-mono,
    #waitlist-form-step2 .form-input,
    #waitlist-form-step2 .form-input-mono {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    #waitlist-form-step2 .form-textarea {
        min-height: 50px;
        max-height: 60px;
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    #waitlist-form-step1 .cta-button,
    #waitlist-form-step2 .cta-button {
        font-size: 0.9rem;
        padding: 1rem 2rem;
    }

    .step2-container {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .step2-header {
        font-size: 1rem;
    }
}

/* Allow scrolling when content is tall */
html {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Terminal Overlay */
.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.terminal-overlay.fade-out {
    opacity: 0;
}

.terminal-container {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(166, 226, 66, 0.5);
}

.terminal-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: terminalFadeIn 0.2s ease-in forwards;
    word-wrap: break-word;
    white-space: pre-wrap;
}

@keyframes terminalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.terminal-cursor {
    display: inline-block;
    width: 0.6em;
    height: 1em;
    background-color: var(--accent-green);
    margin-left: 0.2em;
    animation: terminalBlink 1s infinite;
    box-shadow: 0 0 10px rgba(166, 226, 66, 0.8);
    vertical-align: baseline;
}

@keyframes terminalBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

