/* ========================================
   EB-Course Ultimate Hybrid Design
   Quizon Style + Medical App Functionality
   ======================================== */

:root {
    /* Backgrounds */
    --bg-app: #f0f4f8;
    --purple-primary: #6C5CE7;
    --purple-gradient: linear-gradient(135deg, #8E2DE2, #4A00E0);
    --flashcard-gradient: linear-gradient(135deg, #a55eea, #4b7bec);

    /* SRS Colors (Distinct & Bold) */
    --srs-skip: #636e72;
    --srs-easy: #00b894;
    --srs-medium: #f1c40f;
    --srs-hard: #e17055;
    --srs-vhard: #d63031;

    /* Text & UI */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --card-radius: 20px;
}

/* OVERLAY SETUP - Full Screen Medical App Style */
.drcourse-srs-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999999 !important;
    background: #f0f4f8 !important;
    /* Medical light gray/blue */
    display: none;
    /* Controlled by JS .addClass('active') or .css('display','flex') */
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Poppins', sans-serif !important;
    overflow-y: auto !important;
}

.drcourse-srs-overlay.active {
    display: flex !important;
}

.drcourse-srs-wrapper {
    width: 100%;
    max-width: 800px;
    height: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

body.drcourse-quiz-active {
    overflow: hidden !important;
}

.drcourse-srs-watermark {
    color: rgba(0, 0, 0, 0.1) !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(15px, 2.5vw, 32px) !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    max-width: calc(100vw - 32px);
    opacity: 1 !important;
    pointer-events: none !important;
    position: absolute !important;
    text-align: center !important;
    transition: left 1.2s ease, top 1.2s ease, transform 1.2s ease !important;
    user-select: none !important;
    white-space: nowrap !important;
    z-index: 30 !important;
}

@media (max-width: 640px) {
    .drcourse-srs-watermark {
        font-size: 14px !important;
        white-space: normal !important;
        width: calc(100vw - 32px);
    }
}

/* --- LAYOUT WRAPPER --- */
.quiz-layout-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- TOP STATS DASHBOARD --- */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--purple-primary);
    text-align: center;
}

.stat-card h5 {
    margin: 0;
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-top: 5px;
}

/* --- MAIN QUESTION CARD --- */
.main-quiz-card {
    background: white;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 30px;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

/* --- VIDEO BUTTON (FLOATING) --- */
.video-review-btn-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e3f2fd;
    color: #0984e3;
    border: 1px solid #00000000;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-review-btn-float:hover {
    background: #6971eb;
    border: 1px solid #232721;
    color: white;
}

.q-meta-top {
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    margin-right: 100px;
    /* Space for video button */
}

/* --- QUESTION TEXT --- */
.q-text-area h4 {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 700;
    margin: 0 0 25px 0;
}

/* --- MC OPTIONS --- */
.q-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opt-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fdfdfd;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    color: #444;
    text-align: left;
    position: relative;
}

.opt-btn:hover {
    border-color: var(--purple-primary);
    background: #f8f5ff;
}

/* Radio Circle */
.opt-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.opt-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: 0.2s;
}

/* States */
.opt-btn.correct {
    border-color: var(--srs-easy) !important;
    background: #e8f5e9 !important;
    color: #1b5e20 !important;
}

.opt-btn.correct .opt-radio {
    border-color: var(--srs-easy);
    background: var(--srs-easy);
}

.opt-btn.correct .opt-radio::after {
    opacity: 1;
}

.opt-btn.wrong {
    border-color: var(--srs-vhard) !important;
    background: #ffebee !important;
    color: #b71c1c !important;
}

.opt-btn.wrong .opt-radio {
    border-color: var(--srs-vhard);
    background: var(--srs-vhard);
}

.opt-btn.wrong .opt-radio::after {
    opacity: 1;
}

/* --- EXPLANATION BOX --- */
.explanation-box {
    margin-top: 25px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.3s;
}

