﻿/*--------------------------------------------------------------
📡 Contact Console Styles
--------------------------------------------------------------*/

.contact-console {
    padding: 2rem;
    color: #e0f1ff;
    font-family: var(--font-main);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

    .contact-console h1,
    .contact-console h2 {
        font-family: var(--font-accent);
        color: var(--color-accent);
        margin-bottom: 1rem;
    }

    .contact-console hr {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 1.5rem 0;
    }

    .contact-console p {
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .contact-console strong {
        color: #90caf9;
    }

    .contact-console button {
        margin-top: 1.5rem;
        font-family: var(--font-accent);
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        border: 1px solid var(--color-primary-blue);
        background-color: #1a1f2d;
        color: var(--color-accent);
        cursor: not-allowed;
        box-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
        transition: box-shadow 0.2s ease;
    }

/* Terminal styling reused from global theme (can be scoped here instead) */
.console {
    background-color: black;
    color: #00ff00;
    font-family: monospace;
    padding: 1em;
    border: 2px solid #00ff00;
    border-radius: 10px;
    max-width: 600px;
    height: 350px;
    margin: 2em auto;
    white-space: pre;
    animation: flicker 0.15s infinite;
    box-shadow: 0 0 12px #00ff00;
}
