@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Fredoka:wght@300;400;500;600;700&family=Gloria+Hallelujah&family=Inter:wght@400&display=swap');

/* --- Variables --- */
:root {
    --grey-metallic-start: #d4d4d4;
    --grey-metallic-end: #f4f4f4;
    --border: #1a1a1a;
    --black-start: #232526;
    --black-end: #414345;
}

/* --- Chat Layout --- */
.chat-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    /* Increased top margin for consistency */
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    padding-bottom: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
}

@media (max-width: 600px) {
    .chat-container {
        padding: 20px 0 50px 0;
    }
}

.msg-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.msg-wrapper.left {
    align-self: flex-start;
    align-items: flex-start;
}

.msg-wrapper.right {
    align-self: flex-end;
    align-items: flex-end;
}

.bubble {
    position: relative;
    padding: 24px 34px;
    /* Exact padding from chat.html */
    border: 2px solid var(--border);
    z-index: 2;
    box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.1),
        3px 3px 0px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000;
}

.left .bubble {
    color: #eee;
}

/* CT text */
.right .bubble {
    color: #111;
}

/* User text */

.bubble p {
    margin: 0;
}

/* --- Left Bubbles (Black Metallic - CT) --- */
.left .bubble {
    background: linear-gradient(135deg, var(--black-start), var(--black-end));
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    border-color: #000;
}

/* --- Right Bubbles (Grey Metallic - User) --- */
.right .bubble {
    background: linear-gradient(135deg, var(--grey-metallic-start), var(--grey-metallic-end));
}

/* --- Bubble Variant Engine (Hand-drawn look) --- */
/* LEFT VARIANTS */
.left .bubble.variant-1 {
    border-radius: 255px 25px 225px 4px / 25px 225px 25px 15px;
    transform: rotate(-1deg);
}

.left .bubble.variant-2 {
    border-radius: 25px 250px 30px 10px / 250px 30px 200px 15px;
    transform: rotate(1.2deg);
}

.left .bubble.variant-3 {
    border-radius: 220px 40px 200px 5px / 30px 140px 40px 15px;
    transform: rotate(-0.5deg);
}

.left .bubble.variant-4 {
    border-radius: 40px 200px 30px 8px / 150px 40px 170px 15px;
    transform: rotate(0.8deg);
}

.left .bubble.variant-5 {
    border-radius: 240px 30px 210px 5px / 40px 230px 30px 20px;
    transform: rotate(-1.5deg);
}

.left .bubble.variant-6 {
    border-radius: 35px 240px 40px 10px / 240px 35px 190px 15px;
    transform: rotate(1deg);
}

.left .bubble.variant-7 {
    border-radius: 230px 25px 215px 5px / 25px 210px 25px 15px;
    transform: rotate(-0.8deg);
}

.left .bubble.variant-8 {
    border-radius: 30px 230px 35px 8px / 220px 40px 180px 15px;
    transform: rotate(1.5deg);
}

/* RIGHT VARIANTS */
.right .bubble.variant-1 {
    border-radius: 25px 255px 15px 225px / 225px 25px 15px 25px;
    transform: rotate(1deg);
}

.right .bubble.variant-2 {
    border-radius: 250px 30px 10px 40px / 35px 250px 15px 200px;
    transform: rotate(-1.2deg);
}

.right .bubble.variant-3 {
    border-radius: 40px 120px 5px 150px / 140px 30px 15px 40px;
    transform: rotate(0.5deg);
}

.right .bubble.variant-4 {
    border-radius: 180px 40px 8px 30px / 40px 150px 15px 170px;
    transform: rotate(-0.8deg);
}

.right .bubble.variant-5 {
    border-radius: 30px 240px 5px 210px / 230px 40px 20px 30px;
    transform: rotate(1.5deg);
}

.right .bubble.variant-6 {
    border-radius: 240px 35px 10px 40px / 35px 240px 15px 190px;
    transform: rotate(-1deg);
}

.right .bubble.variant-7 {
    border-radius: 25px 230px 5px 215px / 210px 25px 15px 25px;
    transform: rotate(0.8deg);
}

.right .bubble.variant-8 {
    border-radius: 230px 30px 8px 35px / 40px 220px 15px 180px;
    transform: rotate(-1.5deg);
}

/* --- Timestamp --- */
.timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    margin-top: 8px;
    color: #999;
    letter-spacing: 0.05em;
}

/* --- Chat Images --- */
.bubble-img-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 4px;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
}

