/* contact.css — Contact page specific styles (shared styles in pages.css) */

:root {
    --discord-color: #5865F2;
}

/* --- Contact Header --- */
.contact-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0015 0%, var(--color-bg-dark) 100%);
    border-bottom: 2px solid var(--color-accent);
}

.contact-header-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanline-scroll 8s linear infinite;
}

.contact-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-header-tag {
    display: block;
    font-family: 'Exo 2', monospace;
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.contact-header-sub {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--color-muted);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 0.75rem;
}

/* --- Discord Signal --- */
.signal-panel.discord-signal {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.1);
}

.signal-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 4px;
    font-size: 1.8rem;
}

.discord-signal .signal-icon-wrap {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: var(--discord-color);
}

.discord-signal .signal-title {
    color: var(--discord-color);
}

.btn-signal {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-signal.discord {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.4);
    color: var(--discord-color);
}

.btn-signal.discord:hover {
    background: var(--discord-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

/* --- Frequency Links (Other Socials) --- */
.freq-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.freq-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.freq-link > i:first-child {
    font-size: 1.4rem;
    width: 2rem;
    text-align: center;
}

.freq-link-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.freq-link-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.freq-link-handle {
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 1px;
}

.freq-link-arrow {
    font-size: 0.75rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.freq-link:hover .freq-link-arrow {
    opacity: 1;
}

.freq-link.tiktok > i:first-child { color: #ff0050; }
.freq-link.tiktok:hover {
    border-color: rgba(255, 0, 80, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 80, 0.15);
    color: var(--text-light);
}

.freq-link.instagram > i:first-child { color: #e1306c; }
.freq-link.instagram:hover {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.15);
    color: var(--text-light);
}