.exp-title {
    font-weight: 700;
    color: #0d47a1;
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

.exp-text {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.4;
}

/* --- FLASHCARD --- */
.flashcard-container-mod {
    perspective: 1000px;
    min-height: 350px;
    cursor: pointer;
}

.fc-inner-mod {
    position: relative;
    width: 100%;
    min-height: 350px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.fc-inner-mod.flipped {
    transform: rotateY(180deg);
}

.fc-face-mod {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fc-front-mod {
    background: var(--flashcard-gradient);
    color: white;
}

.fc-back-mod {
    background: white;
    transform: rotateY(180deg);
    border: 2px solid #eee;
}

.fc-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.fc-main-text {
    font-size: 26px;
    font-weight: 700;
}

.fc-sub-text {
    font-size: 13px;
    margin-top: 20px;
    opacity: 0.7;
}

/* On-Card Result Buttons (Flashcard Back) */
.fc-result-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.fc-res-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #eee;
    background: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fc-res-btn:hover {
    transform: scale(1.05);
}

.fc-res-btn.right-btn {
    color: var(--srs-easy);
    border-color: var(--srs-easy);
}

.fc-res-btn.right-btn:hover {
    background: var(--srs-easy);
    color: white;
}

.fc-res-btn.wrong-btn {
    color: var(--srs-vhard);
    border-color: var(--srs-vhard);
}

.fc-res-btn.wrong-btn:hover {
    background: var(--srs-vhard);
    color: white;
}


/* --- SRS ACTION BAR (Bottom) --- */
.srs-action-bar {
    margin-top: 20px;
    padding: 0 10px 30px 10px;
    display: none;
}

.srs-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.srs-btn-cell.full-width {
    grid-column: span 2;
}

.srs-big-btn {
    border: none;
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
    min-height: 60px;
}

.srs-big-btn:hover {
    transform: translateY(-3px);
    filter: brightness(110%);
}

.srs-big-btn span {
    font-weight: 400;
    font-size: 11px;
    opacity: 0.9;
    margin-top: 3px;
}

/* Colors */
.btn-skip {
    background: var(--srs-skip);
    opacity: 0.8;
}

.btn-easy {
    background: var(--srs-easy);
}

.btn-med {
    background: var(--srs-medium);
    color: #333;
}

.btn-hard {
    background: var(--srs-hard);
}

.btn-vhard {
    background: var(--srs-vhard);
}

/* --- HEADER CLOSE BTN --- */
.close-app-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #555;
    z-index: 100;
}

/* Responsive */
@media(max-width: 600px) {
    .stats-dashboard {
        grid-template-columns: 1fr 1fr !important;
    }

    .fc-main-text {
        font-size: 20px;
    }
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popUpOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -100%) scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -150%) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.srs-action-bar {
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flashcard-container-mod,
.main-quiz-card {
    animation: fadeIn 0.5s ease-out;
}

#drcourse-ai-tutor-toggle {
    position: fixed;
    right: 86px;
    bottom: 27px;
    z-index: 9999;
    border: 1px solid rgba(108, 92, 231, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 58%, #eef7ff 100%);
    color: #2d3436;
    padding: 8px 17px 8px 10px;
    min-width: 156px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14), 0 0 0 4px rgba(108, 92, 231, 0.07);
    overflow: hidden;
}

#drcourse-ai-tutor-toggle::before {
    content: none;
    display: none;
}

.drcourse-ai-toggle-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0;
    text-shadow: none;
}

.drcourse-ai-lamp {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 34px;
    flex: 0 0 46px;
    background-image: url("../images/aladdin-lamp.png");
    background-size: 42px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0eeff;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(108, 92, 231, 0.18) inset;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.16));
}

.drcourse-ai-lamp::before,
.drcourse-ai-lamp::after,
.drcourse-ai-lamp-flame {
    content: none;
    display: none;
}

#drcourse-ai-tutor-toggle.summoning .drcourse-ai-lamp {
    animation: drcourseLampSummon 720ms cubic-bezier(.2, .9, .2, 1) both;
}

