@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #fff5f7 0%, #fae3eb 50%, #f7d6e0 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    color: #2d3748;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.card, .result-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 12px 32px rgba(255, 117, 140, 0.15), 0 2px 6px rgba(0, 0, 0, 0.04);
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

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

.badge {
    display: inline-block;
    background: #ffe3ec;
    color: #ff477e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.progress-container {
    margin-bottom: 24px;
    text-align: left;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff477e;
    margin-bottom: 8px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff758c 0%, #ff7eb3 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.question-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d3748;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.5;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.option-card {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    user-select: none;
}

.option-card:hover {
    border-color: #ff7eb3;
    background: #fff8fa;
    transform: translateY(-1px);
}

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

.option-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.option-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #edf2f7;
    color: #4a5568;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 14px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.option-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    flex: 1;
}

.option-card.selected {
    border-color: #ff477e;
    background: #fff0f5;
    box-shadow: 0 4px 12px rgba(255, 71, 126, 0.15);
}

.option-card.selected .option-badge {
    background: #ff477e;
    color: #ffffff;
}

.btn-primary, .btn-claim, .btn-retry {
    display: inline-block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff477e 0%, #ff758c 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 71, 126, 0.3);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.btn-primary:hover, .btn-claim:hover, .btn-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 71, 126, 0.4);
    background: linear-gradient(135deg, #e6396e 0%, #ff637b 100%);
}

.btn-primary:active, .btn-claim:active, .btn-retry:active {
    transform: translateY(0);
}

.prank-alert {
    background: #fff0f3;
    border: 2px dashed #ff477e;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    animation: bounce 0.5s ease;
}

.prank-alert h2 {
    color: #d90429;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Bonus Question & Shrinking Button Styles */
.bonus-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed #ffb3c1;
    animation: fadeIn 0.5s ease-out;
}

.bonus-badge {
    display: inline-block;
    background: #fff0f3;
    color: #ff477e;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.5;
}

.bonus-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.bonus-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 90px;
    position: relative;
    margin-bottom: 16px;
}

.btn-yes {
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-no {
    padding: 14px 28px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
    transform-origin: center center;
}

.sweet-success {
    display: none;
    background: #f0fdf4;
    border: 2px dashed #4ade80;
    border-radius: 18px;
    padding: 24px 18px;
    margin-top: 16px;
    animation: bounce 0.5s ease-out;
}

.sweet-success h3 {
    color: #15803d;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Nata Photo Spam Grid & Stickers (Mobile Optimized) */
.nata-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.nata-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff477e;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(255, 71, 126, 0.3);
    animation: floatAnim 2s infinite alternate ease-in-out;
}

.nata-avatar:nth-child(even) {
    animation-delay: 0.5s;
    border-color: #ff758c;
}

.nata-avatar:nth-child(3n) {
    animation-delay: 1s;
    border-color: #10b981;
}

@keyframes floatAnim {
    0% { transform: translateY(0px) rotate(-4deg); }
    100% { transform: translateY(-7px) rotate(5deg); }
}

.nata-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.nata-photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    border: 2px solid #fff;
}

.nata-photo-item img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.nata-photo-item:hover img {
    transform: scale(1.15);
}

.nata-tag {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 71, 126, 0.9);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


