@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

.hero-section {
    font-family: 'Electrolize', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0 40px;
    position: relative;
}

.hero-section::after {
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 217, 255, 0.025) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 217, 255, 0.025) 6px
    );
    pointer-events: none;
    z-index: 0;
}

.about-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ---- Card ------------------------------------------------- */
.about-card {
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    background: rgba(10, 10, 20, 0.65);
    border: 1px solid rgba(0, 217, 255, 0.25);
}

/* Status bar */
.about-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.05);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.status-bar-left,
.status-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff41;
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.7);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.status-label {
    color: #00ff41;
    font-weight: 700;
}

.status-meta {
    color: rgba(0, 217, 255, 0.6);
    font-weight: 700;
}

/* ---- Page header ----------------------------------------- */
.about-doc-header {
    padding: 22px 40px 18px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-doc-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #00ff41;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
}

.about-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #e8f6ff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.2);
}

.about-subtitle {
    font-size: 0.85rem;
    color: #b8b8c8;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ---- Body ------------------------------------------------- */
.about-body {
    padding: 0 40px 28px;
    display: flex;
    flex-direction: column;
}

.about-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Section headings */
.about-heading-1 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #00d9ff;
    margin: 0 0 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}

/* Body text */
.about-body p {
    font-size: 0.88rem;
    color: #b8b8c8;
    line-height: 1.75;
    margin: 0;
}

.about-body strong {
    color: #e8f6ff;
    font-weight: 700;
}

.about-body a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.about-body a:hover {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

/* Feature list */
.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-list li {
    font-size: 0.88rem;
    color: #b8b8c8;
    line-height: 1.75;
    padding-left: 18px;
    position: relative;
}

.about-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 2px;
    color: #00d9ff;
    font-size: 0.75rem;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.4);
}

/* ---- CTA -------------------------------------------------- */
.about-cta {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-cta-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #00ff41;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
}

.about-cta-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #e8f6ff;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.2);
}

.about-cta-text {
    font-size: 0.88rem;
    color: #b8b8c8;
    line-height: 1.75;
    margin: 0;
}

.about-cta-button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00d9ff 0%, #00ff41 100%);
    border: 1px solid transparent;
    border-radius: 6px;
    color: #0a0e27;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(0, 217, 255, 0.25);
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-button:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 22px rgba(0, 255, 65, 0.4);
    text-decoration: none;
    color: #0a0e27;
}

.about-cta-button:active {
    transform: translateY(0);
}

.about-cta-button-arrow {
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.about-cta-button:hover .about-cta-button-arrow {
    transform: translateX(3px);
}

/* ---- Footer ----------------------------------------------- */
.about-doc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    font-size: 0.7rem;
    color: rgba(184, 184, 200, 0.7);
    letter-spacing: 0.5px;
}

.about-footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff00ff;
    box-shadow: 0 0 6px rgba(255, 0, 255, 0.6);
    flex-shrink: 0;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 700px) {
    .about-doc-header,
    .about-body,
    .about-doc-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-title {
        font-size: 1.35rem;
    }

    .about-status-bar {
        font-size: 0.6rem;
        padding: 7px 12px;
    }

    .status-meta {
        display: none;
    }

    .hero-section {
        padding: 14px 0 28px;
    }

    .about-cta-button {
        align-self: flex-start;
    }
}

/* Match the / route's register button exactly */
.about-cta .register-button {
    align-self: flex-start;
    display: inline-block;
    font-family: 'Electrolize', sans-serif;
    background: linear-gradient(135deg, #00d9ff 0%, #00ff41 100%);
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 17px 25px;
    color: #0a0e27;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(0, 217, 255, 0.25);
    margin: 0;
}

.about-cta .register-button:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 22px rgba(0, 255, 65, 0.4);
    color: #0a0e27;
}

.about-cta .register-button:active {
    transform: translateY(0);
}
