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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1A1A1A;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 700px;
}

.content {
    background: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 16px;
    padding: 64px 48px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.logo {
    margin: 0 auto 48px auto;
    padding: 24px 32px;
    background-color: #2A2A2A;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    justify-content: center;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 120px;
    height: 120px;
    display: block;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.2));
    transition: filter 0.3s ease;
    margin-right: -28px;
    transform: translateY(-1.5px);
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 4px 12px rgba(212, 165, 116, 0.3));
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.9;
    white-space: nowrap;
    transform: translateY(0px);
}

.logo-omni {
    background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.logo-node {
    color: #909090;
    font-weight: 400;
    -webkit-text-stroke: 0.5px rgba(144, 144, 144, 0.3);
}

.hero h2 {
    font-size: 2.25rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: #B0B0B0;
    margin-bottom: 48px;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    background: #1A1A1A;
    border: 1px solid #4A4A4A;
    border-radius: 8px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    background: #1F1F1F;
}

input[type="email"]::placeholder {
    color: #707070;
}

button[type="submit"] {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    background: linear-gradient(135deg, #E8B86D 0%, #D4A574 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #F0C889 0%, #E0B584 100%);
}

button[type="submit"]:active {
    transform: translateY(0);
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.message.success {
    background: rgba(76, 175, 80, 0.15);
    color: #81C784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background: rgba(244, 67, 54, 0.15);
    color: #EF9A9A;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.features {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #3A3A3A;
}

.features p {
    color: #B0B0B0;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 48px 32px;
    }

    .logo {
        margin-bottom: 32px;
        gap: 6px;
        padding: 20px 24px;
    }

    .logo-icon {
        width: 90px;
        height: 90px;
        margin-right: -21px;
        transform: translateY(-2px);
    }

    .logo-text {
        font-size: 2.75rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    input[type="email"],
    button[type="submit"] {
        padding: 16px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .logo {
        gap: 5px;
        padding: 16px 20px;
    }

    .logo-icon {
        width: 70px;
        height: 70px;
        margin-right: -16px;
        transform: translateY(-2.5px);
    }

    .logo-text {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}


.status-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.status-card h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-card p {
    margin: 0 0 0.75rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.status-details {
    margin: 0;
    padding: 0.75rem;
    border-radius: 8px;
    background: #111827;
    color: #e5e7eb;
    font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    max-height: 260px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}
