/* Guest registration magic card — website */
.jad-guest-reg-section {
    padding: 18px 0 8px;
}

.jad-guest-reg-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 28px 26px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(15, 15, 20, 0.95) 42%, rgba(10, 10, 15, 1) 100%);
    border: 1px solid color-mix(in srgb, var(--premium-gold, #ffd700) 38%, transparent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.jad-guest-reg-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.45;
    animation: jadGuestRegPulse 6s ease-in-out infinite;
}

.jad-guest-reg-orbit-1 {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35), transparent 70%);
}

.jad-guest-reg-orbit-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -30px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 70%);
    animation-delay: 1.5s;
}

@keyframes jadGuestRegPulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.08); opacity: 0.55; }
}

.jad-guest-reg-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 28px;
    align-items: center;
}

.jad-guest-reg-globe {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(59, 130, 246, 0.15));
    border: 2px solid color-mix(in srgb, var(--premium-gold) 45%, transparent);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
    font-size: 3.2rem;
    color: var(--premium-gold, #ffd700);
    animation: jadGuestGlobeSpin 12s linear infinite;
}

@keyframes jadGuestGlobeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jad-guest-reg-spark {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    color: var(--premium-gold);
    font-size: 0.75rem;
    animation: jadGuestSpark 2.5s ease-in-out infinite;
}

.jad-guest-reg-spark-1 { top: 8px; right: 4px; }
.jad-guest-reg-spark-2 { bottom: 12px; left: 0; animation-delay: 0.8s; }
.jad-guest-reg-spark-3 { top: 50%; right: -8px; animation-delay: 1.4s; }

@keyframes jadGuestSpark {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

.jad-guest-reg-stats {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.jad-guest-reg-stat {
    flex: 1;
    min-width: 72px;
    text-align: center;
    padding: 10px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.jad-guest-reg-stat i {
    display: block;
    color: var(--premium-gold);
    margin-bottom: 4px;
}

.jad-guest-reg-stat span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-white, #f0f0f0);
}

.jad-guest-reg-stat small {
    font-size: 0.62rem;
    color: var(--muted-gray);
}

.jad-guest-reg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--premium-gold);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    margin-bottom: 10px;
}

.jad-guest-reg-headline {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #fff 0%, var(--premium-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jad-guest-reg-subtitle {
    color: var(--muted-gray);
    font-size: 0.92rem;
    margin: 0 0 10px;
    line-height: 1.5;
}

.jad-guest-reg-promise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    font-weight: 700;
    font-size: 0.82rem;
    margin: 0 0 14px;
}

.jad-guest-reg-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 6px;
}

.jad-guest-reg-benefits li {
    font-size: 0.82rem;
    color: var(--accent-white, #e6e1dc);
    display: flex;
    align-items: center;
    gap: 8px;
}

.jad-guest-reg-benefits i {
    color: #22c55e;
    font-size: 0.85rem;
}

.jad-guest-reg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.jad-guest-reg-btn {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.jad-guest-reg-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.jad-guest-reg-btn i {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.jad-guest-reg-btn span {
    font-size: 0.95rem;
}

.jad-guest-reg-btn small {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.85;
}

.jad-guest-reg-btn-seeker {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.jad-guest-reg-btn-employer {
    background: linear-gradient(135deg, var(--premium-gold), #f59e0b);
    color: #111;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.jad-guest-reg-login {
    font-size: 0.8rem;
    color: var(--muted-gray);
    text-decoration: none;
}

.jad-guest-reg-login strong {
    color: var(--premium-gold);
}

/* Floating compact card (non-home pages) */
.jad-guest-reg-float {
    position: fixed;
    left: 14px;
    bottom: 150px;
    z-index: 9996;
    max-width: 300px;
    padding: 14px 14px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(15, 15, 20, 0.96));
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    animation: jadGuestFloatIn 0.4s ease-out;
}

@keyframes jadGuestFloatIn {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

.jad-guest-reg-float-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.2), transparent 60%);
    pointer-events: none;
}

.jad-guest-reg-float-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--muted-gray);
    cursor: pointer;
    padding: 4px;
}

.jad-guest-reg-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    color: var(--premium-gold);
    margin-bottom: 8px;
}

.jad-guest-reg-float-text strong {
    display: block;
    font-size: 0.82rem;
    color: var(--accent-white);
    margin-bottom: 2px;
}

.jad-guest-reg-float-text span {
    font-size: 0.72rem;
    color: var(--muted-gray);
}

.jad-guest-reg-float-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--premium-gold), #f59e0b);
    color: #111;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 900px) {
    .jad-guest-reg-grid {
        grid-template-columns: 1fr;
    }
    .jad-guest-reg-visual {
        order: 2;
    }
}

@media (max-width: 640px) {
    .jad-guest-reg-card {
        padding: 20px 16px;
    }
    .jad-guest-reg-float {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 88px;
    }
}

/* Notification bell panel — guests / visitors only */
.jad-guest-reg-bell {
    padding: 4px 2px 12px;
    text-align: center;
}

.jad-guest-reg-bell-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--premium-gold);
    font-size: 1.35rem;
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.15);
}

.jad-guest-reg-bell-badge {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.68rem;
}

.jad-guest-reg-bell-headline {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--accent-white);
    background: linear-gradient(135deg, #fff 0%, var(--premium-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jad-guest-reg-bell-subtitle {
    margin: 0 0 10px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--muted-gray);
}

.jad-guest-reg-bell-promise {
    margin: 0 0 14px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--premium-gold);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.jad-guest-reg-bell-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: left;
}

.jad-guest-reg-bell-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.74rem;
    color: var(--muted-gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.jad-guest-reg-bell-benefits i {
    color: var(--premium-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.jad-guest-reg-bell-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.jad-guest-reg-bell-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px !important;
}

.jad-guest-reg-bell-login {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.jad-guest-reg-bell-hint {
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    color: var(--muted-gray);
}

.jad-guest-reg-bell-hint i {
    color: var(--premium-gold);
    margin-right: 4px;
}

#notifPanel .jad-guest-reg-bell {
    animation: jadGuestBellIn 0.35s ease-out;
}

@keyframes jadGuestBellIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}