/* about.css — About page specific styles (shared styles in pages.css) */

/* --- About header aliases to shared page-header --- */
.about-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);
}

.about-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;
}

.about-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-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;
}

.about-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;
}

/* --- Purpose Section --- */
.purpose-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.purpose-section .terminal-label {
    margin-bottom: 1rem;
}

.purpose-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 0 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card .signal-info {
    width: 100%;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.stat-label {
    font-family: 'Exo 2', monospace;
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- DJ About Grid --- */
.dj-about-section {
    margin-bottom: 3rem;
}

.dj-about-section > .terminal-label {
    display: block;
    margin-bottom: 1.25rem;
}

.dj-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dj-about-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dj-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(251, 70, 228, 0.15);
}

.dj-about-card .terminal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    flex: 1;
}

.dj-about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.dj-about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-about-avatar-default {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.05);
    color: var(--color-accent);
    font-size: 1.75rem;
}

.dj-about-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.dj-about-genres {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.dj-about-bio {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.dj-about-link {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 0.5rem;
}

@media (max-width: 991px) {
    .dj-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .dj-about-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Platform List --- */
.platform-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.75rem;
}

.platform-item {
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.platform-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.1);
}

.platform-key {
    display: block;
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.platform-val {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Platform panel — full width with row layout on desktop */
.platform-panel {
    margin-bottom: 3rem;
}

.platform-list--row {
    flex-direction: row;
    gap: 1rem;
}

.platform-list--row .platform-item {
    flex: 1;
}

@media (max-width: 768px) {
    .platform-list--row {
        flex-direction: column;
    }
}

/* --- Join the Frequency --- */
.join-section {
    margin-bottom: 2rem;
}

.join-section > .terminal-label {
    display: block;
    margin-bottom: 1.25rem;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.join-card {
    display: flex;
    flex-direction: column;
}

.join-card .terminal-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.join-icon {
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 1;
}

.join-tag {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.join-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.join-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.join-btn {
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .join-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Support Section --- */
.support-section {
    margin-bottom: 3rem;
}

.support-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    line-height: 1;
}

.support-panel .btn-transmit::before {
    display: none;
}

.support-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.75;
    margin: 0.5rem 0 1rem;
}

@media (max-width: 575px) {
    .support-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
