.aurora-home {
    --aurora-coral: #ff4b2b;
    --aurora-pink: #f90c6a;
    --aurora-violet: #7427e8;
    --aurora-indigo: #4f2bd9;
    --aurora-ink: #17152c;
    --aurora-muted: #68657a;
    --aurora-line: #e8e4f0;
    --aurora-soft: #faf8ff;
    background: #fff;
    color: var(--aurora-ink);
    overflow: hidden;
}

.aurora-home a:focus-visible,
.aurora-home button:focus-visible {
    outline: 3px solid rgba(116, 39, 232, .3);
    outline-offset: 3px;
}

.aurora-hero {
    background:
        radial-gradient(circle at 8% 8%, rgba(249, 12, 106, .11), transparent 29rem),
        radial-gradient(circle at 92% 22%, rgba(116, 39, 232, .13), transparent 32rem),
        linear-gradient(180deg, #fff 0%, #fdfbff 100%);
    padding: clamp(4rem, 8vw, 7.5rem) 0 5rem;
    position: relative;
}

.aurora-hero::after {
    background-image: radial-gradient(rgba(116, 39, 232, .18) 1px, transparent 1px);
    background-size: 18px 18px;
    content: "";
    height: 210px;
    opacity: .45;
    pointer-events: none;
    position: absolute;
    right: -30px;
    top: 35px;
    width: 240px;
}

.aurora-container {
    margin: 0 auto;
    max-width: 1240px;
    padding-inline: clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 1;
}

.aurora-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 6vw, 5rem);
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
}

.aurora-eyebrow {
    align-items: center;
    background: rgba(116, 39, 232, .08);
    border: 1px solid rgba(116, 39, 232, .14);
    border-radius: 999px;
    color: #5620ba;
    display: inline-flex;
    font-size: .8rem;
    font-weight: 800;
    gap: .5rem;
    letter-spacing: .06em;
    padding: .55rem .8rem;
    text-transform: uppercase;
}

.aurora-eyebrow .bi {
    color: var(--aurora-pink);
}

