/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    color: #4a4a4a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === BACKGROUND STYLES === */
.sky-background {
    background: url('quiz-bg.png') center center / cover no-repeat;
    position: relative;
    min-height: 100vh;
}

/* Welcome screen specific background */
#welcomeScreen {
    background: url('new background.jpg') center center / contain no-repeat !important;
    background-color: #87CEEB !important; /* Light blue sides */
}

/* Fallback for unsupported browsers */
.sky-background {
    background-color: #87CEEB;
}

/* === DECORATIVE ELEMENTS === */
.decoration {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.smiley-1 { top: 10%; left: 15%; animation-delay: 0s; }
.smiley-2 { top: 20%; right: 10%; animation-delay: 2s; }
.smiley-3 { bottom: 30%; left: 20%; animation-delay: 4s; }

.star-1 { top: 15%; left: 5%; animation-delay: 1s; }
.star-2 { top: 60%; right: 15%; animation-delay: 3s; }
.star-3 { bottom: 20%; right: 5%; animation-delay: 5s; }

.heart-1 { top: 40%; left: 10%; animation-delay: 1.5s; }
.heart-2 { top: 70%; right: 20%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* === SCREEN TRANSITIONS === */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 10;
}

.screen.active {
    opacity: 1;
    visibility: visible;
}

/* === WELCOME SCREEN === */
.welcome-content {
    text-align: center;
    max-width: 400px;
    padding: 0;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Hide all text elements - background image has the text */
.due-date,
.main-title,
.welcome-subtitle {
    display: none;
}

/* Hide decorative elements on welcome screen since background has them */
#welcomeScreen .decoration {
    display: none;
}

.name-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    position: relative;
}