.bubble-img-container img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.bubble-img-container:hover img {
    transform: scale(1.02);
}

/* Magnifying glass overlay (optional but matches project style) */
.bubble-img-container::after {
    content: "🔍";
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #000;
}

/* --- Dividers --- */
.new-messages-divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    opacity: 0.9;
}

.divider-line {
    flex: 1;
    height: 0;
    border-top: 2px dotted #aaa;
}

.new-messages-divider .divider-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d32f2f;
    font-weight: 800;
}

.new-messages-divider.today .divider-text {
    color: #000;
}

/* --- Typing Animation --- */
.bubble.typing {
    min-width: 60px;
    padding: 10px 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85) !important;
    transform-origin: center;
}

.left .bubble.typing {
    transform: scale(0.85) rotate(-1deg) !important;
    transform-origin: left center;
}

.right .bubble.typing {
    transform: scale(0.85) rotate(1deg) !important;
    transform-origin: right center;
}

.typing-dots {
    display: flex;
    gap: 5px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-img-wrapper {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-img-wrapper {
    transform: scale(1);
}

.modal-img-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border: 4px solid #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: -10px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* --- Open Question Step --- */
.variant-open-question-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-open-question-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
    /* No margin top/bottom as requested */
}

.v-variant-open-question-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
}

.v-variant-open-question-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-open-question-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-open-question-frame-red {
    background-color: #FF0055;
}

.v-variant-open-question-card-body {
    padding: 30px;
    padding-bottom: 60px;
    color: #000;
    font-size: 1.5rem;
    line-height: 1.8;
    min-height: 200px;
}

.v-variant-open-question-bg-light-red {
    background-color: #FFB6C1;
}

.v-variant-open-question-open-input {
    width: 100%;
    background: #fff;
    border: 2px solid #000;
    padding: 6px 12px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    resize: none;
    overflow: hidden;
    outline: none;
    border-radius: 0;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.v-variant-open-question-open-input:focus {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.v-variant-open-question-warning-box {
    background-color: #FFE600;
    border: 3px solid #000;
    padding: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    margin-right: 15px;
    display: none;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.v-variant-open-question-warning-box.visible {
    display: block;
}

.v-variant-open-question-char-counter {
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.v-variant-open-question-paste-feedback-box.v-variant-open-question-error {
    background: #FFE4EC;
    border: 2px solid #FF0055;
    padding: 10px;
    font-size: 1rem;
    color: #FF0055;
}

/* Banner Buttons */
.v-variant-open-question-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-open-question-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-open-question-banner-btn:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-variant-open-question-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-open-question-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.v-variant-open-question-view-mode {
    display: none;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.banner-red {
    background-color: #FF0055 !important;
    color: #fff !important;
}

.banner-blue {
    background-color: #0066FF !important;
    color: #fff !important;
}

.banner-green {
    background-color: #00cc00 !important;
    color: #fff !important;
}

.edit-btn-active {
    background-color: #00F5FF !important;
    color: #000 !important;
}

@media (max-width: 600px) {
    .v-variant-open-question-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-open-question-card-body {
        padding: 20px 20px 60px 20px !important;
    }

    .v-variant-open-question-open-input {
        font-size: 1rem !important;
    }

    .v-variant-open-question-banner-btn {
        font-size: 1rem;
    }

    .v-variant-open-question-pos-left {
        left: 10px;
    }

    .v-variant-open-question-pos-right {
        right: 10px;
    }
}

/* --- Copy Prompt Step --- */
.variant-copy-prompt-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-copy-prompt-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-copy-prompt-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
}

.v-variant-copy-prompt-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-copy-prompt-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-copy-prompt-frame-green {
    background-color: #00cc00;
}

.v-variant-copy-prompt-card-body {
    padding: 30px;
    padding-bottom: 80px;
    color: #000;
    min-height: 200px;
}

.v-variant-copy-prompt-bg-light-green {
    background-color: #CCFFCC;
}

.v-variant-copy-prompt-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
    text-decoration: none;
}

.v-variant-copy-prompt-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-copy-prompt-banner-btn:active {
    background-color: #00F5FF !important;
    transform: scale(0.95);
}

.v-variant-copy-prompt-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.v-variant-copy-prompt-text-container {
    position: relative;
}

.v-variant-copy-prompt-text {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    word-break: break-word;
}

.v-variant-copy-prompt-short-view {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v-variant-copy-prompt-full-view {
    display: none;
}

.v-variant-copy-prompt-text-container.expanded .v-variant-copy-prompt-short-view {
    display: none;
}

.v-variant-copy-prompt-text-container.expanded .v-variant-copy-prompt-full-view {
    display: block;
}

.v-variant-copy-prompt-blurry-preview {
    position: relative;
    height: 40px;
    overflow: hidden;
    margin-top: -5px;
}

.v-variant-copy-prompt-blurry-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(204, 255, 204, 0) 0%, rgba(204, 255, 204, 0.5) 70%, rgba(204, 255, 204, 0.9) 100%);
    z-index: 1;
}

.v-variant-copy-prompt-blurry-preview .blur-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    filter: blur(1.5px);
    opacity: 0.8;
    user-select: none;
}

.v-variant-copy-prompt-text-container.expanded .v-variant-copy-prompt-blurry-preview {
    display: none;
}

.v-variant-copy-prompt-expand-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    cursor: pointer;
    padding: 8px 0;
    transition: transform 0.2s;
}

