/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 165, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 165, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 60px 0;
    border-bottom: 2px solid #ff6500;
    margin-bottom: 60px;
}

.logo {
    font-size: 3.5em;
    font-weight: bold;
    color: #ff6500;
    text-shadow: 0 0 20px rgba(255, 101, 0, 0.3);
    letter-spacing: -2px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 101, 0, 0.1);
    padding: 10px 20px;
    border: 1px solid #ff6500;
    border-radius: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff41;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-text {
    font-size: 0.9em;
    font-weight: bold;
    color: #00ff41;
    letter-spacing: 1px;
}

/* Main content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 40px 0;
}

.tagline-primary {
    font-size: 2.2em;
    color: #ff6500;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.3;
}

.tagline-secondary {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 15px;
    font-style: italic;
}

.tagline-tertiary {
    font-size: 1.1em;
    color: #888888;
    opacity: 0.8;
}

/* Explanation section */
.explanation {
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.2);
    border-radius: 8px;
    padding: 40px;
}

.explanation h3 {
    font-size: 2em;
    color: #ff6500;
    margin-bottom: 30px;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 101, 0, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: rgba(255, 101, 0, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    filter: grayscale(0.3);
}

.feature h4 {
    font-size: 1.3em;
    color: #ff6500;
    margin-bottom: 15px;
}

.feature p {
    color: #cccccc;
    font-size: 0.95em;
}

/* Signup section */
.signup {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.signup h3 {
    font-size: 2em;
    color: #00ff41;
    margin-bottom: 15px;
}

.signup > p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.signup-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 4px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1em;
}

.form-group input::placeholder {
    color: #888888;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-group button {
    padding: 12px 25px;
    background: #00ff41;
    color: #0a0a0a;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: #00cc33;
    transform: translateY(-1px);
}

.form-note {
    color: #888888;
    font-size: 0.9em;
    font-style: italic;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 101, 0, 0.3);
    text-align: center;
    color: #666666;
}

.footer p {
    margin-bottom: 10px;
}

.footer-note {
    font-style: italic;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 40px;
    }

    .logo {
        font-size: 2.5em;
    }

    .tagline-primary {
        font-size: 1.6em;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .explanation,
    .signup {
        padding: 30px 20px;
    }

    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2em;
    }

    .tagline-primary {
        font-size: 1.3em;
    }

    .tagline-secondary {
        font-size: 1.1em;
    }
}

/* Subtle animations */
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo {
    animation: flicker 4s infinite;
}

/* Selection styling */
::selection {
    background: rgba(255, 101, 0, 0.3);
    color: #ffffff;
}