/* ============================================
   GENEL STILLER VE RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* ============================================
   İLERLEME ÇUBUĞU
   ============================================ */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    position: fixed;
    top: 15px;
    right: 20px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
}

/* ============================================
   SECTION YAPISI
   ============================================ */
.section {
    min-height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   1. GİRİŞ EKRANI - GİZEMLİ KAPI
   ============================================ */
#entrance {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    box-shadow:
        100px 200px white, 200px 100px white, 300px 300px white,
        400px 150px white, 500px 250px white, 600px 100px white,
        150px 350px white, 250px 450px white, 350px 150px white,
        450px 350px white, 550px 450px white, 650px 250px white;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.door-container {
    text-align: center;
    z-index: 10;
}

.door {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 10px 10px 0 0;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    margin: 0 auto 30px;
}

.door:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.8);
}

.door-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.door-handle {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 15px;
    height: 15px;
    background: gold;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.mystery-text {
    color: white;
    font-size: 2em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.click-hint {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   2. PAROLA BÖLÜMÜ
   ============================================ */
#password {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.password-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.question {
    color: white;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#passwordInput {
    flex: 1;
    padding: 15px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#submitPassword {
    padding: 15px 40px;
    font-size: 1.2em;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

#submitPassword:hover {
    transform: scale(1.05);
}

.hint {
    color: #FFD700;
    font-size: 1.1em;
    min-height: 30px;
}

#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

/* ============================================
   3. ANA MENÜ
   ============================================ */
#mainMenu {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.welcome-title {
    color: white;
    font-size: 3em;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.welcome-subtitle {
    color: white;
    font-size: 1.5em;
    text-align: center;
    margin: 20px 0 40px;
}

.start-journey-btn {
    padding: 20px 60px;
    font-size: 1.5em;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.start-journey-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================
   4. ZAMAN TÜNELİ
   ============================================ */
#timeline {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.section-title {
    color: #333;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.timeline-container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
}

.timeline-track {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    width: 100%;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.timeline-dot {
    width: 30px;
    height: 30px;
    background: #FFD700;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
}

.timeline-card {
    width: calc(50% - 50px);
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    animation: slideInRight 0.5s ease;
    min-height: auto;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: 0;
    margin-right: auto;
    animation: slideInLeft 0.5s ease;
}

@media (max-width: 768px) {
    .timeline-track::before {
        left: 20px;
    }

    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item:hover .timeline-dot {
        transform: scale(1.3);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-card h3 {
    color: #764ba2;
    margin-bottom: 10px;
}

.timeline-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   5. ÇARKIFELEK
   ============================================ */
#wheel {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.wheel-container {
    position: relative;
    margin: 40px 0;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border: 5px solid white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    z-index: 10;
}

.spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.spin-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.wheel-result {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3em;
    color: #764ba2;
    min-height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   6. DİLEK KARTLARI
   ============================================ */
#wishTree {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    justify-content: flex-start;
    padding-top: 60px;
    overflow-y: auto;
}

.section-subtitle {
    color: #555;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.wish-card {
    background: white;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.wish-card:hover::before {
    left: 100%;
}

.wish-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.wish-icon {
    font-size: 3em;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.wish-card h3 {
    color: #764ba2;
    font-size: 1.2em;
    margin: 0;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .wishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .wishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .wish-card {
        min-height: 100px;
        padding: 15px 10px;
    }

    .wish-icon {
        font-size: 2.2em;
        margin-bottom: 6px;
    }
}

.wish-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.wish-modal.active {
    display: flex;
}

.wish-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    position: relative;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.close-wish {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
    color: #999;
}

#wishText {
    font-size: 1.3em;
    color: #764ba2;
    text-align: center;
    line-height: 1.8;
}

/* ============================================
   7. MESAJ DUVARI
   ============================================ */
#messageWall {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.wall-container {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    position: relative;
}

.post-it {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-it:nth-child(2) { background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 100%); }
.post-it:nth-child(3) { background: linear-gradient(135deg, #b2dfdb 0%, #80cbc4 100%); }
.post-it:nth-child(4) { background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%); }
.post-it:nth-child(5) { background: linear-gradient(135deg, #d1c4e9 0%, #b39ddb 100%); }
.post-it:nth-child(6) { background: linear-gradient(135deg, #c5e1a5 0%, #aed581 100%); }

.post-it:hover {
    transform: scale(1.1) rotate(0deg) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.post-it p {
    font-size: 3em;
}

.message-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.message-modal.active {
    display: flex;
}

.message-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    position: relative;
    animation: popIn 0.3s ease;
}

.close-message {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
    color: #999;
}

#messageText {
    font-size: 1.3em;
    color: #764ba2;
    text-align: center;
    line-height: 1.8;
}

/* ============================================
   8. SÜRPRİZ KUTULARI
   ============================================ */
#boxes {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.boxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
}

.gift-box {
    width: 150px;
    height: 150px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gift-box:hover {
    transform: scale(1.1);
}

.box-top {
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, #FF6B6B 0%, #C73E3E 100%);
    position: relative;
    transition: transform 0.5s ease;
}

.box-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 20px;
    background: #FFD700;
}

.box-top::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    border: 5px solid #FFD700;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

.gift-box.opened .box-top {
    transform: translateY(-50px) rotateX(-90deg);
}

.box-body {
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, #FF8E8E 0%, #E85757 100%);
    position: relative;
}

.box-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100%;
    background: #FFD700;
}

.gift-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gift-modal.active {
    display: flex;
}

.gift-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    animation: popIn 0.3s ease;
}

.close-gift {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
    color: #999;
}

#giftContent {
    text-align: center;
    font-size: 1.3em;
    color: #764ba2;
}

/* ============================================
   9. FİNAL - DOĞUM GÜNÜ PARTİSİ
   ============================================ */
#finale {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.finale-container {
    text-align: center;
    z-index: 10;
}

.finale-title {
    color: white;
    font-size: 2.5em;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.cake-container {
    margin: 80px 0 40px;
}

.cake {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #FF69B4 0%, #FFB6C1 100%);
    border-radius: 20px 20px 60px 60px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cake::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background: #FFD700;
    border-radius: 10px;
}

.candle {
    position: absolute;
    width: 15px;
    height: 60px;
    background: linear-gradient(135deg, #FFE4B5 0%, #F0E68C 100%);
    top: -60px;
}

.candle:nth-child(1) { left: 30%; }
.candle:nth-child(2) { left: 50%; transform: translateX(-50%); }
.candle:nth-child(3) { right: 30%; }

.flame {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: radial-gradient(circle, #FFD700 0%, #FF4500 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 0.5s infinite;
}

@keyframes flicker {
    0%, 100% { transform: translateX(-50%) scaleY(1); }
    50% { transform: translateX(-50%) scaleY(1.2); }
}

.candle.blown-out .flame {
    display: none;
}

.blow-btn {
    padding: 20px 60px;
    font-size: 1.5em;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.blow-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.final-message {
    margin-top: 50px;
}

.final-message.hidden {
    display: none;
}

.big-text {
    color: #FFD700;
    font-size: 3em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    animation: rainbow 3s infinite;
}

@keyframes rainbow {
    0% { color: #FFD700; }
    25% { color: #FF69B4; }
    50% { color: #87CEEB; }
    75% { color: #98FB98; }
    100% { color: #FFD700; }
}

.finale-wishes {
    color: white;
    font-size: 1.5em;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.finale-letter {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: #333;
    line-height: 1.8;
    text-align: left;
}

.finale-letter p {
    margin: 8px 0;
    font-size: 1.1em;
}

.finale-letter strong {
    color: #764ba2;
    font-size: 1.2em;
}

#fireworksCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* ============================================
   NEXT BUTTON
   ============================================ */
.next-btn {
    padding: 15px 40px;
    font-size: 1.2em;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.next-btn.hidden {
    display: none;
}

/* ============================================
   FLOATING HEARTS
   ============================================ */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.heart {
    position: absolute;
    font-size: 2em;
    animation: floatUp 5s linear;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        bottom: -50px;
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(100px);
    }
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .welcome-title {
        font-size: 2em;
    }

    .door {
        width: 150px;
        height: 250px;
    }

    .mystery-text {
        font-size: 1.5em;
    }

    .question {
        font-size: 1.3em;
    }

    .input-group {
        flex-direction: column;
    }

    .tree-container {
        width: 100%;
    }

    .boxes-container {
        gap: 20px;
    }

    .gift-box {
        width: 120px;
        height: 120px;
    }

    .wall-container {
        height: 400px;
    }

    .post-it {
        width: 100px;
        height: 100px;
    }

    #wheelCanvas {
        width: 350px;
        height: 350px;
    }

    .cake {
        width: 250px;
        height: 150px;
    }

    .big-text {
        font-size: 2em;
    }

    .finale-letter {
        padding: 25px;
        max-width: 90%;
    }

    .finale-letter p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 20px 10px;
    }

    .welcome-title {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .password-container {
        padding: 30px 20px;
    }

    #wheelCanvas {
        width: 280px;
        height: 280px;
    }

    .spin-btn {
        width: 80px;
        height: 80px;
        font-size: 1em;
    }
}
