* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: #1a1a1a;
    font-family: 'Georgia', serif;
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/fondo_game.png') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#menu h1 {
    color: #8b8b8b;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
    letter-spacing: 0.3rem;
}

#languageSelector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

#languagePrompt {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

#languageButtons {
    display: flex;
    gap: 1rem;
}

.lang-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    background: transparent;
    border: 2px solid #444;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    border-radius: 4px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #666;
    color: #999;
}

.lang-btn.selected {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd700;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

#menu button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    border: 1px solid #555;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    margin: 0.5rem;
}

#menu button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: #888;
    color: #aaa;
}

#menu button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#menu.paused h1::after {
    content: ' - Pausa';
    font-size: 1.5rem;
}

#gameContainer {
    width: 100vw;
    height: 100vh;
}

#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 50;
    display: none;
}

#eyelidTop, #eyelidBottom {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50%;
    background: #000;
    pointer-events: none;
    z-index: 60;
    display: none;
}

#eyelidTop {
    top: 0;
}

#eyelidBottom {
    bottom: 0;
}

#promptText {
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    pointer-events: none;
    z-index: 70;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

#subtitleText {
    position: fixed;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(200, 200, 200, 0.9);
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    pointer-events: none;
    z-index: 70;
    opacity: 0;
    transition: opacity 0.8s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    text-align: center;
    max-width: 80%;
}

#questNotification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-left: 3px solid #c9a227;
    padding: 15px 20px;
    pointer-events: none;
    z-index: 70;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-width: 350px;
}

#questNotification.show {
    opacity: 1;
    transform: translateX(0);
}

#questTitle {
    color: #c9a227;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

#questText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

canvas {
    display: block;
}


#curtainTop, #curtainBottom {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50%;
    background: #000;
    pointer-events: none;
    z-index: 80;
    transition: transform 1s ease-in-out;
}

#curtainTop {
    top: 0;
    transform: translateY(-100%);
}

#curtainBottom {
    bottom: 0;
    transform: translateY(100%);
}

#curtainTop.closed {
    transform: translateY(0);
}

#curtainBottom.closed {
    transform: translateY(0);
}

#transitionText {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    pointer-events: none;
    z-index: 85;
    opacity: 0;
    transition: opacity 0.8s ease;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    text-align: center;
}

#monitorText {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff00;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
    pointer-events: none;
    z-index: 75;
    opacity: 0;
    text-shadow: 0 0 10px #00ff00;
    text-align: left;
    min-width: 200px;
}


#phoneScreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 500px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 30px;
    border: 3px solid #333;
    padding: 40px 20px 30px 20px;
    pointer-events: none;
    z-index: 90;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#phoneScreen.show {
    opacity: 1;
    pointer-events: auto;
}

#phoneTime {
    color: #fff;
    font-size: 4rem;
    font-weight: 200;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 5px;
}

#phoneDate {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 30px;
}

#phoneNotifications {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 5px;
}

#phoneNotifications::-webkit-scrollbar {
    width: 4px;
}

#phoneNotifications::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

#phoneNotifications::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

#phoneNotifications::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

#phonePrompt {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-family: 'Segoe UI', sans-serif;
    margin-top: auto;
    padding-top: 15px;
}

.phone-notification {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    gap: 12px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notif-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-sender {
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

.notif-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.3;
}

.notif-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-family: 'Segoe UI', sans-serif;
    align-self: flex-end;
}


/* Choice Screen */
#choiceScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.choice-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
}

.choice-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid #555;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    margin: 0.5rem;
    min-width: 300px;
}

.choice-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
    color: #fff;
}

/* Phone Call Screen */
#phoneCallScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.call-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.call-text {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', sans-serif;
}

.call-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.call-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background: #25D366;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #128C7E;
}

/* Dialogue Screen */
#dialogueScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 2rem;
}

#dialogueSpeaker {
    color: #c9a227;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

#dialogueText {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
    min-height: 100px;
}

#dialoguePrompt {
    position: absolute;
    bottom: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-family: 'Georgia', serif;
}

/* Regret Screen */
#regretScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 100px;
    z-index: 85;
}

#regretText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Moral Screen */
#moralScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 2rem;
}

