/* Eventbox Organizer – Veranstalter werden */

.ebo-reg {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Hero ── */

.ebo-reg__hero {
    text-align: center;
    padding: 60px 0 52px;
}

.ebo-reg__hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e6007e;
    background: rgba(230, 0, 126, 0.08);
    border-radius: 100px;
    margin-bottom: 20px;
}

.ebo-reg__hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 20px;
}

.ebo-reg__hero-text {
    font-size: 18px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 auto 36px;
    max-width: 500px;
}

/* ── Shared Actions ── */

.ebo-reg__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ── */

.ebo-reg__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.ebo-reg__btn--primary {
    background: #e6007e;
    color: #fff !important;
    border-color: #e6007e;
}

.ebo-reg__btn--primary:hover,
.ebo-reg__btn--primary:focus {
    background: #c4006a;
    border-color: #c4006a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 0, 126, 0.3);
}

.ebo-reg__btn--outline {
    background: transparent;
    color: #0f172a !important;
    border-color: #cbd5e1;
}

.ebo-reg__btn--outline:hover,
.ebo-reg__btn--outline:focus {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

/* ── Steps Section ── */

.ebo-reg__steps {
    padding: 48px 0 52px;
}

.ebo-reg__section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 0 0 32px;
}

.ebo-reg__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ── Step Card ── */

.ebo-reg__card {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px 28px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ebo-reg__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e6007e, #ff6b9d);
    opacity: 0;
    transition: opacity 0.25s;
}

.ebo-reg__card:hover {
    border-color: #f9a8d4;
    box-shadow: 0 8px 30px rgba(230, 0, 126, 0.08);
    transform: translateY(-3px);
}

.ebo-reg__card:hover::before {
    opacity: 1;
}

.ebo-reg__card-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 0, 126, 0.06);
    color: #e6007e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ebo-reg__card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.ebo-reg__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.ebo-reg__card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Bottom CTA ── */

.ebo-reg__cta {
    text-align: center;
    padding: 48px 0 60px;
    border-top: 1px solid #f1f5f9;
}

.ebo-reg__cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.ebo-reg__cta-text {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 28px;
}

/* ── Status Card (logged in) ── */

.ebo-reg__status {
    text-align: center;
    padding: 56px 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin: 48px 0;
}

.ebo-reg__status-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: #d1fae5;
    color: #059669;
    font-size: 26px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebo-reg__status-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.ebo-reg__status-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* ── Responsive ── */

@media (max-width: 600px) {
    .ebo-reg__hero {
        padding: 40px 0 36px;
    }

    .ebo-reg__hero-title {
        font-size: 28px;
    }

    .ebo-reg__hero-text {
        font-size: 16px;
    }

    .ebo-reg__grid {
        grid-template-columns: 1fr;
    }

    .ebo-reg__actions {
        flex-direction: column;
    }

    .ebo-reg__btn {
        width: 100%;
    }

    .ebo-reg__card-number {
        font-size: 40px;
    }
}
