* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.jodoo-survey-wrapper {
    font-family: 'Lexend', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:#fce4ec;
}

/* ==========================================
   STEP 0: INTRODUCTION BANNER
   ========================================== */

.banner-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(224, 0, 111, 0.15);
    padding: 5px 5px 5px 45px;
}

/* Left Side - Image Section */
.banner-left {
    flex: 0 0 47%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.banner-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Wave pattern background */
.banner-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%23f8a5c2' stroke-width='0.5' opacity='0.3' d='M0,50 Q50,30 100,50 T200,50 M0,100 Q50,80 100,100 T200,100 M0,150 Q50,130 100,150 T200,150'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 0;
}

.couple-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.banner-hearts-gif {
    position: absolute;
    bottom: 37%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: auto;
    z-index: 3;
}

/* Right Side - Content Section */
.banner-right {
    flex: 0 0 53%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #e0006f;
    line-height: 1.3;
    margin-bottom: 15px;
}

.banner-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #831843;
    margin-bottom: 10px;
}

.banner-description {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.banner-description strong {
    color: #333;
    font-weight: 600;
}

/* Form Styles */
.survey-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.form-group label span {
    color: #e0006f;
}

.form-group input {
    padding: 12px 16px;
    border: none;
    border-bottom: 1.5px solid #ddd;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    color: #555;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #e0006f;
}

.form-group input::placeholder {
    color: #999;
}

.jd-submit-btn {
    margin-top: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF81B8 0%, #BC0051 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 0, 111, 0.3);
}

.jd-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 0, 111, 0.4);
}

.jd-submit-btn:active {
    transform: translateY(0);
}

/* ==========================================
   STEP 1+: SURVEY CONTAINER
   ========================================== */

.survey-container {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(224, 0, 111, 0.15);
    padding: 20px;
}

/* Survey Header */
.survey-header {
    background-image: url("../img/header-background.png");
    border-radius: 20px;
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Wave pattern for survey header 
.survey-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%23f8a5c2' stroke-width='1' opacity='0.4' d='M0,50 Q50,30 100,50 T200,50 M0,100 Q50,80 100,100 T200,100 M0,150 Q50,130 100,150 T200,150'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.6;
    z-index: 0;
} */

.survey-header-content {
    position: relative;
    z-index: 1;
}

.survey-part-label {
    font-size: 14px;
    font-weight: 600;
    color: #e0006f;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.survey-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #e0006f;
}

/* Progress Bar Container */
.progress-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-steps {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    position: relative;
}

.progress-line {
    position: absolute;
    bottom: 7px;
    left: 35px;
    right: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    z-index: 0;
}

.progress-fill {
    height: 100%;
    background: #e0006f;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 65px;
    height: 70px;
    background: #fff;
    border-radius: 12px 12px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(224, 0, 111, 0.15);
    margin-bottom: 10px;
    position: relative;
    overflow: visible;
}

/* Pin/badge point at bottom */
.step-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 2px 2px 5px rgba(224, 0, 111, 0.1);
    z-index: -1;
}

.step-icon img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ddd;
    transition: all 0.3s ease;
}

.progress-step.active .step-dot {
    background: #e0006f;
    border-color: #ffb6c1;
    box-shadow: 0 0 0 4px rgba(224, 0, 111, 0.2);
}

.progress-step.completed .step-dot {
    background: #e0006f;
    border-color: #e0006f;
}

/* Survey Content */
.survey-content {
    padding: 40px;
}

.question-group {
    margin-bottom: 30px;
}

.question-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 15px;
}

.options-grid.options-4 {
    grid-template-columns: repeat(4, 1fr);
}

.options-grid.options-2 {
    grid-template-columns: repeat(2, 1fr);
}

.option-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border: 2px solid #f8bbd9;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-box:hover {
    border-color: #e0006f;
    background: #fff5f8;
}

.option-box input[type="radio"] {
    display: none;
}

.option-text {
    font-size: 14px;
    font-weight: 500;
    color: #e0006f;
    text-align: center;
}

.option-box.selected,
.option-box:has(input:checked) {
    border-color: #e0006f;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 100%);
    box-shadow: 0 4px 15px rgba(224, 0, 111, 0.15);
}

/* Options grid for 3 columns */
.options-grid.options-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Lainnya wrapper */
.lainnya-wrapper {
    margin-top: 15px;
}

/* Next Button */
.jd-next-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #FF81B8 0%, #BC0051 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(194, 24, 91, 0.4);
    margin-top: 20px;
}

.jd-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(194, 24, 91, 0.5);
}

.jd-next-btn:active {
    transform: translateY(0);
}

/* ==========================================
   DROPDOWN SELECT STYLES
   ========================================== */

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

