:root {
    /* Brand Colors */
    --brand-white: #FEFAF8;
    --brand-light-pink: #FFF0F4;
    --brand-pink: #FFB3C6;
    --brand-primary: #F27E97;
    --brand-accent: #FF4D6D;
    --brand-dark: #5C374B;

    --text-main: var(--brand-dark);
    --text-light: rgba(92, 55, 75, 0.7); /* Based on --brand-dark */
    --card-bg: rgba(254, 250, 248, 0.95); /* Based on --brand-white */
    
    /* Brand Fonts */
    --font-heading: 'FreightDisp Pro', 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--brand-light-pink) 0%, var(--brand-white) 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 1.5rem;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Improve tap target responsiveness globally */
button, input, select, .poll-choice, a {
    touch-action: manipulation;
}

/* Decorative Background Elements */
.bunting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='240' height='80' viewBox='0 0 240 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q 40 20 80 0 T 160 0 T 240 0' stroke='rgba(92,55,75,0.2)' stroke-width='2' fill='none' /%3E%3Cpath d='M5 2 L40 55 L75 2 Z' fill='%23FF4D6D' /%3E%3Cpath d='M85 2 L120 55 L155 2 Z' fill='%23FFB3C6' /%3E%3Cpath d='M165 2 L200 55 L235 2 Z' fill='%23F27E97' /%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 240px 80px;
    background-position: top center;
    filter: drop-shadow(0 5px 15px rgba(242, 126, 151, 0.3));
}

.glitter-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23F27E97' opacity='0.7'/%3E%3Ccircle cx='120' cy='80' r='1' fill='%23FF4D6D' opacity='0.5'/%3E%3Ccircle cx='250' cy='50' r='2' fill='%23FFB3C6' opacity='0.9'/%3E%3Ccircle cx='80' cy='220' r='1.5' fill='%235C374B' opacity='0.6'/%3E%3Ccircle cx='180' cy='260' r='1' fill='%23F27E97' opacity='0.8'/%3E%3Ccircle cx='280' cy='180' r='2.5' fill='%23FF4D6D' opacity='0.4'/%3E%3Ccircle cx='150' cy='150' r='1.5' fill='%23FFB3C6' opacity='0.6'/%3E%3C/svg%3E");
    animation: glitterDrift 80s linear infinite;
}

@keyframes glitterDrift {
    0% { background-position: 0 0; }
    100% { background-position: -300px -300px; }
}