#drcourse-ai-tutor-panel {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 999999;
    width: min(420px, calc(100vw - 28px));
    height: min(760px, calc(100vh - 110px));
    min-height: 520px;
    max-height: calc(100vh - 110px);
    display: none;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2d3436;
    transform-origin: calc(100% - 72px) calc(100% + 38px);
    will-change: transform, opacity, filter;
    isolation: isolate;
    overscroll-behavior: contain;
}

#drcourse-ai-tutor-panel.open {
    display: flex;
    animation: drcourseAladdinPanelOpen 180ms ease-out both;
}

#drcourse-ai-tutor-panel > * {
    position: relative;
    z-index: 1;
}

.drcourse-ai-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    position: sticky;
    top: 0;
    padding: 16px 18px;
    background: #ffffff;
    color: #2d3436;
    border-bottom: 1px solid #edf1f7;
    overflow: visible;
    flex: 0 0 auto;
    z-index: 3;
}

.drcourse-ai-header::after {
    content: none;
    display: none;
}

.drcourse-ai-genie-mark {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 16px;
    background-color: #f0eeff;
    background-image: url("../images/aladdin-lamp.png");
    background-size: 36px auto;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 1px rgba(108, 92, 231, 0.14) inset, 0 8px 20px rgba(108, 92, 231, 0.14);
}

.drcourse-ai-genie-mark::before {
    content: none;
    display: none;
}

.drcourse-ai-genie-mark::after {
    content: none;
    display: none;
}

.drcourse-ai-genie-mark span {
    display: none;
}

.drcourse-ai-title {
    position: relative;
    z-index: 1;
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
}

.drcourse-ai-subtitle {
    position: relative;
    z-index: 1;
    margin-top: 2px;
    color: #636e72;
    font-size: 12px;
}

#drcourse-ai-close {
    margin-left: auto;
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f8f5ff;
    color: #6C5CE7;
    font-size: 22px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    appearance: none;
}

#drcourse-ai-close .drcourse-ai-close-icon {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 0.88;
    pointer-events: none;
}

.drcourse-ai-insights,
.drcourse-ai-followups {
    padding: 8px 12px;
    border-bottom: 1px solid #edf1f7;
    background: #f8fafc;
    flex: 0 0 auto;
}

.drcourse-ai-insights:empty,
.drcourse-ai-followups:empty {
    display: none;
}

.drcourse-ai-sources {
    display: none;
}

.drcourse-ai-followups {
    max-height: 52px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 7px 14px;
}

.drcourse-ai-followups .drcourse-ai-section-label {
    display: none;
}

.drcourse-ai-insights {
    max-height: 48px;
    overflow: hidden;
}

