Spaces:
Sleeping
Sleeping
| /* Global Styles - Darkmedia-x Brand - STRICT BLACK & RED & GREY */ | |
| :root { | |
| --bg-deep: #000000; | |
| --bg-panel: #050505; | |
| --bg-card: #080808; | |
| --accent-red: #cc0000; /* Blood Red */ | |
| --accent-red-bright: #ff0000; | |
| --accent-red-glow: rgba(204, 0, 0, 0.4); | |
| --accent-red-dark: #220000; | |
| --text-main: #e0e0e0; /* Brighter grey for better readability */ | |
| --text-secondary: #aaaaaa; | |
| --text-muted: #666666; | |
| --border-color: #1a1a1a; /* Subtle dark border */ | |
| --border-accent: #330000; /* Red-tinted border */ | |
| --border-hover: #cc0000; | |
| --success: #00cc66; /* Green for success */ | |
| --warning: #ffcc00; /* Yellow for warning */ | |
| --error: #ff3333; /* Brighter red for error */ | |
| --info: #0099ff; /* Blue for info */ | |
| --glass-bg: rgba(10, 10, 10, 0.7); | |
| --glass-border: rgba(255, 255, 255, 0.05); | |
| --glass-blur: blur(12px); | |
| } | |
| * { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| html, body { | |
| height: 100%; | |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; | |
| background: #000000; | |
| color: var(--text-main); | |
| overflow: hidden; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| /* Scrollbar - Minimal & Sharp */ | |
| ::-webkit-scrollbar { width: 8px; height: 8px; } | |
| ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); } | |
| ::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; border: 2px solid transparent; background-clip: content-box; } | |
| ::-webkit-scrollbar-thumb:hover { background: var(--accent-red); border: 2px solid transparent; background-clip: content-box; } | |
| /* Glassmorphism Utilities */ | |
| .glass-panel { | |
| background: var(--glass-bg); | |
| backdrop-filter: var(--glass-blur); | |
| -webkit-backdrop-filter: var(--glass-blur); | |
| border: 1px solid var(--glass-border); | |
| } | |
| /* Global PrimeVue overrides */ | |
| .p-button.p-button-primary { | |
| background: var(--accent-red); | |
| border-color: var(--accent-red); | |
| color: #fff ; /* Changed from black to white for better contrast on red */ | |
| font-weight: 700; | |
| text-transform: uppercase; | |
| letter-spacing: 0.05rem; | |
| box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2); | |
| transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| .p-button.p-button-primary:hover { | |
| background: var(--accent-red-bright); | |
| border-color: var(--accent-red-bright); | |
| box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4); | |
| transform: translateY(-1px); | |
| } | |
| .p-button.p-button-secondary { | |
| background: rgba(255, 255, 255, 0.03) ; | |
| border-color: var(--border-color) ; | |
| color: var(--text-main) ; | |
| } | |
| .p-button.p-button-secondary:hover { | |
| background: rgba(255, 255, 255, 0.07) ; | |
| border-color: var(--text-muted) ; | |
| } | |
| .p-inputtext { | |
| background: #080808 ; | |
| border: 1px solid var(--border-color) ; | |
| color: #ffffff ; | |
| padding: 0.6rem 0.9rem; | |
| border-radius: 6px; | |
| transition: all 0.2s ease; | |
| } | |
| .p-inputtext:focus { | |
| border-color: var(--accent-red) ; | |
| box-shadow: 0 0 0 2px var(--accent-red-glow) ; | |
| } | |
| .p-card { | |
| background: var(--bg-card) ; | |
| border: 1px solid var(--border-color) ; | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) ; | |
| border-radius: 12px ; | |
| overflow: hidden; | |
| } | |
| .p-card .p-card-body { | |
| padding: 2rem ; | |
| } | |
| .p-card-title { | |
| color: var(--text-main) ; | |
| font-weight: 700 ; | |
| font-size: 1.1rem ; | |
| } | |
| .p-dialog { | |
| background: #0a0a0a ; | |
| border: 1px solid var(--border-color) ; | |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) ; | |
| border-radius: 16px ; | |
| } | |
| .p-dialog-header, .p-dialog-content, .p-dialog-footer { | |
| background: transparent ; | |
| } | |
| .p-dialog-header { | |
| border-bottom: 1px solid var(--border-color) ; | |
| padding: 1.5rem ; | |
| } | |
| .p-dialog-content { | |
| padding: 1.5rem ; | |
| } | |
| .p-dialog-footer { | |
| border-top: 1px solid var(--border-color) ; | |
| padding: 1rem 1.5rem ; | |
| } | |
| .p-dialog .p-dialog-header .p-dialog-title { | |
| font-weight: 900 ; | |
| text-transform: uppercase; | |
| letter-spacing: 0.2rem; | |
| } | |
| .p-dialog .p-dialog-header-icons .p-dialog-header-icon { | |
| color: var(--text-muted) ; | |
| } | |
| .p-dialog .p-dialog-header-icons .p-dialog-header-icon:hover { | |
| color: var(--accent-red) ; | |
| background: rgba(255, 255, 255, 0.05) ; | |
| } | |
| /* --- STRICT GRID SYSTEM & LAYOUT UTILITIES --- */ | |
| .flex { display: flex ; } | |
| .d-flex { display: flex ; } | |
| .d-none { display: none ; } | |
| .flex-column { flex-direction: column ; } | |
| .flex-grow-1 { flex-grow: 1 ; } | |
| .items-center { align-items: center ; } | |
| .items-start { align-items: flex-start ; } | |
| .items-end { align-items: flex-end ; } | |
| .align-center { align-items: center ; } | |
| .align-start { align-items: flex-start ; } | |
| .align-end { align-items: flex-end ; } | |
| .align-baseline { align-items: baseline ; } | |
| .justify-center { justify-content: center ; } | |
| .justify-start { justify-content: flex-start ; } | |
| .justify-end { justify-content: flex-end ; } | |
| .justify-between { justify-content: space-between ; } | |
| .fill-height { height: 100% ; } | |
| .w-full { width: 100% ; } | |
| /* Spacing System (Symmetric & Constant) */ | |
| .pa-1 { padding: 0.25rem ; } | |
| .pa-2 { padding: 0.5rem ; } | |
| .pa-3 { padding: 0.75rem ; } | |
| .pa-4 { padding: 1rem ; } | |
| .pa-6 { padding: 1.5rem ; } | |
| .pa-8 { padding: 2rem ; } | |
| .pa-10 { padding: 2.5rem ; } | |
| .pa-12 { padding: 3rem ; } | |
| .pa-16 { padding: 4rem ; } | |
| .pa-20 { padding: 5rem ; } | |
| .ma-1 { margin: 0.25rem ; } | |
| .ma-2 { margin: 0.5rem ; } | |
| .ma-4 { margin: 1rem ; } | |
| .ma-8 { margin: 2rem ; } | |
| .mb-1 { margin-bottom: 0.25rem ; } | |
| .mb-2 { margin-bottom: 0.5rem ; } | |
| .mb-4 { margin-bottom: 1rem ; } | |
| .mb-6 { margin-bottom: 1.5rem ; } | |
| .mb-8 { margin-bottom: 2rem ; } | |
| .mb-10 { margin-bottom: 2.5rem ; } | |
| .mb-12 { margin-bottom: 3rem ; } | |
| .mb-20 { margin-bottom: 5rem ; } | |
| .mt-1 { margin-top: 0.25rem ; } | |
| .mt-2 { margin-top: 0.5rem ; } | |
| .mt-4 { margin-top: 1rem ; } | |
| .mt-8 { margin-top: 2rem ; } | |
| .mt-12 { margin-top: 3rem ; } | |
| .mt-20 { margin-top: 5rem ; } | |
| .gap-1 { gap: 0.25rem ; } | |
| .gap-2 { gap: 0.5rem ; } | |
| .gap-3 { gap: 0.75rem ; } | |
| .gap-4 { gap: 1rem ; } | |
| .gap-6 { gap: 1.5rem ; } | |
| .gap-8 { gap: 2rem ; } | |
| .gap-12 { gap: 3rem ; } | |
| .ml-auto { margin-left: auto ; } | |
| .mr-auto { margin-right: auto ; } | |
| /* Text Utilities */ | |
| .text-center { text-align: center ; } | |
| .text-right { text-align: right ; } | |
| .text-uppercase { text-transform: uppercase ; } | |
| .font-bold { font-weight: 700 ; } | |
| .font-black { font-weight: 900 ; } | |
| .tracking-widest { letter-spacing: 0.4rem ; } | |
| .text-primary { color: var(--text-main) ; } | |
| .text-secondary { color: var(--text-secondary) ; } | |
| .text-muted { color: var(--text-muted) ; } | |
| .text-red { color: var(--accent-red) ; } | |
| .text-success { color: var(--success) ; } | |
| .text-tiny { font-size: 0.65rem ; } | |
| /* --- COMPOSITION --- */ | |
| .stack { display: flex; flex-direction: column; gap: 0.75rem; } | |
| /* Animations */ | |
| .fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; } | |
| .fade-enter-from, .fade-leave-to { opacity: 0; } | |
| .slide-enter-active, .slide-leave-active { transition: transform 0.3s ease; } | |
| .slide-enter-from { transform: translateX(-100%); } | |
| .slide-leave-to { transform: translateX(100%); } | |
| /* Global Entry Animation */ | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(10px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| [data-composition="step-container"] { | |
| animation: fadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); | |
| } | |
| .flex-center { | |
| display: flex ; | |
| align-items: center ; | |
| justify-content: center ; | |
| } | |
| .truncate { | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| } | |