.v-variant-copy-prompt-expand-dots:hover {
    transform: scale(1.1);
}

.v-variant-copy-prompt-expand-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.v-variant-copy-prompt-expand-dots:hover .dot {
    background-color: #333;
}

.v-variant-copy-prompt-text-container.expanded .v-variant-copy-prompt-expand-dots {
    display: none;
}

@media (max-width: 600px) {
    .v-variant-copy-prompt-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-copy-prompt-card-body {
        padding: 30px 20px 80px 20px !important;
    }

    .v-variant-copy-prompt-text {
        font-size: 0.95rem;
    }

    .v-variant-copy-prompt-blurry-preview .blur-text {
        font-size: 0.95rem;
    }

    .v-variant-copy-prompt-banner-btn {
        padding: 6px 15px;
        font-size: 1rem;
    }

    .v-variant-copy-prompt-pos-right {
        right: 10px;
    }
}

/* --- Gemini Only Step --- */
.variant-gemini-only-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-gemini-only-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-gemini-only-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
}

.v-variant-gemini-only-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-gemini-only-card-body-frame {
    padding: 8px;
}

.v-variant-gemini-only-frame-pink {
    background-color: #FF69B4;
}

.v-variant-gemini-only-card-body {
    padding: 30px;
    color: #000;
}

.v-variant-gemini-only-bg-light-pink {
    background-color: #FFE4E9;
}

.v-variant-gemini-only-frame-yellow {
    background-color: #FFE600;
}

.v-variant-gemini-only-bg-light-yellow {
    background-color: #FFFDE7;
}

.v-variant-gemini-only-execute-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-variant-gemini-only-ai-icons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.v-variant-gemini-only-ai-link {
    display: block;
    transition: transform 0.15s;
}

.v-variant-gemini-only-ai-link:hover {
    transform: scale(1.1) rotate(5deg);
}

.v-variant-gemini-only-ai-logo {
    border: none !important;
    box-shadow: none !important;
}

.v-variant-gemini-only-ai-logo.v-variant-gemini-only-large {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .v-variant-gemini-only-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-gemini-only-card-body {
        padding: 30px 20px 30px 20px !important;
    }

    .v-variant-gemini-only-ai-logo.v-variant-gemini-only-large {
        width: 80px;
        height: 80px;
    }
}

/* --- JSON Paste Step --- */
.variant-text-paste-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-text-paste-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-text-paste-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
}

.v-variant-text-paste-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-text-paste-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-text-paste-frame-turquoise {
    background-color: #00F5FF;
}

.v-variant-text-paste-card-body {
    padding: 30px;
    padding-bottom: 80px;
    color: #000;
    min-height: 200px;
}

.v-variant-text-paste-bg-light-turquoise {
    background-color: #E0FFFE;
}