.drcourse-ai-insights.is-expanded {
    max-height: 142px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.drcourse-ai-section-label {
    margin-bottom: 8px;
    color: #636e72;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.drcourse-ai-focus-compact {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #636e72;
    font-size: 11px;
    line-height: 1.2;
}

.drcourse-ai-focus-label {
    flex: 0 0 auto;
    color: #636e72;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.drcourse-ai-focus-main {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.drcourse-ai-focus-meta,
.drcourse-ai-focus-more {
    flex: 0 0 auto;
    white-space: nowrap;
}

.drcourse-ai-focus-more {
    border: 1px solid #dbe2ea;
    background: #ffffff;
    color: #4b5563;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.drcourse-ai-focus-list {
    display: grid;
    gap: 6px;
    margin-top: 8px;
}

.drcourse-ai-focus-list[hidden] {
    display: none;
}

.drcourse-ai-focus-row {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #636e72;
    font-size: 11px;
}

.drcourse-ai-weak,
.drcourse-ai-followup,
.drcourse-ai-source-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
    color: #636e72;
    font-size: 12px;
}

.drcourse-ai-chip,
.drcourse-ai-followup-btn,
.drcourse-ai-practice,
.drcourse-ai-source-chip {
    border: 1px solid #dbe2ea;
    background: #fff;
    color: #2d3436;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    max-width: 100%;
}

.drcourse-ai-followup-btn,
.drcourse-ai-source-chip {
    overflow: hidden;
    text-overflow: ellipsis;
}

.drcourse-ai-followup-btn {
    white-space: nowrap;
    text-align: left;
    padding: 5px 9px;
    font-size: 11px;
    line-height: 1.15;
    max-width: 100%;
}

.drcourse-ai-practice {
    background: #ecfdf5;
    border-color: #bbf7d0;
    color: #166534;
    flex: 0 0 auto;
}

.drcourse-ai-source-chip {
    background: #e3f2fd;
    border-color: #bfdbfe;
    color: #075985;
    white-space: nowrap;
}

.drcourse-ai-muted {
    color: #64748b;
    font-size: 12px;
}

.drcourse-ai-messages {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 16px;
    background: #f9fbfd;
    overscroll-behavior: contain;
}

.drcourse-ai-message {
    width: fit-content;
    max-width: 88%;
    margin: 0 0 10px;
    padding: 11px 13px;
    border-radius: 14px;
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.45;
}

.drcourse-ai-message strong {
    font-weight: 800;
    color: inherit;
}

.drcourse-ai-message em {
    font-style: italic;
    color: inherit;
}

.drcourse-ai-message u {
    text-decoration-color: rgba(108, 92, 231, 0.55);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.drcourse-ai-assistant {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2d3436;
}

.drcourse-ai-user {
    margin-left: auto;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: #fff;
}

.drcourse-ai-form {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid #edf1f7;
    background: #ffffff;
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.04);
}

#drcourse-ai-input {
    flex: 1;
    resize: none;
    min-height: 68px;
    max-height: 128px;
    border: 1.5px solid #dbe2ea;
    border-radius: 14px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.35;
}

.drcourse-ai-form button {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: #fff;
    min-width: 62px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.drcourse-ai-status {
    flex: 0 0 auto;
    min-height: 22px;
    padding: 0 12px 10px;
    background: #ffffff;
    color: #636e72;
    font-size: 11px;
}

@media(max-width: 600px) {
    #drcourse-ai-tutor-toggle {
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(18px + env(safe-area-inset-bottom));
        min-width: 128px;
        min-height: 46px;
        padding: 6px 13px 6px 8px;
        gap: 7px;
        font-size: 12px;
    }

    #drcourse-ai-tutor-toggle .drcourse-ai-lamp {
        width: 38px;
        height: 30px;
        flex-basis: 38px;
        background-size: 34px auto;
    }

    #drcourse-ai-tutor-panel {
        right: 14px;
        bottom: 82px;
        width: calc(100vw - 28px);
        height: calc(100vh - 96px);
        min-height: 0;
        max-height: calc(100vh - 92px);
    }

    .drcourse-ai-header {
        padding: 12px 14px;
        gap: 10px;
    }

    .drcourse-ai-genie-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .drcourse-ai-followups {
        max-height: 48px;
    }

    .drcourse-ai-messages {
        min-height: 0;
    }

    #drcourse-ai-input {
        min-height: 64px;
    }

    .drcourse-ai-form {
        padding: 9px 12px;
    }

    .drcourse-ai-form button {
        min-width: 56px;
        padding: 0 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #drcourse-ai-tutor-toggle.summoning .drcourse-ai-lamp,
    #drcourse-ai-tutor-panel.open {
        animation: none;
    }
}

@keyframes drcourseAladdinPanelOpen {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(.985);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes drcourseLampSummon {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.16));
    }

    35% {
        transform: scale(1.08) rotate(-2deg);
        filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.16)) drop-shadow(0 0 14px rgba(251, 191, 36, .72));
    }

    70% {
        transform: scale(1.02) rotate(1deg);
        filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.16)) drop-shadow(0 0 10px rgba(108, 92, 231, .48));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.16));
    }
}