.name-form input {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    outline: none;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    background: rgba(255, 182, 193, 0.95);
    width: 280px;
    height: 45px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.name-form input::placeholder {
    color: #666;
    font-size: 1rem;
}

.name-form input:focus {
    background: rgba(255, 182, 193, 1);
    outline: 3px solid rgba(255, 105, 180, 0.4);
    transform: translateY(-1px);
}

.start-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: rgba(255, 105, 180, 0.95);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 280px;
    height: 45px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.start-btn:hover {
    background: rgba(255, 105, 180, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.view-garden-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: rgba(74, 144, 226, 0.95);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 260px;
    height: 40px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-garden-btn:hover {
    background: rgba(74, 144, 226, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

/* === QUIZ SCREEN === */
.progress-container {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B9D, #FFB347);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 16.67%; /* 1/6 questions */
}

.progress-text {
    text-align: center;
    margin-top: 0.5rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.question-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.question-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.question-title {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 3rem;
    font-weight: 600;
}

.options-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.option-card {
    flex: 1;
    max-width: 300px;
    min-height: 250px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-left {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A80 100%);
}

.option-right {
    background: linear-gradient(135deg, #4A90E2 0%, #64B5F6 100%);
}

.option-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.option-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
}

.option-label {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.option-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
}

/* === RESULTS SCREEN === */
#resultsScreen {
    background: #ADD8E6 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    overflow-y: auto !important;
}

#resultsScreen .decoration {
    display: none !important;
}

/* Hide all decorations when results screen is active */
body:has(#resultsScreen.active) .decoration {
    display: none !important;
}

/* Override body background when results screen is active */
body:has(#resultsScreen.active) {
    background: #ADD8E6 !important;
}

.results-content {
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.results-title {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #FF6B9D;
    font-family: 'Fredoka', cursive;
}

.back-to-home-btn {
    background: linear-gradient(45deg, #4A90E2, #64B5F6);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-home-btn:hover {
    background: linear-gradient(45deg, #3F51B5, #4A90E2);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.6);
}

.flower-garden {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    background: #ADD8E6;
}

.participant-count {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-family: 'Fredoka', cursive;
}

.empty-garden-message {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    max-width: 400px;
}

.empty-garden-message p {
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* === FLOWER STYLES === */
.flower {
    position: absolute;
    width: 450px;
    height: 340px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flower:hover {
    transform: scale(1.05);
}

.flower-petal {
    position: absolute;
    width: 100px;
    height: 60px;
    background: linear-gradient(45deg, #FF6B9D, #FFB347);
    border-radius: 50px 50px 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0.4rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.3);
    z-index: 5;
}

/* Positioned with maximum spacing to prevent any overlap */
.flower-petal:nth-child(1) { top: -60px; left: 125px; transform: rotate(0deg); }
.flower-petal:nth-child(2) { top: -10px; left: 200px; transform: rotate(60deg); }
.flower-petal:nth-child(3) { top: 90px; left: 200px; transform: rotate(120deg); }
.flower-petal:nth-child(4) { top: 140px; left: 125px; transform: rotate(180deg); }
.flower-petal:nth-child(5) { top: 90px; left: 50px; transform: rotate(240deg); }
.flower-petal:nth-child(6) { top: -10px; left: 50px; transform: rotate(300deg); }

.petal-label {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-family: 'Fredoka', cursive;
}

.petal-value {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-family: 'Fredoka', cursive;
}

.flower-center {
    position: absolute;
    top: 30px;
    left: 140px;
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.4);
    z-index: 10;
}

.flower-stem {
    position: absolute;
    top: 110px;
    left: 176px;
    width: 8px;
    height: 165px;
    background: #4CAF50;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1;
}

.flower-pot {
    position: absolute;
    bottom: 0;
    left: 130px;
    width: 100px;
    height: 70px;
    background: linear-gradient(180deg, #8D6E63 0%, #6D4C41 70%, #5D4037 100%);
    border-radius: 8px 8px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 3px solid rgba(139, 110, 99, 0.8);
    border-top: 4px solid #A1887F;
}

.pot-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    line-height: 1.1;
    padding: 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Fredoka', cursive;
}

/* === NEW QUESTION STYLES === */

/* Calendar Styles */
.calendar-container {
    max-width: 600px;
    margin: 0 auto;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
}

.month-label {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A90E2;
    margin: 1rem 0 0.5rem 0;
}

.calendar-day {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: 3px solid #FF6B9D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A90E2;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.calendar-day:hover {
    background: #FF6B9D;
    color: white;
    transform: scale(1.1);
}

.calendar-day.selected {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
    transform: scale(1.15);
}

.calendar-day.due-date {
    background: #FFD700;
    border-color: #FF9800;
    border-width: 4px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: dueDatePulse 2s ease-in-out infinite;
}

.calendar-day.due-date::after {
    content: "DUE";
    position: absolute;
    bottom: -8px;
    font-size: 0.5rem;
    font-weight: 600;
    color: #FF9800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.due-date-info {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.due-date-info p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF9800;
}

/* Slider Styles */
.slider-container {
    max-width: 400px;
    margin: 2rem auto;
    text-align: center;
}

.weight-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #FF6B9D;
}

.weight-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, #FF6B9D, #4A90E2);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 1rem 0;
}

.weight-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 4px solid #4A90E2;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
}

.weight-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Text Input Styles */
.text-input-container {
    max-width: 400px;
    margin: 2rem auto;
}

.name-input {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    border: 4px solid #FF6B9D;
    border-radius: 25px;
    outline: none;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    background: white;
    font-weight: 500;
}

.name-input:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.3);
}

/* Time Picker Styles */
.time-picker-container {
    max-width: 500px;
    margin: 2rem auto;
}

.time-scrollers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.time-scroller {
    text-align: center;
}

.time-scroller label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.time-select {
    width: 100px;
    padding: 1rem;
    font-size: 1.3rem;
    border: 3px solid #FF6B9D;
    border-radius: 15px;
    outline: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-align: center;
    background: white;
    cursor: pointer;
}

.time-select:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

/* Multi-Select Styles */
.multi-select-container {
    max-width: 600px;
    margin: 2rem auto;
}

.selection-group {
    margin-bottom: 3rem;
}

.selection-group h3 {
    font-size: 1.5rem;
    color: #4A90E2;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 3px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
}

.color-option:hover {
    border-color: #FF6B9D;
    transform: translateY(-3px);
}

.color-option.selected {
    border-color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
}

.color-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Eye color circles */
.eye-green { background: #4CAF50; }
.eye-blue { background: #2196F3; }
.eye-black { background: #212121; }
.eye-brown { background: #8D6E63; }

/* Hair color circles */
.hair-blonde { background: #FDD835; }
.hair-brown { background: #8D6E63; }
.hair-bald { background: #F5F5F5; border-style: dashed; }
.hair-black { background: #212121; }

.color-option span {
    font-size: 1rem;
    font-weight: 600;
    color: #4A90E2;
}

/* Button Styles */
.next-btn, .finish-btn {
    background: linear-gradient(45deg, #FF6B9D, #FFB347);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    margin: 2rem auto 0;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.next-btn:hover, .finish-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.finish-btn {
    background: linear-gradient(45deg, #4A90E2, #64B5F6);
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
        text-shadow: 
            2px 2px 0px #FFFFFF,
            4px 4px 0px #87CEEB;
        margin-bottom: 2rem;
    }
    
    .name-form input {
        min-width: 280px;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .start-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .options-container {
        flex-direction: column;
        align-items: center;
    }
    
    .option-card {
        max-width: 250px;
        min-height: 200px;
    }
    
    .question-title {
        font-size: 2rem;
    }
    
    .calendar-day {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .time-scrollers {
        gap: 1rem;
    }
    
    .time-select {
        width: 80px;
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .flower {
        width: 140px;
        height: 180px;
    }
    
    .flower-petal {
        width: 60px;
        height: 36px;
    }
    
    /* Adjusted petal positions for tablet */
    .flower-petal:nth-child(1) { top: -30px; left: 40px; }
    .flower-petal:nth-child(2) { top: 0px; left: 80px; }
    .flower-petal:nth-child(3) { top: 40px; left: 80px; }
    .flower-petal:nth-child(4) { top: 60px; left: 40px; }
    .flower-petal:nth-child(5) { top: 40px; left: 0px; }
    .flower-petal:nth-child(6) { top: 0px; left: 0px; }
    
    .flower-center {
        width: 35px;
        height: 35px;
        top: 15px;
        left: 52px;
    }
    
    .flower-stem {
        height: 80px;
        top: 50px;
        left: 66px;
    }
    
    .flower-pot {
        width: 60px;
        height: 40px;
        left: 40px;
    }
    
    .name-form input,
    .start-btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
        line-height: 0.8;
    }
    
    .welcome-content {
        padding: 1rem;
    }
    
    .name-form input {
        min-width: 260px;
        font-size: 1rem;
    }
    
    .start-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }
    
    .question-title {
        font-size: 1.6rem;
    }
    
    .calendar-grid {
        gap: 0.3rem;
    }
    
    .calendar-day {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Fixed mobile results layout */
    #resultsScreen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .results-content {
        position: relative !important;
        width: 100% !important;
        padding: 1rem !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }
    
    .results-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        flex-shrink: 0 !important;
        display: block !important;
        visibility: visible !important;
        z-index: 1000 !important;
    }
    
    .back-to-home-btn {
        margin-bottom: 1rem !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        align-self: center !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        visibility: visible !important;
        z-index: 1000 !important;
    }
    
    .participant-count {
        margin-bottom: 1rem !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
        display: block !important;
        visibility: visible !important;
        z-index: 1000 !important;
    }
    
    .flower-garden {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3rem !important;
        padding: 0 1rem 2rem 1rem !important;
        min-height: auto !important;
        background: none !important;
        flex-shrink: 0 !important;
    }
    
    .flower {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 200px !important;
        height: 280px !important;
        margin: 0 !important;
        padding-top: 40px !important;
        transform: none !important;
    }
    
    .flower-petal {
        width: 85px;
        height: 50px;
    }
    
    /* Mobile petal positions with extra wide spacing for readability */
    .flower-petal:nth-child(1) { top: 5px; left: 57px; }
    .flower-petal:nth-child(2) { top: 45px; left: 130px; }
    .flower-petal:nth-child(3) { top: 95px; left: 130px; }
    .flower-petal:nth-child(4) { top: 125px; left: 57px; }
    .flower-petal:nth-child(5) { top: 95px; left: -15px; }
    .flower-petal:nth-child(6) { top: 45px; left: -15px; }
    
    .flower-center {
        width: 40px;
        height: 40px;
        top: 70px;
        left: 80px;
    }
    
    .flower-stem {
        height: 140px;
        top: 110px;
        left: 95px;
        width: 8px;
        z-index: 1;
    }
    
    .flower-pot {
        width: 80px;
        height: 50px;
        left: 60px;
        bottom: 0px;
        z-index: 5;
    }
    
    .petal-label {
        font-size: 0.7rem;
        font-weight: 700;
    }
    
    .petal-value {
        font-size: 0.85rem;
        font-weight: 800;
        line-height: 1.0;
    }
    
    .pot-text {
        font-size: 0.6rem;
    }
    
    .name-form input,
    .start-btn {
        min-width: 220px;
        font-size: 0.95rem;
    }
}