.custom-select {
    width: 100%;
    padding: 14px 45px 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    color: #555;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.custom-select:focus {
    outline: none;
    border-color: #e0006f;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #999;
    pointer-events: none;
}

/* ==========================================
   CHECKBOX STYLES
   ========================================== */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-box {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 1.5px solid #f8bbd9;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
}

.checkbox-box:hover {
    border-color: #e0006f;
    background: #fff5f8;
}

.checkbox-box input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #fff;
}

.checkbox-box input[type="checkbox"]:checked+.checkmark {
    background: #e0006f;
    border-color: #e0006f;
}

.checkbox-box input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1.3;
}

.checkbox-box:has(input:checked) {
    border-color: #e0006f;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 100%);
}

.checkbox-box:has(input:checked) .checkbox-text {
    color: #e0006f;
}

/* ==========================================
   RATING OPTIONS STYLES
   ========================================== */

.rating-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border: 2px solid #f8bbd9;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-box:hover {
    border-color: #e0006f;
    background: #fff5f8;
}

.rating-box input[type="radio"] {
    display: none;
}

.rating-text {
    font-size: 14px;
    font-weight: 500;
    color: #e0006f;
    text-align: center;
}

.rating-box:has(input:checked) {
    border-color: #e0006f;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 100%);
    box-shadow: 0 4px 15px rgba(224, 0, 111, 0.15);
}

/* ==========================================
   TEXT INPUT STYLES
   ========================================== */

.question-label-small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.label-note {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.text-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    color: #555;
    background: #fff;
    transition: all 0.3s ease;
}

.text-input:focus {
    outline: none;
    border-color: #e0006f;
}

.text-input::placeholder {
    color: #999;
}

/* ==========================================
   FINISH PAGE STYLES
   ========================================== */

.finish-content {
    padding: 40px;
}

.finish-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.finish-message {
    flex: 1;
}

.finish-title {
    font-size: 22px;
    font-weight: 700;
    color: #831843;
    margin-bottom: 20px;
}

.finish-text {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
}

.finish-text strong {
    color: #e0006f;
    font-weight: 700;
}

/* JCoins Badge */
.jcoins-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 100%);
    border-radius: 20px;
    border: 2px solid #f8bbd9;
    min-width: 180px;
}

.jcoins-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.jcoins-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.jcoins-amount {
    font-size: 18px;
    font-weight: 700;
    color: #e0006f;
    margin-bottom: 8px;
}

.jcoins-tagline {
    font-size: 13px;
    color: #BC0051;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

.jcoins-tagline em {
    color: #BC0051;
    font-weight: 500;
}

/* ==========================================
   SUCCESS POPUP MODAL
   ========================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup-modal {
    display: flex;
    max-width: 800px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #e0006f;
}

/* Left Side - Woman Image */
.popup-left {
    flex: 0 0 40%;
    background-image: url('../img/popup-left-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.popup-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.popup-hearts-gif {
    position: absolute;
    top: 12%;
    left: 18%;
    width: 100px;
    height: auto;
    z-index: 3;
}

/* Right Side - Content */
.popup-right {
    flex: 0 0 60%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #e0006f;
    margin-bottom: 15px;
    text-align: right;
}

.popup-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: right;
    font-weight: 500;
}

.popup-text strong {
    color: #e0006f;
    font-weight: 600;
}

.popup-note {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: right;
    font-weight: 500;
}

.popup-note strong {
    color: #e0006f;
    font-weight: 600;
}

/* Stage Bonus */
.stage-bonus {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 100%);
    border: 2px solid #f8bbd9;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-header {
    font-size: 14px;
    font-weight: 700;
    color: #e0006f;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.bonus-detail {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 22px;
    font-weight: 700;
    color: #e0006f;
}

/* CTA Button */
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF81B8 0%, #BC0051 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(188, 0, 81, 0.4);
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(188, 0, 81, 0.5);
}

