/* --- How To Join Page --- */
.join-page {
    padding-top: 120px;
    padding-bottom: 70px;
}

.join-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 45%, #ffffff 100%);
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 34px;
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-block;
    background: #dbeafe;
    color: #1e3a8a;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.76rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
}

.join-hero h2 {
    font-size: 2.1rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.join-hero p {
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 20px;
}

.server-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.server-chip {
    background: var(--white);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 10px 14px;
}

.server-chip .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.server-chip strong {
    color: var(--dark-bg);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.join-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 18px -12px rgba(15, 23, 42, 0.25);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.join-card h3 {
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.join-card ol,
.console-steps ol,
.troubleshoot-box ul {
    margin-left: 20px;
    color: var(--text-main);
}

.join-card li,
.console-steps li,
.troubleshoot-box li {
    margin-bottom: 8px;
}

.note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.console-guide {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 22px;
}

.console-guide h3 {
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.console-guide > p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.console-membership-note {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    color: #92400e;
    padding: 10px 12px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
    margin-bottom: 14px;
}

.pill-list li {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.87rem;
    color: var(--text-main);
}

.console-steps {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.console-steps h4 {
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.troubleshoot-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 20px;
}

.troubleshoot-box h3 {
    color: #9a3412;
    margin-bottom: 10px;
}

.troubleshoot-box ul {
    margin-bottom: 14px;
}

@media (max-width: 700px) {
    .join-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .join-hero {
        padding: 22px;
    }

    .join-hero h2 {
        font-size: 1.7rem;
    }

    .console-guide,
    .troubleshoot-box,
    .join-card {
        padding: 18px;
    }
}
