/* ════════════════════════════════════════
   LEGAL.CSS — Shared styles for Privacy, Terms, Contact
   ════════════════════════════════════════ */

.legal-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #ffffff33;
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 40px;
    transition: color 0.2s;
}
.legal-back:hover { color: var(--neon-cyan); }

.legal-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--neon-cyan);
    opacity: 0.5;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.legal-title {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffffcc;
    margin-bottom: 6px;
}

.legal-updated {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #ffffff33;
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ffffff0a;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--neon-cyan);
    opacity: 0.6;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff77;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li::before {
    content: '— ';
    color: #ffffff22;
}

.legal-section li + li {
    margin-top: 6px;
}

/* Terms-only: refund highlight box */
.legal-highlight {
    background: rgba(0, 245, 255, 0.04);
    border-left: 2px solid rgba(0, 245, 255, 0.2);
    padding: 14px 18px;
    border-radius: 0 6px 6px 0;
    margin-top: 12px;
}

.legal-highlight p {
    color: #ffffffaa;
}

/* Contact-only: contact cards */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(0, 245, 255, 0.03);
    border: 1px solid rgba(0, 245, 255, 0.08);
    border-radius: 8px;
    padding: 18px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--card-accent, rgba(0, 245, 255, 0.3));
}

.contact-card:hover {
    border-color: rgba(0, 245, 255, 0.2);
    background: rgba(0, 245, 255, 0.05);
    transform: translateX(3px);
}

.contact-card.discord { --card-accent: #7289DA88; }
.contact-card.tiktok  { --card-accent: rgba(255, 0, 110, 0.4); }
.contact-card.ig      { --card-accent: rgba(255, 214, 10, 0.3); }

.contact-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info { flex: 1; }

.contact-name {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #ffffffaa;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #ffffff33;
    letter-spacing: 1px;
}

.contact-arrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: #ffffff22;
    transition: all 0.2s;
}

.contact-card:hover .contact-arrow {
    color: #ffffff55;
    transform: translateX(3px);
}

.response-note {
    margin-top: 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: #ffffff22;
    letter-spacing: 1px;
    line-height: 1.8;
}