.v-variant-text-paste-open-input {
    width: 100%;
    background: #fff;
    border: 2px solid #000;
    padding: 6px 12px;
    font-family: monospace;
    font-size: 1rem;
    font-weight: 400;
    resize: vertical;
    outline: none;
    border-radius: 0;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.v-variant-text-paste-open-input:focus {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.v-variant-text-paste-feedback-box {
    margin-top: 20px;
    width: 100%;
    display: none;
    border: 4px solid #000;
    padding: 20px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.v-variant-text-paste-feedback-box.visible {
    display: block;
    opacity: 1;
}

.v-variant-text-paste-feedback-box.error {
    background-color: #FF85A1;
    color: #000;
}

.v-variant-text-paste-feedback-box.success {
    background-color: #B5FF99;
    color: #000;
}

.v-variant-text-paste-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
    right: -10px;
    transform: rotate(-3deg);
}

.v-variant-text-paste-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-text-paste-banner-btn:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

@media (max-width: 600px) {
    .v-variant-text-paste-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-text-paste-card-body {
        padding: 30px 20px 80px 20px !important;
    }

    .v-variant-text-paste-open-input {
        font-size: 0.9rem !important;
    }

    .v-variant-text-paste-banner-btn {
        font-size: 1rem;
        right: 10px;
    }

    .v-variant-text-paste-feedback-box {
        font-size: 1.1rem;
        padding: 15px;
    }
}

/* --- Variant Ranking Selection Step --- */
.variant-ranking-selection-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-ranking-selection-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-ranking-selection-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
    transition: background-color 0.3s;
}

.v-variant-ranking-selection-card-header.ranking-active {
    background-color: #00F5FF;
}

.v-variant-ranking-selection-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-ranking-selection-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-ranking-selection-frame-grey {
    background-color: #888;
}

.v-variant-ranking-selection-card-body {
    padding: 30px;
    padding-bottom: 45px;
    color: #000;
}

.v-variant-ranking-selection-bg-light-grey {
    background-color: #EAEAEA;
}

.v-variant-ranking-selection-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 3px solid #000;
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ranking-item.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

.ranking-item:hover {
    transform: translateX(5px);
}

.ranking-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    margin-right: 15px;
}

.ranking-radio::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 50%;
    display: none;
}

.ranking-text {
    flex-grow: 1;
    font-weight: 700;
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    text-transform: none;
    color: #000;
}

.ranking-close {
    font-weight: 700;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: #000;
    padding: 0 10px;
    transition: color 0.1s;
}

.ranking-close:hover {
    color: #ff0000;
}

/* Active Styling */
.ranking-item.active {
    background: linear-gradient(135deg, #ff4d4d 0%, #b30000 100%);
    border-color: #000;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.ranking-item.active .ranking-text {
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

.ranking-item.active .ranking-radio {
    border-color: #fff;
}

.ranking-item.active .ranking-radio::after {
    display: block;
}

.ranking-item.active .ranking-close {
    color: #fff;
}

.v-variant-ranking-selection-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-ranking-selection-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-ranking-selection-banner-btn:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-variant-ranking-selection-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-ranking-selection-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.v-variant-ranking-selection-ok-default {
    background-color: #00cc00;
    color: #fff;
}

.v-variant-ranking-selection-reload-hidden {
    display: none !important;
}

.v-variant-ranking-selection-ranking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.5);
    z-index: 15;
    pointer-events: none;
    display: none;
}

.v-variant-ranking-selection-ranking-overlay.visible {
    display: block;
}

.ranking-error-msg {
    display: none;
    color: #ff0000;
    background-color: #fff;
    border: 2px solid #ff0000;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .v-variant-ranking-selection-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-ranking-selection-card-body {
        padding: 30px 20px 45px 20px !important;
    }

    .ranking-text {
        font-size: 0.95rem !important;
    }

    .ranking-radio {
        width: 20px !important;
        height: 20px !important;
        margin-right: 8px !important;
    }

    .ranking-close {
        font-size: 1.5rem !important;
    }

    .v-variant-ranking-selection-banner-btn {
        font-size: 1rem;
    }

    .v-variant-ranking-selection-pos-left {
        left: 10px;
    }

    .v-variant-ranking-selection-pos-right {
        right: 10px;
    }
}

/* --- Edit Paragraph Step --- */
.variant-edit-paragraph-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-edit-paragraph-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-edit-paragraph-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
}

.v-variant-edit-paragraph-card-header.done {
    background-color: #00F5FF;
}

.v-variant-edit-paragraph-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-edit-paragraph-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-edit-paragraph-frame-grey {
    background-color: #A0A0A0;
}

.v-variant-edit-paragraph-card-body {
    padding: 30px;
    padding-bottom: 85px;
    color: #000;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.v-variant-edit-paragraph-bg-light-grey {
    background-color: #e0e0e0;
}

