/* style.css (Updated) */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

:root {
    --primary-color: #00ff41; /* Bright Green */
    --background-color: #0a0a0a;
    --terminal-bg: #0d0d0d;
    --text-color: #e0e0e0;
    --border-color: #333;
    --accent-color: #9d4edd; /* Beautiful Purple for gems */
    --error-color: #ff4154; /* Red for errors */
    --success-color: #4CAF50; /* A clear green for success */
    --warning-color: #ffb703; /* A gold/orange color for narration/warnings */
    --black-sphere-color: #3d3d3d; /* Color for black spheres and casino */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Fira Code', monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden; /* Prevent body scroll */
    background-image:
        radial-gradient(var(--border-color) 1px, transparent 1px),
        radial-gradient(var(--border-color) 1px, var(--background-color) 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.app-container {
    display: flex;
    flex: 1; /* Take up all available space except footer */
    padding: 10px;
    gap: 10px;
    overflow: hidden;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    gap: 10px;
}

.terminal {
    background-color: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    cursor: text;
}

.terminal-header {
    background-color: var(--border-color);
    color: var(--primary-color);
    padding: 5px 10px;
    margin: -10px -10px 10px -10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: bold;
    text-shadow: 0 0 5px var(--primary-color);
}

.terminal-body {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 0.9em;
    padding-right: 5px;
}

.terminal-body p {
    margin-bottom: 5px;
    word-wrap: break-word;
}

.terminal-body .command-echo { color: var(--primary-color); }
.terminal-body .command-output { color: var(--text-color); padding-left: 10px; }
.terminal-body .command-success { color: var(--success-color); padding-left: 10px; }
.terminal-body .command-error { color: var(--error-color); }
.terminal-body .info-message { color: var(--accent-color); font-style: italic; }

#ai-terminal .terminal-body p { color: var(--primary-color); }
#ai-terminal .terminal-body .ai-narration { color: var(--warning-color); }
#ai-terminal .terminal-body .user-name-echo { color: var(--text-color); }
#ai-terminal .terminal-body .system-reboot { color: var(--error-color); font-weight: bold; font-size: 1.2em; text-align: center; }
#ai-terminal .terminal-body .vali-narration { color: var(--warning-color); font-style: normal; }
#ai-terminal .terminal-body .gemma-narration { color: var(--error-color); font-weight: bold; }


.terminal-input-line { display: flex; align-items: center; margin-top: 5px; }
.prompt { color: var(--primary-color); font-weight: bold; white-space: nowrap; }
.terminal-input { flex-grow: 1; background: none; border: none; color: var(--text-color); font-family: 'Fira Code', monospace; font-size: 1em; margin-left: 8px; }
.terminal-input:focus { outline: none; }

/* --- Stats and Mission Container Styles --- */
.stats-mission-container {
    height: 200px; /* This height will be a flex-basis */
    background-color: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    font-size: 1em;
    color: var(--text-color);
    overflow: auto;
}

.stats-header {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 5px var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    font-size: 1.1em;
    flex-shrink: 0;
}

/* Base state for all views inside the container */
#stats-view, #mission-prompt-view, #mission-progress-view, #puzzle-timer-view, #mission-4-prompt-view, #mission-6-prompt-view, #post-mission-5-puzzle-view, #final-mission-prompt-view {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

#stats-view { gap: 15px; }

.stat-item { display: flex; justify-content: space-between; padding: 0 10px; }
.stat-item span:last-child { color: var(--primary-color); font-weight: bold; }

/* --- Mission, Puzzle & Prompt Views --- */
#mission-prompt-view, #mission-progress-view, #puzzle-timer-view, #mission-4-prompt-view, #mission-6-prompt-view, #post-mission-5-puzzle-view, #final-mission-prompt-view {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mission-description { font-style: italic; margin-bottom: 8px; font-size: 0.9em; }
.mission-cost { color: var(--accent-color); font-weight: bold; margin-bottom: 12px; }

/* Mission 1 Prompt Compact Styling */
#mission-prompt-view {
    padding: 0 10px;
    justify-content: center;
}
#mission-prompt-view .mission-description {
    font-size: 0.85em;
    margin-bottom: 6px;
    line-height: 1.4;
}
#mission-prompt-view .mission-cost {
    margin-bottom: 8px;
    font-size: 0.9em;
}
#mission-prompt-view .mission-button {
    margin-top: 4px;
}


.mission-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    font-family: 'Fira Code', monospace;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
    font-size: 1em;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.mission-button:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: var(--terminal-bg);
    box-shadow: 0 0 10px var(--primary-color);
}
.mission-button:disabled {
    border-color: var(--border-color);
    color: var(--border-color);
    cursor: not-allowed;
}