.confetti {
    position: fixed;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

@keyframes floatParticle {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

.c1 { width: 80px; height: 80px; top: 10%; left: 5%; animation: floatParticle 12s ease-in-out infinite; background: var(--brand-primary); }
.c2 { width: 120px; height: 120px; top: 60%; left: 85%; animation: floatParticle 18s ease-in-out infinite 2s; background: var(--brand-accent); }
.c3 { width: 60px; height: 60px; top: 30%; left: 75%; animation: floatParticle 14s ease-in-out infinite 4s; background: var(--brand-pink); }
.c4 { width: 90px; height: 90px; top: 80%; left: 15%; animation: floatParticle 16s ease-in-out infinite 1s; background: var(--brand-dark); opacity: 0.15;}
.c5 { width: 150px; height: 150px; top: -5%; left: 50%; animation: floatParticle 20s ease-in-out infinite 3s; filter: blur(12px); opacity: 0.15; background: var(--brand-primary); }
.c6 { width: 70px; height: 70px; top: 45%; left: 20%; animation: floatParticle 15s ease-in-out infinite 5s; background: var(--brand-accent); }

/* Birthday Balloons */
.balloon {
    position: fixed;
    bottom: -150px;
    width: 60px;
    height: 80px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    z-index: -1;
    opacity: 0.7;
    animation: floatBalloons 18s ease-in infinite;
    pointer-events: none;
}
.balloon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: transparent;
}
.balloon::after {
    content: '';
    position: absolute;
    bottom: -58px;
    left: 50%;
    width: 1px;
    height: 50px;
    background-color: rgba(92, 55, 75, 0.4);
}
@keyframes floatBalloons {
    0% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-70vh) rotate(5deg); }
    100% { transform: translateY(-130vh) rotate(-5deg); }
}
.b1 { left: 10%; animation-duration: 12s; background-color: #FFB3C6; animation-delay: 2s; }
.b2 { left: 85%; animation-duration: 15s; background-color: #FF4D6D; animation-delay: 5s; }
.b3 { left: 40%; animation-duration: 13s; background-color: #F27E97; animation-delay: 8s; }
.b4 { left: 65%; animation-duration: 16s; background-color: #FFB3C6; animation-delay: 1s; }
.b5 { left: 25%; animation-duration: 14s; background-color: #FF4D6D; animation-delay: 10s; }
.b1::before { border-top-color: #FFB3C6; }
.b2::before { border-top-color: #FF4D6D; }
.b3::before { border-top-color: #F27E97; }
.b4::before { border-top-color: #FFB3C6; }
.b5::before { border-top-color: #FF4D6D; }


/* Interactive Confetti container */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--brand-primary);
    animation: burstConfetti 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: center;
}
@keyframes burstConfetti {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0); opacity: 0; }
}

#container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Typography & Hero */
.text-center { text-align: center; }
.mb-6 { margin-bottom: 2rem; }

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
    background: rgba(254, 250, 248, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(92, 55, 75, 0.05);
    text-align: left;
}

.hero-content {
    flex: 1 1 50%;
}

.hero-image {
    flex: 1 1 50%;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(242, 126, 151, 0.2);
    display: block;
}

.anniversary-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(255, 77, 109, 0.35);
    z-index: 2;
    line-height: 1;
    transform: rotate(12deg);
    animation: badgePulse 3s infinite alternate;
}

@keyframes badgePulse {
    0% { transform: rotate(12deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.05); }
}

.anniversary-badge span {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.cake-emoji {
    font-size: 2.2rem;
    margin-top: 8px !important;
    animation: cakeBounce 2s infinite;
    letter-spacing: normal !important;
    display: inline-block;
}

@keyframes cakeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.brand-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--brand-white);
    backdrop-filter: blur(10px);
    color: var(--brand-accent);
    border: 1px solid var(--brand-pink);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.15);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8vw, 5rem);
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero .subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 100%;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Selection Counter */
.selection-counter-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.selection-counter {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--brand-accent);
    font-size: 0.95rem;
    background: rgba(254, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.8rem 2rem;
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(92, 55, 75, 0.08);
    border: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Poll Grid */
#poll-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.poll-choice {
    background: var(--card-bg);
    border: none;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(92, 55, 75, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.choice-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.poll-choice:hover:not(.is-disabled):not(.results-mode):not(.is-selected) {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(242, 126, 151, 0.15);
}

@keyframes cardSelect {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-6px); }
    100% { transform: scale(1.03) translateY(-4px); }
}

.poll-choice.is-selected {
    background: #fff;
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.25);
    animation: cardSelect 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    z-index: 2;
}

.poll-choice.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(40%);
}

#poll-grid.results-mode .poll-choice {
    cursor: default;
}
#poll-grid.results-mode .poll-choice:not(.is-user-pick):not(.is-leader):hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(92, 55, 75, 0.06);
}

/* Active state for mobile touch feedback */
@media (hover: none) {
    .poll-choice:active:not(.is-disabled):not(.results-mode) {
        transform: scale(0.98);
        background-color: #fafafa;
    }
}

/* Image styling */
.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #fff;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.poll-choice:hover:not(.is-disabled) .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.02), transparent);
    pointer-events: none;
}

/* Choice Text */
.choice-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 1.25rem;
    min-height: 3.5rem;
}
.choice-content .caption {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.4;
}

/* Vote Button */
@keyframes popVoteBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.08); }
}

.vote-btn {
    width: auto;
    min-width: 100px;
    height: 44px;
    padding: 0 1.5rem;
    border-radius: 22px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    margin: auto auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(242, 126, 151, 0.4);
    flex-shrink: 0;
}

.poll-choice:hover:not(.is-disabled) .vote-btn {
    background: var(--brand-accent);
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(255, 77, 109, 0.5);
}

