/* Title Screen Styles - Unity Compatible */ .title-screen-root { width: 100%; height: 100%; } .background { width: 100%; height: 100%; position: absolute; background-color: rgb(20, 20, 30); } .main-content { width: 100%; height: 100%; align-items: center; justify-content: center; flex-direction: column; padding-top: 50px; padding-bottom: 50px; padding-left: 50px; padding-right: 50px; } /* Title Section */ .title-section { align-items: center; justify-content: center; margin-bottom: 80px; flex-direction: column; } .game-title { font-size: 48px; color: rgb(255, 215, 100); -unity-font-style: bold; -unity-text-align: middle-center; margin-bottom: 10px; } .game-subtitle { font-size: 18px; color: rgb(200, 200, 200); -unity-font-style: italic; -unity-text-align: middle-center; opacity: 0.8; } /* Menu Section */ .menu-section { align-items: center; justify-content: center; flex-direction: column; margin-bottom: 60px; } .menu-button { width: 200px; height: 50px; margin-top: 8px; margin-bottom: 8px; margin-left: 8px; margin-right: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-left-width: 2px; border-right-width: 2px; border-top-width: 2px; border-bottom-width: 2px; font-size: 16px; -unity-font-style: bold; } .new-game-button { background-color: rgb(60, 120, 60); border-color: rgb(80, 160, 80); color: white; } .new-game-button:hover { background-color: rgb(80, 160, 80); border-color: rgb(100, 200, 100); } .new-game-button:active { background-color: rgb(40, 100, 40); } .load-game-button { background-color: rgb(60, 60, 120); border-color: rgb(80, 80, 160); color: white; } .load-game-button:hover { background-color: rgb(80, 80, 160); border-color: rgb(100, 100, 200); } .load-game-button:active { background-color: rgb(40, 40, 100); } .load-game-button:disabled, .disabled-button { background-color: rgb(40, 40, 40); border-color: rgb(60, 60, 60); color: rgb(120, 120, 120); opacity: 0.5; } .quit-button { background-color: rgb(120, 60, 60); border-color: rgb(160, 80, 80); color: white; } .quit-button:hover { background-color: rgb(160, 80, 80); border-color: rgb(200, 100, 100); } .quit-button:active { background-color: rgb(100, 40, 40); } /* Version Section */ .version-section { position: absolute; bottom: 20px; right: 20px; } .version-label { font-size: 12px; color: rgb(120, 120, 120); opacity: 0.7; }