.cta-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {

    /* Welcome Banner */
    .banner-container {
        flex-direction: column;
        max-width: 450px;
        padding: 15px;
    }

    .banner-left {
        flex: none;
        height: 280px;
        width: 100%;
    }

    .banner-right {
        padding: 30px 25px;
    }

    .banner-title {
        font-size: 22px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    .banner-description {
        font-size: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .jd-submit-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    .banner-hearts-gif {
        width: 70px;
        bottom: 40%;
    }

    /* Survey Container */
    .survey-container {
        max-width: 100%;
        padding: 15px;
    }

    .survey-header {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
        background-size: cover;
    }

    .survey-header-content {
        text-align: center;
    }

    .survey-part-label {
        font-size: 12px;
    }

    .survey-section-title {
        font-size: 20px;
    }

    /* Progress Bar */
    .progress-container {
        width: 100%;
    }

    .progress-steps {
        gap: 30px;
        justify-content: center;
    }

    .step-icon {
        width: 55px;
        height: 65px;
    }

    .step-icon img {
        width: 50px;
        height: 50px;
    }

    .progress-line {
        width: 80%;
    }

    /* Survey Content */
    .survey-content {
        padding: 25px 20px;
    }

    .question-group {
        margin-bottom: 25px;
    }

    .question-label {
        font-size: 15px;
    }

    .label-note {
        font-size: 12px;
    }

    /* Options & Inputs */
    .options-grid {
        gap: 10px;
    }

    .options-grid.options-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-grid.options-2 {
        grid-template-columns: 1fr;
    }

    .options-grid.options-3 {
        grid-template-columns: 1fr;
    }

    .option-box {
        padding: 14px 18px;
    }

    .rating-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rating-box {
        padding: 12px 16px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-box {
        padding: 12px 14px;
    }

    .custom-select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .text-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .jd-next-btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    /* Finish Page */
    .finish-content {
        padding: 30px 20px;
    }

    .finish-layout {
        flex-direction: column;
        gap: 25px;
    }

    .finish-title {
        font-size: 20px;
    }

    .finish-text {
        font-size: 14px;
    }

    .jcoins-badge {
        width: 100%;
        padding: 20px;
    }

    .jcoins-icon {
        width: 80px;
        height: 80px;
    }

    .jcoins-amount {
        font-size: 16px;
    }

    .jcoins-tagline {
        font-size: 12px;
    }

    /* Popup Modal */
    .popup-overlay {
        padding: 15px;
    }

    .popup-modal {
        flex-direction: column;
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-left {
        flex: none;
        min-height: 250px;
        width: 100%;
    }

    .popup-right {
        flex: none;
        padding: 25px 20px;
    }

    .popup-title {
        font-size: 22px;
        text-align: center;
    }

    .popup-text,
    .popup-note {
        text-align: center;
    }

    .popup-hearts-gif {
        width: 70px;
        top: 8%;
        left: 24%;
    }

    .stage-bonus {
        padding: 18px;
    }

    .bonus-header {
        font-size: 13px;
    }

    .bonus-detail {
        font-size: 14px;
    }

    .bonus-amount {
        font-size: 20px;
    }

    .popup-cta {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    /* Welcome Banner */
    .banner-container {
        max-width: 100%;
        padding: 10px;
    }

    .banner-left {
        height: 220px;
    }

    .banner-right {
        padding: 20px 18px;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-subtitle {
        font-size: 12px;
    }

    .banner-description {
        font-size: 11px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .jd-submit-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .banner-hearts-gif {
        width: 50px;
    }

    /* Survey Container */
    .survey-container {
        padding: 10px;
    }

    .survey-header {
        padding: 20px 15px;
        gap: 20px;
    }

    .survey-section-title {
        font-size: 18px;
    }

    /* Progress Bar */
    .progress-steps {
        gap: 15px;
    }

    .step-icon {
        width: 45px;
        height: 55px;
    }

    .step-icon img {
        width: 42px;
        height: 42px;
    }

    /* Survey Content */
    .survey-content {
        padding: 20px 15px;
    }

    .question-label {
        font-size: 14px;
        line-height: 1.5;
    }

    .option-box {
        padding: 12px 14px;
    }

    .option-text {
        font-size: 13px;
    }

    .rating-text {
        font-size: 13px;
    }

    .checkbox-text {
        font-size: 12px;
    }

    .custom-select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .text-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .jd-next-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Finish Page */
    .finish-content {
        padding: 25px 15px;
    }

    .finish-title {
        font-size: 18px;
    }

    .finish-text {
        font-size: 13px;
    }

    .jcoins-icon {
        width: 70px;
        height: 70px;
    }

    .jcoins-amount {
        font-size: 15px;
    }

    /* Popup */
    .popup-modal {
        max-height: 85vh;
    }

    .popup-left {
        min-height: 200px;
    }

    .popup-right {
        padding: 20px 15px;
    }

    .popup-title {
        font-size: 18px;
    }

    .popup-text {
        font-size: 13px;
    }

    .popup-note {
        font-size: 11px;
    }

    .popup-hearts-gif {
        width: 85px;
    }

    .stage-bonus {
        padding: 15px;
    }

    .bonus-detail {
        font-size: 13px;
    }

    .bonus-amount {
        font-size: 18px;
    }

    .popup-cta {
        font-size: 13px;
        padding: 12px 20px;
    }

    .cta-icon {
        width: 18px;
        height: 18px;
        font-size: 14px;
    }
}