.poll-choice.is-selected .vote-btn {
    background: var(--brand-dark);
    color: #fff;
    box-shadow: 0 6px 16px rgba(92, 55, 75, 0.4);
    transform: scale(1.08);
    animation: popVoteBtn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.poll-choice.is-selected:hover .vote-btn {
    background: var(--brand-dark);
    transform: scale(1.1);
}

/* Form Section */
#form-section {
    background: rgba(254, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 50px rgba(92, 55, 75, 0.05);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.15rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

#error-message {
    background: #fdf2f2;
    color: #c53030;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 500;
    border: 1px solid #feb2b2;
    text-align: left;
    box-shadow: 0 4px 6px rgba(229, 62, 62, 0.1);
}

.form-group {
    margin-bottom: 1.75rem;
    text-align: left;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 179, 198, 0.6);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}
.form-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(242, 126, 151, 0.15);
    background: #fff;
}

/* Checkbox specific */
.checkbox-group label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    text-transform: none;
    letter-spacing: normal;
}
.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--brand-primary);
    cursor: pointer;
}

#submit-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}
#submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 77, 109, 0.4);
}
#submit-button:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Thank you & Results state */
#thank-you-section {
    background: rgba(254, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px rgba(92, 55, 75, 0.08);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.thank-you-title {
    font-family: var(--font-heading);
    color: var(--brand-accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.thank-you-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Thank you CTA */
.thank-you-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.thank-you-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 77, 109, 0.4);
    color: #fff;
}

.poll-choice.is-user-pick {
    background: #fff;
    box-shadow: 0 10px 35px rgba(255, 77, 109, 0.25);
    transform: scale(1.02);
}
.poll-choice.is-leader {
    background: #fff;
    box-shadow: 0 10px 35px rgba(242, 126, 151, 0.3);
}
.poll-choice.is-leader::before {
    content: '★ FAN FAVORITE';
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.percentage-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(92, 55, 75, 0.05);
    border-radius: 999px;
    margin-top: 1rem;
    overflow: hidden;
}
.percentage-bar {
    height: 100%;
    background: var(--brand-primary);
    width: 0%;
    border-radius: 999px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-leader .percentage-bar {
    background: var(--brand-accent);
}

.result-stats {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Status state */
.status-card {
    background: rgba(254, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(92, 55, 75, 0.08);
}
.status-card h2 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 2.25rem;
}

/* Terms Footer */
.terms {
    background: rgba(254, 250, 248, 0.85);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--brand-pink);
}
.terms h4 {
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.terms ol {
    padding-left: 1.25rem;
    margin: 0;
    line-height: 1.7;
}
.terms li {
    margin-bottom: 0.5rem;
}
.terms li:last-child {
    margin-bottom: 0;
}

#wbx-powered-by-slot {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.hidden {
    display: none !important;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        gap: 2.5rem;
    }
    .hero p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    #form-section {
        padding: 2.5rem 1.5rem;
    }
}

/* Enhanced Mobile Layout & Large Tap Targets */
@media (max-width: 600px) {
    body { padding: 1.5rem 1rem; }
    
    .hero {
        padding: 2rem 1.25rem;
        border-radius: 20px;
        margin-bottom: 2.5rem;
        margin-top: 2rem;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero .subtitle {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .anniversary-badge {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
        top: -15px;
        right: -15px;
    }

    #poll-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .poll-choice {
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .image-wrapper {
        margin-bottom: 0.75rem;
    }

    .choice-content {
        padding: 0.5rem 0 1rem;
        min-height: auto;
    }

    .choice-content .caption {
        font-size: 0.85rem;
    }
    
    /* Vote button becomes a full-width pill for better tapping */
    .vote-btn {
        width: 100%;
        height: 44px;
        border-radius: 22px;
        font-size: 0.75rem;
    }
    
    .poll-choice:hover:not(.is-disabled) .vote-btn {
        transform: translateY(-2px);
    }
    
    #form-section, #thank-you-section, .status-card {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }
    
    .thank-you-cta {
        padding: 1rem;
        width: 100%;
        font-size: 1rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"] {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-top: 2px;
    }
    
    #submit-button {
        padding: 1rem;
        min-height: 54px;
        font-size: 1rem;
    }
    
    .terms {
        padding: 1.5rem;
    }
}