.v-variant-edit-paragraph-open-input {
    width: 100%;
    max-width: 550px;
    background: #fff;
    border: 2px solid #000;
    padding: 6px 12px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    resize: none;
    overflow-y: hidden;
    outline: none;
    border-radius: 0;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.v-variant-edit-paragraph-open-input:focus {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.v-variant-edit-paragraph-char-limit-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    display: none;
    max-width: 550px;
    width: 100%;
}

.v-variant-edit-paragraph-char-limit-info.visible {
    display: block;
}

.v-variant-edit-paragraph-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-edit-paragraph-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-edit-paragraph-banner-effect-turquoise:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-variant-edit-paragraph-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-edit-paragraph-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.v-variant-edit-paragraph-display {
    display: none;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    color: #000;
    word-break: break-word;
    white-space: pre-wrap;
    max-width: 550px;
    width: 100%;
}

.v-variant-edit-paragraph-error-box {
    background: #FFE4EC;
    border: 2px solid #FF0055;
    padding: 10px;
    font-size: 0.9rem;
    color: #FF0055;
    margin-top: 15px;
    max-width: 550px;
    width: 100%;
    display: none;
}

@media (max-width: 600px) {
    .v-variant-edit-paragraph-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-edit-paragraph-card-body {
        padding: 30px 20px 85px 20px !important;
    }

    .v-variant-edit-paragraph-open-input,
    .v-variant-edit-paragraph-display {
        font-size: 1rem !important;
    }

    .v-variant-edit-paragraph-banner-btn {
        font-size: 1rem;
    }

    .v-variant-edit-paragraph-pos-left {
        left: 10px;
    }

    .v-variant-edit-paragraph-pos-right {
        right: 10px;
    }
}

/* --- Variant Ranking Selection Top 3 Step --- */
.variant-ranking-selection-top-3-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-ranking-selection-top-3-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-ranking-selection-top-3-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
    transition: background-color 0.3s;
}

.v-variant-ranking-selection-top-3-card-header.ranking-active {
    background-color: #00F5FF;
}

.v-variant-ranking-selection-top-3-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-ranking-selection-top-3-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-ranking-selection-top-3-frame-grey {
    background-color: #888;
}

.v-variant-ranking-selection-top-3-card-body {
    padding: 30px;
    padding-bottom: 80px;
    color: #000;
}

.v-variant-ranking-selection-top-3-bg-light-grey {
    background-color: #EAEAEA;
}

.v-variant-ranking-selection-top-3-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 3px solid #000;
    cursor: grab;
    transition: all 0.15s;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-number {
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    color: #888;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-text {
    flex-grow: 1;
    font-weight: 700;
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    text-transform: none;
    color: #000;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-close {
    font-weight: 700;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: #000;
    padding: 0 10px;
    transition: color 0.1s;
    margin-left: 10px;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-close:hover {
    color: #ff0000;
}

/* Active Styling (Top 3) */
.v-variant-ranking-selection-top-3-ranking-list .ranking-item.active {
    background: linear-gradient(135deg, #ff4d4d 0%, #b30000 100%);
    border-color: #000;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-item.active .ranking-text {
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-item.active .ranking-number {
    color: #fff;
}

.v-variant-ranking-selection-top-3-ranking-list .ranking-item.active .ranking-close {
    color: #fff;
}

.v-variant-ranking-selection-top-3-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-ranking-selection-top-3-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-ranking-selection-top-3-banner-btn:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-variant-ranking-selection-top-3-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-ranking-selection-top-3-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.v-variant-ranking-selection-top-3-ok-default {
    background-color: #00cc00;
    color: #fff;
}

.v-variant-ranking-selection-top-3-reload-hidden {
    display: none !important;
}

.v-variant-ranking-selection-top-3-ranking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.5);
    z-index: 15;
    pointer-events: none;
    display: none;
}

.v-variant-ranking-selection-top-3-ranking-overlay.visible {
    display: block;
}

@media (max-width: 600px) {
    .v-variant-ranking-selection-top-3-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-ranking-selection-top-3-ranking-list .ranking-text {
        font-size: 0.95rem !important;
    }

    .v-variant-ranking-selection-top-3-ranking-list .ranking-number {
        font-size: 1.1rem !important;
        margin-right: 8px !important;
    }

    .v-variant-ranking-selection-top-3-ranking-list .ranking-close {
        font-size: 1.5rem !important;
    }

    .v-variant-ranking-selection-top-3-banner-btn {
        font-size: 1rem;
    }

    .v-variant-ranking-selection-top-3-pos-left {
        left: 10px;
    }

    .v-variant-ranking-selection-top-3-pos-right {
        right: 10px;
    }
}

/* --- Variant Edit List Step --- */
.variant-edit-list-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-edit-list-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-edit-list-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
    transition: background-color 0.3s;
}