/* --- Mission Progress Bar --- */
.progress-bar-container { width: 90%; height: 20px; background-color: var(--border-color); border-radius: 10px; margin-top: 10px; border: 1px solid #444; }
.progress-bar { width: 0%; height: 100%; background-color: var(--accent-color); border-radius: 10px; transition: width 1s linear; box-shadow: 0 0 10px var(--accent-color); }
#mission-timer { margin-top: 10px; font-size: 1.1em; color: var(--primary-color); }
#mission-complete-message { font-size: 1.5em; font-weight: bold; color: var(--success-color); text-shadow: 0 0 10px var(--success-color); animation: pulse 1.5s infinite; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.mission-controls { display: flex; gap: 10px; margin-top: auto; }
.instant-finish { font-size: 0.8em; padding: 6px 10px; border-color: var(--warning-color); color: var(--warning-color); }
.instant-finish:hover:not(:disabled) { background-color: var(--warning-color); color: var(--terminal-bg); box-shadow: 0 0 10px var(--warning-color); }

/* --- Puzzle Timer Views (Generic & Compacted) --- */
#puzzle-timer-view, #post-mission-5-puzzle-view {
    padding: 0 15px;
}
.puzzle-header {
    color: var(--error-color);
    text-shadow: 0 0 8px var(--error-color);
}
.puzzle-description {
    font-style: italic;
    color: var(--text-color);
    font-size: 0.85em; /* Smaller */
    margin-bottom: 12px;
    line-height: 1.4;
}
.puzzle-timer-display {
    font-size: 2.2em; /* Smaller */
    font-weight: 700;
    color: var(--error-color);
    text-shadow: 0 0 5px var(--error-color);
    animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.puzzle-attempts {
    color: var(--warning-color);
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1em;
}

#post-mission-5-puzzle-view .puzzle-timer-display {
    font-size: 1.8em; /* Slightly smaller for this specific puzzle */
}
#post-mission-5-puzzle-view .puzzle-description {
    font-size: 0.8em;
    margin-bottom: 6px;
}


/* --- Mission 4 Specifics (Further Compacted) --- */
#mission-4-prompt-view {
    justify-content: center;
    overflow: hidden;
    padding: 0 15px;
}
#mission-4-header {
    margin-bottom: 5px;
    font-size: 1.0em;
    padding-bottom: 5px;
}
.mission-4-riddle-text {
    font-size: 0.8em;
    margin-bottom: 4px;
    line-height: 1.3;
}
#mission-4-prompt-timer {
    font-size: 1.4em; /* Smaller timer */
    margin: 2px 0; /* Reduced vertical margin */
}
.mission-4-controls {
    display: flex;
    gap: 8px; /* Smaller gap */
    margin-top: 5px; /* Reduced */
}
.mission-4-controls .mission-button {
    font-size: 0.8em;
    padding: 6px 8px;
}

/* --- Mission 6 (Endgame) & Final Mission Specifics --- */
.mission-6-controls {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
#mission-6-prompt-view .puzzle-description,
#final-mission-prompt-view .puzzle-description {
    font-size: 0.8em;
    margin-bottom: 4px;
}
#mission-6-prompt-view .mission-description,
#final-mission-prompt-view .mission-description {
    font-size: 0.8em;
    margin-bottom: 2px;
}
#mission-6-prompt-timer,
#final-mission-prompt-timer {
    font-size: 1.5em; /* Smaller timer */
    margin: 4px 0;
}


/* --- Right Column Resource Panes --- */
.resource-container {
    height: 200px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.casino-container, .gem-display-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 8px;
    text-align: center;
}

.casino-container {
    gap: 4px; /* Adjusted for fitting */
}

.gem-display-container {
    gap: 5px;
}

.casino-header {
    font-weight: bold;
    color: var(--warning-color);
    text-shadow: 0 0 5px var(--warning-color);
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    margin-bottom: 2px;
    font-size: 1.0em;
}

.black-sphere-display {
    color: var(--text-color);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.black-sphere-visual {
    font-size: 1.6em;
    color: var(--black-sphere-color);
    text-shadow: 0 0 8px #000;
}
.black-sphere-visual-small {
    font-size: 1em;
    color: var(--black-sphere-color);
    vertical-align: middle;
}
#black-sphere-count {
    font-weight: bold;
    color: var(--primary-color);
}
.casino-info {
    font-size: 0.75em;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

.casino-buttons {
    display: flex;
    flex-direction: row; /* UPDATED: side-by-side buttons */
    gap: 8px; /* UPDATED: space between buttons */
    width: 100%;
    justify-content: center; /* UPDATED: center the buttons */
    align-items: center;
    margin-top: 4px;
}

.casino-container .mission-button {
    width: auto; /* UPDATED: auto width */
    flex-grow: 1; /* UPDATED: allow buttons to grow */
    padding: 6px 5px; /* UPDATED: adjusted padding */
    font-size: 0.75em; /* UPDATED: smaller font */
    margin: 0;
}

#spin-roulette-btn {
    border-color: var(--warning-color);
    color: var(--warning-color);
}
#spin-roulette-btn:hover:not(:disabled) {
    background-color: var(--warning-color);
    color: var(--terminal-bg);
    box-shadow: 0 0 10px var(--warning-color);
}