#moralText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-family: 'Georgia', serif;
    text-align: center;
    max-width: 700px;
    line-height: 1.8;
}

#continueBtn {
    margin-top: 3rem;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid #555;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

#continueBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
    color: #fff;
}

/* Credits Screen */
#creditsScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.credits-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    margin: 0.5rem 0;
}

.credits-author {
    color: #c9a227;
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    margin: 1rem 0;
}

.credits-site {
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin: 1rem 0 3rem 0;
}

#restartBtn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid #555;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

#restartBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
    color: #fff;
}

/* Finals Counter */
#finalsCounter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-top: 2rem;
    font-family: 'Georgia', serif;
}

/* Choice Overlay */
#choiceOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 95;
}

#choiceQuestion {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-family: 'Georgia', serif;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

#choiceButtons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.choice-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    min-width: 350px;
}

.choice-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
    color: #fff;
}

/* Message Overlay */
#messageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 95;
}

#messageBubble {
    background: #25D366;
    padding: 20px 30px;
    border-radius: 20px;
    max-width: 400px;
}

#messageText {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.5;
}

/* Call Overlay */
#callOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d0d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 95;
}

#callIcon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: callPulse 1.5s infinite;
}

@keyframes callPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

#callerName {
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 0.5rem;
}

#callStatus {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-family: 'Segoe UI', sans-serif;
}

/* Ending Overlay */
#endingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 2rem;
}

#endingText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    text-align: center;
    max-width: 700px;
    line-height: 1.8;
    min-height: 100px;
}

#endingPrompt {
    position: absolute;
    bottom: 50px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-family: 'Georgia', serif;
}

/* Moral Overlay */
#moralOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 2rem;
}

#moralText {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: center;
    max-width: 650px;
    line-height: 2;
}

#moralPrompt {
    position: absolute;
    bottom: 50px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-family: 'Georgia', serif;
}


/* Click to Lock Overlay */
#clickToLockOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 92;
    cursor: pointer;
}

#clickToLockText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}


/* Idle Game Overlay */
#idleGameOverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 260px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    border-radius: 8px;
    border: 2px solid #8b5cf6;
    z-index: 75;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

#idleGameContainer {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 8px;
    gap: 8px;
    overflow: hidden;
}

#idleGameLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 5px;
}

#idleGameHeader {
    text-align: center;
}

#cakeCountContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#cakeCount {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Segoe UI', sans-serif;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

#cakeEmoji {
    font-size: 1.2rem;
}

#idleStats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

#cakesPerSecond, #cakesPerClick {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Segoe UI', sans-serif;
}

#cakesPerClick {
    color: #a78bfa;
}

#cakeArea {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#cakeButton {
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.1s ease;
    user-select: none;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

#cakeButton:hover {
    transform: scale(1.1);
}

#cakeButton:active, #cakeButton.clicked {
    transform: scale(0.9);
}

#idleGameShop {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 140px;
    height: 100%;
    overflow: visible;
    padding-right: 0;
}

.shopTitle {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    padding: 2px 0;
}

.shopItem {
    background: rgba(139, 92, 246, 0.2);
    padding: 4px 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    border: 1px solid rgba(139, 92, 246, 0.3);
    min-height: 32px;
}

.shopItem:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.shopItem.cantAfford {
    opacity: 0.4;
    cursor: not-allowed;
}

.shopItem.cantAfford:hover {
    background: rgba(139, 92, 246, 0.2);
}

.shopKey {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.shopIcon {
    font-size: 0.9rem;
}

.shopInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shopName {
    font-size: 0.7rem;
    font-weight: 600;
}

.shopDesc {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.shopRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.shopCost {
    color: #fbbf24;
    font-weight: bold;
    font-size: 0.65rem;
}

.shopOwned {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 5px;
    border-radius: 6px;
}

/* Animación de +1 flotante */
.floatingNumber {
    position: absolute;
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    pointer-events: none;
    animation: floatUp 0.8s ease-out forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
}


/* Botones de final */
.ending-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    margin-top: 2rem;
}

.ending-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
    color: #fff;
}

#endingContinueBtn, #moralExitBtn {
    position: absolute;
    bottom: 80px;
}