.v-variant-edit-list-card-header.done {
    background-color: #00F5FF;
}

.v-variant-edit-list-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-edit-list-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-edit-list-frame-grey {
    background-color: #A0A0A0;
}

.v-variant-edit-list-card-body {
    padding: 30px;
    padding-bottom: 80px;
    color: #000;
    min-height: 200px;
}

.v-variant-edit-list-bg-light-grey {
    background-color: #e0e0e0;
}

.v-variant-edit-list-gap-input {
    background: #fff;
    border: 2px solid #000;
    padding: 6px 12px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    outline: none;
    border-radius: 0;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.v-variant-edit-list-gap-input:focus {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.v-variant-edit-list-list-bullet-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.v-variant-edit-list-list-bullet {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.v-variant-edit-list-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-edit-list-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-edit-list-banner-btn:active,
.v-variant-edit-list-banner-effect-turquoise:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-variant-edit-list-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-edit-list-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.reload-btn-active {
    background-color: #00F5FF !important;
    color: #000 !important;
}

.v-variant-edit-list-display {
    display: none;
    width: 100%;
    max-width: 500px;
    text-align: left;
    color: #000;
}

.v-variant-edit-list-display ul {
    list-style-type: disc;
    padding-left: 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.v-variant-edit-list-display li {
    margin-bottom: 10px;
}

.v-variant-edit-list-error-box {
    background: #FFE4EC;
    border: 2px solid #FF0055;
    padding: 10px;
    font-size: 1rem;
    color: #FF0055;
    margin-bottom: 15px;
    display: none;
    width: 100%;
}

@media (max-width: 600px) {
    .v-variant-edit-list-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-edit-list-card-body {
        padding: 30px 20px 80px 20px !important;
    }

    .v-variant-edit-list-gap-input {
        font-size: 1rem !important;
    }

    .v-variant-edit-list-list-bullet {
        font-size: 1.5rem !important;
    }

    .v-variant-edit-list-display ul {
        font-size: 1.1rem !important;
    }

    .v-variant-edit-list-banner-btn {
        font-size: 1rem;
    }

    .v-variant-edit-list-pos-left {
        left: 10px;
    }

    .v-variant-edit-list-pos-right {
        right: 10px;
    }
}

/* --- Several Dropdowns Step --- */
.variant-several-dropdowns-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-several-dd-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-several-dd-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
    transition: background-color 0.3s ease;
}

.v-several-dd-card-header.done {
    background-color: #00F5FF;
}

.v-several-dd-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-several-dd-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-several-dd-frame-grey {
    background-color: #A0A0A0;
}

.v-several-dd-card-body {
    padding: 30px 30px 80px 30px;
    color: #000;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.v-several-dd-bg-light-grey {
    background-color: #e0e0e0;
}

/* --- Sub-headers before each dropdown --- */
.v-several-dd-sub-header {
    font-family: 'Comic Neue', cursive;
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 4px;
    width: 100%;
    max-width: 520px;
}

.v-several-dd-sub-header:first-child {
    margin-top: 0;
}

/* --- Custom Dropdown --- */
.v-several-dd-container {
    width: 100%;
    max-width: 520px;
    position: relative;
    user-select: none;
}

.v-several-dd-trigger {
    width: 100%;
    background: #fff;
    border: 2px solid #000;
    padding: 10px 40px 10px 14px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    outline: none;
    border-radius: 0;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #999;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
    min-height: 46px;
    position: relative;
    word-break: break-word;
    line-height: 1.4;
    text-align: left;
}

.v-several-dd-trigger::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #000;
    pointer-events: none;
}

.v-several-dd-trigger.open::after {
    border-top: none;
    border-bottom: 9px solid #000;
}

.v-several-dd-trigger:hover {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
}

.v-several-dd-trigger.has-value {
    color: #000;
}

.v-several-dd-trigger:active {
    transform: translateY(2px);
    box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.v-several-dd-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.v-several-dd-options.open {
    display: block;
}

.v-several-dd-option {
    padding: 10px 14px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    word-break: break-word;
    line-height: 1.45;
    transition: background-color 0.15s ease;
    text-align: left;
}

.v-several-dd-option:last-child {
    border-bottom: none;
}

.v-several-dd-option:hover {
    background-color: #FFE600;
}

.v-several-dd-option.selected {
    background-color: #00F5FF;
}

/* --- Finished Display --- */
.v-several-dd-finished-section {
    display: none;
    width: 100%;
    max-width: 520px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.v-several-dd-finished-section.visible {
    display: flex;
}

.v-several-dd-finished-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    margin-top: 14px;
}

.v-several-dd-finished-label:first-child {
    margin-top: 0;
}

.v-several-dd-finished-value {
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    word-break: break-word;
    line-height: 1.5;
    background: #fff;
    border: 2px solid #000;
    padding: 10px 16px;
    width: 100%;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* --- Buttons --- */
.v-several-dd-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-several-dd-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-several-dd-banner-btn:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-several-dd-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-several-dd-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

.v-several-dd-reset-btn-active {
    background-color: #00F5FF !important;
    color: #000 !important;
}

/* --- Divider between dropdowns --- */
.v-several-dd-divider {
    width: 100%;
    max-width: 520px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #aaa, transparent);
    margin: 8px 0 4px 0;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .v-several-dd-card-body {
        padding: 40px 20px 80px 20px !important;
    }

    .v-several-dd-header-text {
        font-size: 1.3rem !important;
    }

    .v-several-dd-sub-header {
        font-size: 1rem !important;
    }

    .v-several-dd-trigger {
        font-size: 1.05rem !important;
        padding: 8px 36px 8px 10px;
    }

    .v-several-dd-option {
        font-size: 0.95rem !important;
        padding: 9px 10px;
    }

    .v-several-dd-finished-value {
        font-size: 1.1rem !important;
    }

    .v-several-dd-banner-btn {
        font-size: 1rem;
    }

    .v-several-dd-pos-left {
        left: 10px;
    }

    .v-several-dd-pos-right {
        right: 10px;
    }
}

/* --- Image Paste Step --- */
.variant-image-paste-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-image-paste-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-image-paste-card-header {
    background-color: #FFE600;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #000;
}

.v-variant-image-paste-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-image-paste-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-image-paste-frame-turquoise {
    background-color: #00F5FF;
}

.v-variant-image-paste-card-body {
    padding: 30px;
    padding-bottom: 80px;
    color: #000;
    min-height: 250px;
}

.v-variant-image-paste-bg-light-turquoise {
    background-color: #E0FFFE;
}

.v-variant-image-paste-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-variant-image-paste-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-image-paste-banner-btn:active {
    background-color: #00F5FF !important;
    color: #000 !important;
    transform: scale(0.95);
}

.v-variant-image-paste-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-image-paste-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

@media (max-width: 600px) {
    .v-variant-image-paste-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-image-paste-banner-btn {
        font-size: 1rem;
    }

    .v-variant-image-paste-pos-left {
        left: 10px;
    }

    .v-variant-image-paste-pos-right {
        right: 10px;
    }

    .v-variant-image-paste-card-body {
        padding: 20px 20px 60px 20px !important;
    }
}

/* --- Final Results Step --- */
.final-results-wrapper {
    width: 100%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transition: opacity 1s ease;
}

.performance-timer-box {
    padding: 20px 40px;
    border: 5px solid #000;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.performance-timer-display {
    font-size: 5rem;
    line-height: 1;
    color: #000;
}

.performance-timer-display.fast {
    color: #00cc00;
}

.performance-timer-display.slow {
    color: #ff0000;
}

.performance-reaction-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .performance-timer-display {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .performance-timer-display {
        font-size: 2rem;
    }

    .performance-timer-box {
        padding: 10px 20px;
        box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
    }

    .performance-reaction-image {
        margin: 0 auto;
    }
}

/* --- Image Result Single --- */
.variant-image-result-single-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    margin: 0 !important;
    padding-bottom: 20px !important;
}

.v-variant-image-result-single-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-image-result-single-card-header {
    background-color: #FF0055;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
    color: #fff;
}

.v-variant-image-result-single-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-image-result-single-card-body-frame {
    padding: 8px;
    position: relative;
}

.v-variant-image-result-single-frame-yellow {
    background-color: #FFE600;
}

.v-variant-image-result-single-card-body {
    padding: 20px;
    padding-bottom: 80px;
    color: #000;
    text-align: center;
}

.v-variant-image-result-single-bg-light-yellow {
    background-color: #FFF9C4;
}

.v-variant-image-result-single-image-container {
    position: relative;
    display: inline-block;
    border: 4px solid #000;
    cursor: zoom-in;
    transition: transform 0.2s;
    background: #fff;
}

.v-variant-image-result-single-image-container:hover {
    transform: scale(1.02);
}

.v-variant-image-result-single-image {
    display: block;
    width: 200px;
    cursor: pointer;
}

/* Banner Button */
.v-variant-image-result-single-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-image-result-single-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-image-result-single-banner-btn:active {
    background-color: #00F5FF !important;
    transform: scale(0.95);
}

.v-variant-image-result-single-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

/* Modal */
.v-variant-image-result-single-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.v-variant-image-result-single-modal.active {
    display: flex;
    animation: fadeInResult 0.2s ease-out;
}

.v-variant-image-result-single-modal-image {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInResult {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .v-variant-image-result-single-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-image-result-single-banner-btn {
        padding: 6px 15px;
        font-size: 1rem;
    }

    .v-variant-image-result-single-pos-right {
        right: 10px;
    }

    .v-variant-image-result-single-card-body {
        padding: 20px 20px 80px 20px !important;
    }
}

/* --- Content Results Step --- */
.variant-content-results-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    opacity: 0;
    transition: opacity 1s ease;
}

.v-variant-content-results-gap-card {
    width: 100%;
    max-width: 650px;
    border: 4px solid #000;
    background-color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
}

.v-variant-content-results-card-header {
    background-color: #FF0055;
    /* Pink as requested */
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 4px solid #000;
}

.v-variant-content-results-header-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.v-variant-content-results-card-body-frame {
    padding: 8px;
    position: relative;
    background-color: #FFE600;
    /* Yellow frame */
}

.v-variant-content-results-card-body {
    padding: 30px;
    padding-bottom: 80px;
    color: #000;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    min-height: 200px;
    background-color: #FFF9C4;
    text-align: left;
}

.v-variant-content-results-section-header-box {
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.v-variant-content-results-section-header {
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #444;
}

.v-variant-content-results-title-text {
    font-weight: 700;
    margin-top: 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.v-variant-content-results-list {
    font-weight: 700;
    padding-left: 20px;
    font-size: 1.3rem;
    list-style-type: square;
    margin-top: 0;
}

.v-variant-content-results-list li {
    margin-bottom: 5px;
}

.v-variant-content-results-para {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 0;
}

.v-variant-content-results-banner-btn {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid #000;
    background-color: #FFE600;
    color: #000;
    z-index: 20;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.v-variant-content-results-banner-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.v-variant-content-results-pos-left {
    left: -10px;
    transform: rotate(3deg);
}

.v-variant-content-results-pos-right {
    right: -10px;
    transform: rotate(-3deg);
}

@media (max-width: 600px) {
    .v-variant-content-results-header-text {
        font-size: 1.3rem !important;
    }

    .v-variant-content-results-card-body {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        padding: 20px !important;
        padding-bottom: 70px !important;
    }

    .v-variant-content-results-title-text {
        font-size: 1.4rem !important;
    }

    .v-variant-content-results-list {
        font-size: 1.1rem !important;
    }

    .v-variant-content-results-para {
        font-size: 1rem !important;
    }

    .v-variant-content-results-section-header {
        font-size: 0.9rem !important;
    }

    .v-variant-content-results-banner-btn {
        font-size: 1rem;
    }

    .v-variant-content-results-pos-left {
        left: 10px;
    }

    .v-variant-content-results-pos-right {
        right: 10px;
    }
}

/* --- Method Action Buttons (Beer/Restart) --- */
.method-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease;
}

.method-btn {
    display: block;
    flex: 1;
    max-width: 300px;
    position: relative;
    text-decoration: none;
    border: none;
    background: none;
    transition: transform 0.2s ease;
    animation: alivePulse 3s ease-in-out infinite;
    cursor: pointer;
    padding: 0;
}

.method-btn:hover {
    transform: scale(1.05);
    animation: none;
}

.btn-img-wrapper {
    position: relative;
    width: 100%;
}

.btn-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    width: 100%;
    height: 100%;
}

.method-btn:hover .btn-hover-img {
    opacity: 1;
}

@keyframes alivePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .method-buttons-container {
        gap: 10px;
        padding: 0 10px 40px 10px;
    }
}

/* --- Gig Links Section --- */
.gig-links-divider {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 40px;
    border-top: 4px dashed #000;
    opacity: 0;
    transition: opacity 1s ease;
}

.gig-links-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.gig-links-section .wrong-section-block {
    margin-bottom: 60px;
    opacity: 0;
    transition: opacity 1s ease;
}

.gig-links-section .wrong-section-header {
    margin-top: 0;
}