.cooldown-timer-text {
    font-size: 0.7em;
    color: var(--warning-color);
    height: 12px; /* Reserve space to prevent layout shift */
    margin-top: 2px;
}

.resource-name {
    font-size: 0.9em;
    color: var(--accent-color);
}

.gem-display-container .resource-name {
    font-size: 1.1em;
}

#gem-icon { font-size: 2em; text-shadow: 0 0 15px var(--accent-color); }
#gem-count { font-weight: bold; font-size: 1.5em; margin: 0 5px; }
.swap-button {
    font-size: 0.8em;
    padding: 6px 10px;
}

/* Footer */
.footer-controls { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 20px; background-color: var(--background-color); border-top: 1px solid var(--border-color); flex-shrink: 0; }
.game-title-container { display: flex; flex-direction: column; }
.game-title { font-size: 1.5em; color: var(--primary-color); text-shadow: 0 0 2px var(--primary-color), 0 0 8px var(--accent-color); font-weight: 700; white-space: nowrap; }
.age-rating { display: flex; align-items: center; margin-top: 4px; }
.eighteen-plus-symbol { background-color: var(--error-color); color: white; border-radius: 50%; width: 22px; height: 22px; display: flex; justify-content: center; align-items: center; font-size: 10px; font-weight: bold; flex-shrink: 0; }
.age-warning { font-size: 9px; color: #888; margin-left: 8px; white-space: nowrap; }
.footer-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;}
.footer-controls button { background-color: var(--terminal-bg); color: var(--primary-color); border: 1px solid var(--primary-color); padding: 8px 12px; font-family: 'Fira Code', monospace; cursor: pointer; border-radius: 3px; transition: background-color 0.2s, color 0.2s; text-shadow: 0 0 3px var(--primary-color); margin: 0; font-size: 0.8em;}
.footer-controls button:hover { background-color: var(--primary-color); color: var(--terminal-bg); }
.copyright { color: #888; font-size: 0.8em; }
.hidden-word { color: var(--background-color); font-size: 0.8em; }


/* Modal Styling */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; z-index: 1000; backdrop-filter: blur(5px); }
.modal-content { background-color: var(--terminal-bg); padding: 30px; border-radius: 5px; border: 1px solid var(--primary-color); text-align: center; box-shadow: 0 0 20px var(--primary-color); position: relative; }
.modal-content p { margin-bottom: 20px; font-size: 1.2em; }
.modal-buttons { display: flex; justify-content: center; gap: 20px; }
.modal-buttons button { margin: 0; padding: 10px 20px; }
.master-key-input-field { background-color: #222; border: 1px solid var(--primary-color); color: var(--text-color); padding: 10px; width: 90%; text-align: center; font-family: 'Fira Code', monospace; margin-bottom: 20px; }
.master-key-input-field:focus { outline: none; box-shadow: 0 0 10px var(--primary-color); }

/* Generic Large Modal Content Panes */
.how-to-play-content, .save-slots-content {
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: left;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: var(--border-color);
    border-bottom: 1px solid var(--primary-color);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.modal-header h2 {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    font-size: 1.3em;
}
.close-button {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2.5em;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}
.close-button:hover {
    color: var(--error-color);
}
.modal-body {
    padding: 20px 25px;
    overflow-y: auto;
}
.modal-footer {
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* How to Play Specifics */
.how-to-play-content .modal-body h3 {
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}
.how-to-play-content .modal-body p, .how-to-play-content .modal-body li {
    font-size: 0.9em;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 12px;
}
.how-to-play-content .modal-body ol {
    list-style-position: inside;
    padding-left: 10px;
}
.how-to-play-content .modal-body li {
    margin-bottom: 10px;
}
.how-to-play-content .modal-body strong {
    color: var(--primary-color);
    font-weight: normal;
}
.how-to-play-content .modal-body em {
    color: var(--warning-color);
    font-style: italic;
}


/* Save Slots Modal Specifics */
#save-slots-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.save-slot-item {
    background-color: #121212;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.save-slot-info {
    flex-grow: 1;
}
.save-slot-info .save-time {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1em;
    margin-bottom: 4px;
}
.save-slot-info .save-details {
    font-size: 0.8em;
    color: #aaa;
    font-style: italic;
}
.save-slot-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.save-slot-actions .mission-button {
    font-size: 0.8em;
    padding: 6px 10px;
    margin: 0;
}
.save-slot-actions .delete-btn {
    border-color: var(--error-color);
    color: var(--error-color);
}
.save-slot-actions .delete-btn:hover {
    background-color: var(--error-color);
    color: var(--terminal-bg);
    box-shadow: 0 0 8px var(--error-color);
}


/* Video Modal */
#video-modal .video-modal-content {
    background-color: #000;
    border: 15px solid #282828;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4), inset 0 0 20px rgba(40, 40, 40, 0.6);
    width: 90%;
    max-width: 960px;
    position: relative;
}
#video-modal .mission-video-player {
    width: 100%;
    display: block;
    border-radius: 2px;
}

