.pause-menu-root { width: 100%; height: 100%; justify-content: center; align-items: center; position: absolute; } .pause-menu-blur { position: absolute; width: 100%; height: 100%; background-color: rgba(30,30,30,0.6); backdrop-filter: blur(8px); z-index: 0; } .pause-menu-panel { min-width: 600px; min-height: 500px; background-color: rgba(40,40,40,0.95); border-radius: 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); padding: 32px 48px; display: flex; flex-direction: row; align-items: flex-start; z-index: 1; } .pause-menu-title { font-size: 32px; color: #ffd700; margin-bottom: 32px; font-weight: bold; letter-spacing: 2px; } .pause-menu-buttons { display: flex; flex-direction: column; gap: 16px; flex: 1; } .pause-menu-btn { width: 320px; height: 48px; font-size: 18px; background-color: #a44; color: #fff; border-radius: 8px; transition: background-color 0.2s, transform 0.2s; font-weight: 600; border: none; box-shadow: 0 2px 8px rgba(0,0,0,0.15); } .pause-menu-btn:hover { background-color: #d55; transform: scale(1.04); } .pause-menu-btn:active { background-color: #822; transform: scale(0.98); } .pause-menu-side { display: flex; flex-direction: column; gap: 16px; margin-left: 32px; align-items: flex-end; } .pause-menu-side-btn { width: 180px; height: 40px; font-size: 16px; background-color: #444; color: #fff; border-radius: 8px; transition: background-color 0.2s, transform 0.2s; font-weight: 500; border: none; box-shadow: 0 2px 8px rgba(0,0,0,0.10); } .pause-menu-side-btn:hover { background-color: #666; transform: scale(1.05); } .pause-menu-side-btn:active { background-color: #222; transform: scale(0.97); }