.aurora-title {
    font-size: clamp(2.75rem, 5.2vw, 4.75rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.02;
    margin: 1.35rem 0 1.4rem;
    max-width: 760px;
}

.aurora-gradient-text {
    -webkit-background-clip: text;
    background-image: linear-gradient(110deg, var(--aurora-coral), var(--aurora-pink) 46%, var(--aurora-violet));
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.aurora-lead {
    color: var(--aurora-muted);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.7;
    max-width: 650px;
}

.aurora-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.aurora-btn {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 800;
    gap: .55rem;
    justify-content: center;
    min-height: 50px;
    padding: .8rem 1.25rem;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.aurora-btn:hover {
    transform: translateY(-2px);
}

.aurora-btn-primary {
    background: linear-gradient(110deg, var(--aurora-pink), var(--aurora-violet));
    box-shadow: 0 14px 30px rgba(116, 39, 232, .24);
    color: #fff;
}

.aurora-btn-primary:hover {
    box-shadow: 0 18px 34px rgba(116, 39, 232, .31);
    color: #fff;
}

.aurora-btn-explore {
    background: linear-gradient(110deg, #ff4b2b 0%, #f50c68 44%, #7427e8 100%);
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow:
        0 14px 30px rgba(116, 39, 232, .22),
        0 4px 12px rgba(245, 12, 104, .16),
        inset 0 1px 0 rgba(255, 255, 255, .28);
    gap: .72rem;
    isolation: isolate;
    min-height: 54px;
    overflow: hidden;
    padding: .58rem .72rem .58rem .62rem;
    position: relative;
}

.aurora-home a.aurora-btn-explore,
.aurora-home a.aurora-btn-explore:hover,
.aurora-home a.aurora-btn-explore:focus,
.aurora-home a.aurora-btn-explore:active {
    color: #fff;
    text-decoration: none;
}

.aurora-btn-explore::before {
    background: linear-gradient(110deg, rgba(255, 255, 255, .22), transparent 42%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.aurora-btn-explore::after {
    background: rgba(255, 255, 255, .13);
    border-radius: 50%;
    content: "";
    height: 90px;
    pointer-events: none;
    position: absolute;
    right: -58px;
    top: -58px;
    transition: transform .22s ease;
    width: 90px;
    z-index: -1;
}

.aurora-btn-explore-icon {
    align-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1rem;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.aurora-btn-explore-arrow {
    font-size: .95rem;
    margin-left: .15rem;
    transition: transform .18s ease;
}

.aurora-btn-explore:hover {
    background: linear-gradient(110deg, #f74427 0%, #e90b64 44%, #6921d4 100%);
    box-shadow:
        0 18px 38px rgba(116, 39, 232, .28),
        0 6px 16px rgba(245, 12, 104, .2),
        inset 0 1px 0 rgba(255, 255, 255, .3);
    transform: translateY(-2px);
}

.aurora-btn-explore:hover::after {
    transform: scale(1.45);
}

.aurora-btn-explore:hover .aurora-btn-explore-arrow {
    transform: translateX(3px);
}

.aurora-btn-explore:active {
    box-shadow:
        0 9px 20px rgba(116, 39, 232, .22),
        inset 0 1px 0 rgba(255, 255, 255, .24);
    transform: translateY(0);
}
.aurora-btn-secondary {
    background: #fff;
    border: 1px solid var(--aurora-line);
    color: var(--aurora-ink);
}

.aurora-btn-secondary:hover {
    border-color: rgba(116, 39, 232, .38);
    color: #5620ba;
}

.aurora-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.25rem;
    margin-top: 2rem;
}

.aurora-trust-row span {
    align-items: center;
    color: var(--aurora-muted);
    display: inline-flex;
    font-size: .92rem;
    gap: .45rem;
}

.aurora-trust-row .bi {
    color: var(--aurora-pink);
}

.aurora-showcase {
    min-height: 490px;
    position: relative;
}

.aurora-showcase-card {
    background: #fff;
    border: 1px solid rgba(116, 39, 232, .15);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(50, 30, 100, .17);
    overflow: hidden;
    transform: rotate(1.5deg);
}

.aurora-showcase-media {
    background: #f7f3ff;
    min-height: 310px;
    overflow: hidden;
    position: relative;
}

.aurora-showcase-media img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.aurora-media-shade {
    background: linear-gradient(180deg, transparent 40%, rgba(23, 21, 44, .7));
    inset: 0;
    position: absolute;
}

.aurora-live-badge {
    align-items: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    color: #b1084c;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    gap: .45rem;
    left: 1rem;
    padding: .5rem .7rem;
    position: absolute;
    top: 1rem;
}

.aurora-live-badge::before {
    background: var(--aurora-pink);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(249, 12, 106, .13);
    content: "";
    height: 7px;
    width: 7px;
}

.aurora-play {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(23, 21, 44, .22);
    color: var(--aurora-violet);
    display: flex;
    font-size: 1.4rem;
    height: 64px;
    justify-content: center;
    left: 50%;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
}

.aurora-play:hover {
    color: var(--aurora-pink);
}

.aurora-showcase-body {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.25rem 1.35rem;
}

.aurora-showcase-body h2 {
    font-size: 1.15rem;
    font-weight: 900;
    margin: 0 0 .25rem;
}

.aurora-showcase-body p {
    color: var(--aurora-muted);
    font-size: .9rem;
    margin: 0;
}

.aurora-vote-count {
    color: #5620ba;
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
}

.aurora-float-card {
    align-items: center;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(116, 39, 232, .14);
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(50, 30, 100, .14);
    display: flex;
    gap: .7rem;
    padding: .8rem 1rem;
    position: absolute;
    z-index: 2;
}

.aurora-float-card .bi {
    align-items: center;
    background: rgba(249, 12, 106, .1);
    border-radius: 10px;
    color: var(--aurora-pink);
    display: flex;
    font-size: 1.2rem;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.aurora-float-card strong,
.aurora-float-card small {
    display: block;
}

.aurora-float-card small {
    color: var(--aurora-muted);
    font-size: .76rem;
}

.aurora-float-one {
    left: -2rem;
    top: 3.2rem;
}

.aurora-float-two {
    bottom: .8rem;
    right: -1.2rem;
}

.aurora-contest-promo {
    background: #fff;
    padding: 0 0 clamp(4.5rem, 8vw, 7rem);
}

.aurora-contest-promo-card {
    background: #120d2e;
    border: 1px solid rgba(116, 39, 232, .2);
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(42, 25, 91, .2);
    color: #fff;
    min-height: clamp(540px, 42vw, 590px);
    overflow: hidden;
    position: relative;
}

.aurora-contest-promo-card::after {
    background: linear-gradient(90deg, rgba(10, 7, 31, .98) 0%, rgba(14, 9, 42, .94) 36%, rgba(17, 9, 43, .57) 59%, rgba(17, 9, 43, .06) 82%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.aurora-contest-promo-image {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.aurora-contest-promo-copy {
    padding: clamp(2rem, 5vw, 4.25rem);
    position: relative;
    width: min(61%, 700px);
    z-index: 1;
}

.aurora-contest-promo-label {
    align-items: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    gap: .5rem;
    letter-spacing: .055em;
    padding: .55rem .8rem;
    text-transform: uppercase;
}

.aurora-contest-promo-label .bi {
    color: #ff76b5;
}

.aurora-contest-promo-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.05;
    margin: 1.25rem 0 1rem;
}

.aurora-contest-promo-copy > p {
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.65;
    margin: 0;
    max-width: 590px;
}

.aurora-contest-promo-offer {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 610px;
    padding: .9rem 1rem;
}

.aurora-contest-promo-offer strong {
    color: #ff8ac0;
    flex: 0 0 auto;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 900;
}

.aurora-contest-promo-offer span {
    color: rgba(255, 255, 255, .84);
    font-size: .9rem;
    line-height: 1.45;
}

.aurora-contest-promo-code {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .75rem;
    margin: -.45rem 0 1.5rem;
}

.aurora-contest-promo-code span {
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.aurora-contest-promo-code code {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 9px;
    color: #6a1ac6;
    font-family: Consolas, "Courier New", monospace;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .06em;
    padding: .48rem .7rem;
    user-select: all;
}

.aurora-contest-promo-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.15rem;
}

.aurora-contest-promo-actions .aurora-btn-primary,
.aurora-contest-promo-actions .aurora-btn-primary:visited {
    color: #fff;
}

.aurora-contest-promo-actions small {
    color: rgba(255, 255, 255, .62);
    font-size: .75rem;
    line-height: 1.4;
    max-width: 230px;
}

.aurora-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.aurora-section-soft {
    background: var(--aurora-soft);
}

.aurora-section-heading {
    margin: 0 auto 2.7rem;
    max-width: 720px;
    text-align: center;
}

.aurora-section-heading h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -.035em;
    margin: 1rem 0;
}

.aurora-section-heading p {
    color: var(--aurora-muted);
    font-size: 1.05rem;
    margin: 0;
}

.aurora-role-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aurora-role-card {
    background: #fff;
    border: 1px solid var(--aurora-line);
    border-radius: 16px;
    min-height: 230px;
    padding: 1.5rem;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.aurora-role-card:hover {
    border-color: rgba(116, 39, 232, .34);
    box-shadow: 0 18px 40px rgba(50, 30, 100, .09);
    transform: translateY(-4px);
}

.aurora-role-icon {
    align-items: center;
    background: linear-gradient(135deg, rgba(249, 12, 106, .11), rgba(116, 39, 232, .11));
    border-radius: 13px;
    color: var(--aurora-violet);
    display: flex;
    font-size: 1.35rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 1.15rem;
    width: 48px;
}

.aurora-role-card h3 {
    font-size: 1.12rem;
    font-weight: 900;
    margin-bottom: .6rem;
}

.aurora-role-card p {
    color: var(--aurora-muted);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0;
}

.aurora-creator-stage {
    background: var(--aurora-soft);
    padding: 0 0 clamp(4.5rem, 8vw, 7rem);
}

.aurora-creator-stage-panel {
    background: #09051f;
    border: 1px solid rgba(249, 12, 106, .22);
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(23, 12, 64, .22);
    min-height: clamp(380px, 37vw, 484px);
    overflow: hidden;
    position: relative;
}

.aurora-creator-stage-panel::after {
    background: linear-gradient(90deg, rgba(7, 5, 30, .99) 0%, rgba(7, 5, 30, .95) 30%, rgba(7, 5, 30, .58) 51%, rgba(7, 5, 30, .06) 72%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.aurora-creator-stage-image {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.aurora-creator-stage-copy {
    color: #fff;
    max-width: 610px;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    position: relative;
    z-index: 1;
}

.aurora-creator-stage-brand {
    align-items: center;
    display: flex;
    gap: 1.15rem;
}

.aurora-creator-stage-logo {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 26px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .24), 0 0 35px rgba(249, 12, 106, .2);
    flex: 0 0 auto;
    height: clamp(92px, 8vw, 112px);
    object-fit: cover;
    width: clamp(92px, 8vw, 112px);
}

.aurora-creator-stage .aurora-eyebrow {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.aurora-creator-stage-copy h2 {
    color: #fff;
    font-size: clamp(2.15rem, 3.6vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.04;
    margin: 1.25rem 0 1rem;
}

.aurora-creator-stage-copy .aurora-btn-primary,
.aurora-creator-stage-copy .aurora-btn-primary:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}

.aurora-creator-stage-copy p {
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.7;
    margin: 0 0 1.75rem;
    max-width: 470px;
}

.aurora-steps-grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 6vw, 5rem);
    grid-template-columns: .95fr 1.05fr;
}

.aurora-workflow-visual {
    background: linear-gradient(145deg, rgba(249, 12, 106, .08), rgba(116, 39, 232, .1));
    border: 1px solid rgba(116, 39, 232, .13);
    border-radius: 22px;
    padding: 1rem;
}

.aurora-workflow-visual img {
    background: #fff;
    border-radius: 15px;
    display: block;
    height: auto;
    width: 100%;
}

.aurora-steps h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -.035em;
    margin: 1rem 0 1.75rem;
}

.aurora-step {
    display: grid;
    gap: 1rem;
    grid-template-columns: 44px 1fr;
    padding: .85rem 0;
}

.aurora-step-number {
    align-items: center;
    background: linear-gradient(135deg, var(--aurora-pink), var(--aurora-violet));
    border-radius: 12px;
    color: #fff;
    display: flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.aurora-step h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0 0 .3rem;
}

.aurora-step p {
    color: var(--aurora-muted);
    font-size: .94rem;
    line-height: 1.55;
    margin: 0;
}

.aurora-cta {
    padding: 1rem 0 6rem;
}

.aurora-cta-panel {
    align-items: center;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, .19), transparent 15rem),
        linear-gradient(120deg, #ef0b68, #7528e8 70%, #4e2bd8);
    border-radius: 24px;
    color: #fff;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem);
    position: relative;
}

.aurora-cta-panel h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    font-weight: 900;
    letter-spacing: -.03em;
    margin: 0 0 .55rem;
}

.aurora-cta-panel p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.aurora-cta-panel .aurora-btn-secondary {
    border-color: transparent;
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .aurora-hero-grid,
    .aurora-steps-grid {
        grid-template-columns: 1fr;
    }

    .aurora-hero-copy {
        text-align: center;
    }

    .aurora-lead {
        margin-inline: auto;
    }

    .aurora-actions,
    .aurora-trust-row {
        justify-content: center;
    }

    .aurora-showcase {
        margin: 0 auto;
        max-width: 680px;
        min-height: 470px;
    }

    .aurora-role-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aurora-creator-stage-panel {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .aurora-creator-stage-panel::after {
        display: none;
    }

    .aurora-creator-stage-copy {
        background: linear-gradient(135deg, #09051f, #1d0c48);
        max-width: none;
        order: 1;
        padding: 2.75rem;
    }

    .aurora-creator-stage-brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .aurora-creator-stage-image {
        aspect-ratio: 16 / 9;
        height: auto;
        object-position: right center;
        order: 2;
        position: relative;
    }

    .aurora-steps {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .aurora-contest-promo-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .aurora-contest-promo-card::after {
        background: linear-gradient(180deg, rgba(10, 7, 31, 0) 45%, #120d2e 100%);
        bottom: auto;
        height: 260px;
    }

    .aurora-contest-promo-image {
        height: 260px;
        object-position: 68% center;
        position: relative;
    }

    .aurora-contest-promo-copy {
        background: #120d2e;
        padding: 2rem;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .aurora-hero {
        padding-top: 3.5rem;
    }

    .aurora-title {
        font-size: clamp(2.55rem, 12vw, 3.45rem);
    }

    .aurora-actions {
        display: grid;
    }

    .aurora-btn {
        width: 100%;
    }

    .aurora-contest-promo-offer {
        align-items: flex-start;
        flex-direction: column;
        gap: .35rem;
    }

    .aurora-contest-promo-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .aurora-contest-promo-actions small {
        max-width: none;
        text-align: center;
    }

    .aurora-trust-row {
        align-items: flex-start;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        max-width: 240px;
    }

    .aurora-showcase {
        min-height: auto;
        padding-bottom: 4.5rem;
    }

    .aurora-showcase-card {
        border-radius: 18px;
        transform: none;
    }

    .aurora-showcase-media {
        min-height: 230px;
    }

    .aurora-float-one {
        left: .5rem;
        top: 1rem;
    }

    .aurora-float-two {
        bottom: .2rem;
        right: .5rem;
    }

    .aurora-role-grid {
        grid-template-columns: 1fr;
    }

    .aurora-role-card {
        min-height: auto;
    }

    .aurora-creator-stage-panel {
        border-radius: 18px;
    }

    .aurora-creator-stage-copy {
        padding: 2rem 1.25rem;
    }

    .aurora-creator-stage-copy h2 {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .aurora-creator-stage-logo {
        border-radius: 22px;
        height: 96px;
        width: 96px;
    }

    .aurora-cta-panel {
        align-items: stretch;
        border-radius: 18px;
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aurora-btn,
    .aurora-role-card {
        transition: none;
    }
}