/* Notification Toast Styling */
.notification-toast { position: fixed; bottom: -100px; /* Start off-screen */ left: 50%; transform: translateX(-50%); background-color: var(--primary-color); color: var(--terminal-bg); padding: 12px 25px; border-radius: 5px; z-index: 1001; opacity: 0; transition: opacity 0.3s ease-out, bottom 0.4s ease-out; animation: fadeOut 3s forwards; }
.notification-toast.show {
    bottom: 30px;
    opacity: 1;
    animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
    0% { bottom: -100px; opacity: 0; }
    15% { bottom: 30px; opacity: 1; }
    85% { bottom: 30px; opacity: 1; }
    100% { bottom: -100px; opacity: 0; }
}

/* Mute Button State */
#mute-toggle-btn.muted {
    border-color: var(--error-color);
    color: var(--error-color);
    text-shadow: none;
}
#mute-toggle-btn.muted:hover {
    background-color: var(--error-color);
    color: var(--terminal-bg);
}

/* Greed Message Overlay */
.greed-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    color: var(--error-color);
    font-size: 6vw; /* Responsive font size */
    font-weight: 700;
    text-shadow: 0 0 25px var(--error-color);
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Game Over and License Overlays */
.game-over-overlay-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    font-size: 8vw; /* Responsive font size */
    font-weight: 700;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.license-overlay-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.license-content {
    background-color: var(--terminal-bg);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Fira Code', monospace;
    text-align: center;
}

.license-content p {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.license-content p:first-child {
    color: var(--primary-color);
    font-weight: bold;
}

.license-timer-custom {
    margin-top: 20px;
    font-size: 1.8em;
    color: var(--warning-color);
    font-weight: bold;
}

/* --- ** NEW/MODIFIED ** Simplified Spin Result Display --- */
#roulette-overlay {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.spin-result-container {
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border: 5px solid #444;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(0,0,0,0.9);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spin-result-display {
    font-family: 'Fira Code', monospace;
    font-weight: 700;
    font-size: 4em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

/* Result-specific styles */
.spin-result-display.result-jackpot {
    color: var(--accent-color);
    text-shadow: 0 0 25px var(--accent-color), 0 0 10px white;
    animation: pulse 1s infinite;
}

.spin-result-display.result-win-back {
    color: var(--success-color);
    text-shadow: 0 0 20px var(--success-color);
}

.spin-result-display.result-small-win {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.spin-result-display.result-lose {
    color: var(--error-color);
    text-shadow: 0 0 15px var(--error-color);
}

.spin-result-display.result-spinning {
    color: var(--warning-color);
    text-shadow: 0 0 10px var(--warning-color);
    animation: pulse-red 1.5s infinite;
}


/* Responsive adjustments */
@media (max-width: 1024px) { /* Adjust breakpoint for better control */
    .footer-controls { 
        flex-direction: column; 
        padding: 15px; 
        text-align: center; 
    }
    .game-title-container {
        order: 1; /* Title first */
        align-items: center; /* Center title and warning */
        margin-bottom: 15px;
    }
    .footer-buttons { 
        order: 2; /* Buttons second */
        justify-content: center; 
    }
    .copyright { 
        order: 3; /* Copyright last */
        margin-top: 15px; 
    }
}


@media (max-width: 768px) {
    body { overflow: auto; }
    .app-container { flex-direction: column; height: auto; }
    .resource-container {
        flex-direction: column; /* Stack on small screens */
        height: auto;
    }
    .greed-message-overlay { font-size: 10vw; } /* Make text bigger on smaller screens */
    .game-over-overlay-custom { font-size: 12vw; }
    .license-content p { font-size: 1em; }
    .save-slot-item { flex-direction: column; align-items: stretch; text-align: center; }
    .save-slot-actions { justify-content: center; margin-top: 10px; }
    
    .spin-result-container {
        width: 95vw;
        padding: 20px;
    }
    .spin-result-display {
        font-size: 3em;
    }
}