1814 lines
42 KiB
CSS
1814 lines
42 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Montserrat - header font (used in neode present) */
|
|
@font-face {
|
|
font-family: 'Montserrat';
|
|
src: url('/assets/fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Montserrat';
|
|
src: url('/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype');
|
|
font-weight: 800;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* Skip to main content — keyboard navigation accessibility */
|
|
.skip-to-content {
|
|
position: absolute;
|
|
left: -9999px;
|
|
top: auto;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
z-index: 9999;
|
|
}
|
|
.skip-to-content:focus {
|
|
position: fixed;
|
|
top: 12px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: auto;
|
|
height: auto;
|
|
overflow: visible;
|
|
padding: 8px 24px;
|
|
background: rgba(0, 0, 0, 0.85);
|
|
color: white;
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
|
|
/* Controller / keyboard navigation - soft glow only (no box outline) */
|
|
*:focus-visible {
|
|
outline: none;
|
|
box-shadow: 0 0 16px rgba(120, 180, 255, 0.2), 0 0 32px rgba(100, 160, 255, 0.1);
|
|
transition: box-shadow 0.2s ease;
|
|
}
|
|
|
|
/* Mobile touch targets — ensure tappable elements meet 44px minimum */
|
|
@media (max-width: 767px) {
|
|
button:not(.mode-switcher-btn):not(.sidebar-nav-item):not([class*="w-9"]):not([class*="w-8"]):not([class*="w-7"]) {
|
|
min-height: 44px;
|
|
}
|
|
}
|
|
|
|
/* Scroll container bottom padding — desktop breathing room */
|
|
.mobile-scroll-pad,
|
|
.mobile-scroll-pad-back {
|
|
padding-bottom: 6rem;
|
|
}
|
|
|
|
/* Mobile: override with tab bar clearance */
|
|
@media (max-width: 767px) {
|
|
.mobile-scroll-pad {
|
|
padding-bottom: calc(var(--mobile-tab-bar-height, 88px) + env(safe-area-inset-bottom, 0px) + 16px);
|
|
}
|
|
.mobile-scroll-pad-back {
|
|
padding-bottom: calc(var(--mobile-tab-bar-height, 88px) + env(safe-area-inset-bottom, 0px) + 64px);
|
|
}
|
|
}
|
|
|
|
/* Haptic-like press feedback for all interactive elements */
|
|
button:active:not(:disabled),
|
|
[role="button"]:active,
|
|
a.glass-card:active,
|
|
a.goal-card:active,
|
|
.info-card-button:active,
|
|
.path-action-button:active {
|
|
transform: scale(0.97) !important;
|
|
transition: transform 0.1s ease !important;
|
|
}
|
|
|
|
/* Toggle switches — subtle press */
|
|
input[type="checkbox"]:active + *,
|
|
input[type="radio"]:active + * {
|
|
transform: scale(0.95);
|
|
transition: transform 0.1s ease;
|
|
}
|
|
|
|
/* Containers: base scale for smooth grow animation */
|
|
[data-controller-container] {
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
/* Containers get subtle grow + inner glow when focused (gamepad selection) */
|
|
[data-controller-container]:focus-visible {
|
|
transform: scale(1.02);
|
|
box-shadow:
|
|
0 0 24px rgba(120, 180, 255, 0.15),
|
|
0 0 48px rgba(100, 160, 255, 0.08),
|
|
inset 0 0 24px rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
/* Global glassmorphism utilities */
|
|
@layer components {
|
|
.glass {
|
|
background-color: rgba(0, 0, 0, 0.35);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.glass-strong {
|
|
background-color: rgba(0, 0, 0, 0.35);
|
|
backdrop-filter: blur(24px);
|
|
-webkit-backdrop-filter: blur(24px);
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.glass-card {
|
|
background-color: rgba(0, 0, 0, 0.65);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
|
|
border-radius: 1rem;
|
|
overflow-x: hidden;
|
|
overflow-y: visible;
|
|
}
|
|
|
|
/* Mode switcher - sidebar toggle */
|
|
.mode-switcher {
|
|
display: inline-flex;
|
|
gap: 2px;
|
|
padding: 3px;
|
|
border-radius: 0.5rem;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
/* Full-width mode switcher variant (sidebar, mobile settings) */
|
|
.mode-switcher-full {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.mode-switcher-btn {
|
|
flex: 1 1 0%;
|
|
padding: 0.375rem 0.75rem;
|
|
border-radius: 0.375rem;
|
|
white-space: nowrap;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
color: rgba(255, 255, 255, 0.45);
|
|
transition: color 0.2s ease, background-color 0.2s ease;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.mode-switcher-btn {
|
|
min-height: 44px;
|
|
font-size: 0.875rem;
|
|
padding: 0.625rem 1rem;
|
|
}
|
|
}
|
|
|
|
.mode-switcher-btn:hover {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
}
|
|
|
|
.mode-switcher-btn-active {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: rgba(255, 255, 255, 0.95);
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* Chat launcher button — sidebar (desktop) */
|
|
.chat-launcher-btn {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.chat-launcher-btn:hover {
|
|
background: rgba(251, 146, 60, 0.15);
|
|
border-color: rgba(251, 146, 60, 0.3);
|
|
color: #fb923c;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* Chat launcher button — mobile bottom bar */
|
|
.chat-launcher-btn-mobile {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.chat-launcher-btn-mobile:hover {
|
|
color: #fb923c;
|
|
}
|
|
|
|
/* Chat close button (floating pill) */
|
|
.chat-close-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 0.75rem;
|
|
border-radius: 0.75rem;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
color: rgba(255, 255, 255, 0.8);
|
|
cursor: pointer;
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
|
|
user-select: none;
|
|
}
|
|
|
|
.chat-close-btn:hover {
|
|
background: rgba(0, 0, 0, 0.65);
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
color: rgba(255, 255, 255, 1);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* Chat fullscreen layout — fills the view-wrapper container */
|
|
.chat-fullscreen {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: transparent;
|
|
position: relative;
|
|
}
|
|
|
|
.chat-mode-pill {
|
|
display: none;
|
|
position: absolute;
|
|
top: 2.25rem;
|
|
right: 1.25rem;
|
|
z-index: 10;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.chat-mode-pill {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.chat-iframe {
|
|
flex: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
|
|
/* On mobile, shrink iframe height so AIUI ends above the Archipelago tab bar */
|
|
@media (max-width: 767px) {
|
|
.chat-iframe-mobile {
|
|
height: calc(100% - var(--mobile-tab-bar-height, 72px)) !important;
|
|
flex: none;
|
|
}
|
|
}
|
|
|
|
/* Chat placeholder (no AIUI URL) */
|
|
.chat-placeholder {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.chat-placeholder-inner {
|
|
text-align: center;
|
|
max-width: 28rem;
|
|
padding: 3rem;
|
|
border-radius: 1rem;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.chat-placeholder-icon {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
margin: 0 auto 1.5rem;
|
|
border-radius: 9999px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Goal cards */
|
|
.goal-card {
|
|
cursor: pointer;
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
|
|
}
|
|
|
|
.goal-card:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.goal-card:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.goal-status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
padding: 0.25rem 0.625rem;
|
|
border-radius: 9999px;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.goal-status-badge-not-started {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.goal-status-badge-in-progress {
|
|
background: rgba(251, 146, 60, 0.15);
|
|
color: #fb923c;
|
|
}
|
|
|
|
.goal-status-badge-completed {
|
|
background: rgba(74, 222, 128, 0.15);
|
|
color: #4ade80;
|
|
}
|
|
|
|
/* Goal wizard steps */
|
|
.goal-step {
|
|
padding: 1rem 1.25rem;
|
|
border-left: 3px solid rgba(255, 255, 255, 0.1);
|
|
transition: border-color 0.3s ease, background-color 0.3s ease;
|
|
}
|
|
|
|
.goal-step-active {
|
|
border-left-color: #fb923c;
|
|
background: rgba(251, 146, 60, 0.05);
|
|
}
|
|
|
|
.goal-step-completed {
|
|
border-left-color: #4ade80;
|
|
}
|
|
|
|
.goal-step-pending {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.glass-button {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-inline: 1.25rem;
|
|
min-height: 44px;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(24px);
|
|
-webkit-backdrop-filter: blur(24px);
|
|
box-shadow:
|
|
0 8px 24px rgba(0, 0, 0, 0.45),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.22);
|
|
border-radius: 0.75rem;
|
|
border: none;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.glass-button:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.glass-button::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: inherit;
|
|
padding: 2px;
|
|
background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent);
|
|
-webkit-mask:
|
|
linear-gradient(#fff 0 0) content-box,
|
|
linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.glass-button:hover {
|
|
transform: translateY(-2px);
|
|
background: rgba(0, 0, 0, 0.35);
|
|
box-shadow:
|
|
0 12px 32px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
.glass-button:hover::before {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
|
|
}
|
|
|
|
/* Tier badges for marketplace */
|
|
.tier-badge {
|
|
font-size: 0.625rem;
|
|
padding: 1px 6px;
|
|
border-radius: 9999px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
vertical-align: middle;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.tier-badge-core {
|
|
background: rgba(251, 146, 60, 0.2);
|
|
color: #fb923c;
|
|
}
|
|
|
|
.tier-badge-recommended {
|
|
background: rgba(59, 130, 246, 0.2);
|
|
color: #60a5fa;
|
|
}
|
|
|
|
.glass-button-sm {
|
|
padding-block: 0.375rem;
|
|
padding-inline: 0.75rem;
|
|
font-size: 0.875rem;
|
|
min-height: 36px;
|
|
}
|
|
|
|
/* Toast - glassmorphic, top-right */
|
|
.toast-glass {
|
|
background-color: rgba(0, 0, 0, 0.65);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
|
|
border-radius: 0.75rem;
|
|
}
|
|
|
|
/* Toast transition */
|
|
.toast-enter-active,
|
|
.toast-leave-active {
|
|
transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
.toast-enter-from,
|
|
.toast-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(1rem);
|
|
}
|
|
|
|
/* BANNED: gradient-card, gradient-card-dark, gradient-button
|
|
Use .glass-card or .path-option-card for containers.
|
|
Use .glass-button for all buttons.
|
|
These gradient styles break the clean glass aesthetic. */
|
|
|
|
/* Gradient border for logo badge */
|
|
.logo-gradient-border {
|
|
position: relative;
|
|
border-radius: 9999px;
|
|
padding: 3px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.logo-gradient-border::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 3px;
|
|
border-radius: 9999px;
|
|
background: #000;
|
|
z-index: 0;
|
|
}
|
|
|
|
.logo-gradient-border img,
|
|
.logo-gradient-border svg {
|
|
border-radius: 9999px;
|
|
display: block;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Gradient border container for large content areas */
|
|
.gradient-border-container {
|
|
position: relative;
|
|
border-radius: 1.5rem;
|
|
padding: 4px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
|
|
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
.gradient-border-container-inner {
|
|
background: rgba(0, 0, 0, 0.35);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border-radius: 1.25rem;
|
|
}
|
|
|
|
/* Choose Your Path - Main Container */
|
|
.path-glass-container {
|
|
width: calc(100% - 48px);
|
|
max-width: 1200px;
|
|
margin: 40px auto;
|
|
padding: 32px;
|
|
background: rgba(0, 0, 0, 0.65);
|
|
backdrop-filter: blur(40px);
|
|
-webkit-backdrop-filter: blur(40px);
|
|
border-radius: 24px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
box-shadow:
|
|
0 20px 60px rgba(0, 0, 0, 0.3),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Onboarding scroll container — constrains to viewport and scrolls */
|
|
.onb-scroll-container {
|
|
max-height: calc(100dvh - 2rem);
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* Mobile: tighter padding and margins for onboarding containers */
|
|
@media (max-width: 639px) {
|
|
.path-glass-container {
|
|
width: calc(100% - 24px);
|
|
margin: 12px auto;
|
|
padding: 12px;
|
|
border-radius: 20px;
|
|
gap: 8px;
|
|
}
|
|
.onb-scroll-container {
|
|
max-height: calc(100dvh - 1.5rem);
|
|
}
|
|
}
|
|
|
|
/* Choose Your Path - Option Cards */
|
|
.path-option-card {
|
|
position: relative;
|
|
background: rgba(0, 0, 0, 0.60);
|
|
backdrop-filter: blur(24px);
|
|
-webkit-backdrop-filter: blur(24px);
|
|
box-shadow:
|
|
0 8px 24px rgba(0, 0, 0, 0.45),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.22);
|
|
border-radius: 16px;
|
|
padding: 12px 10px;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.3s ease;
|
|
border: none;
|
|
}
|
|
|
|
.path-option-card:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
/* Gradient border effect using CSS mask - default is subtle */
|
|
.path-option-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: inherit;
|
|
padding: 2px;
|
|
background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent);
|
|
-webkit-mask:
|
|
linear-gradient(#fff 0 0) content-box,
|
|
linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Icon styling with black glass effect */
|
|
.path-option-card svg {
|
|
color: rgba(255, 255, 255, 0.85);
|
|
transition: color 0.2s ease, filter 0.3s ease;
|
|
filter:
|
|
drop-shadow(0 1px 1px rgba(255, 255, 255, 0.3))
|
|
drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
|
|
drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.6));
|
|
stroke-width: 2.5;
|
|
}
|
|
|
|
.path-option-card:hover {
|
|
transform: translateY(-2px);
|
|
background: rgba(0, 0, 0, 0.35);
|
|
box-shadow:
|
|
0 12px 32px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
.path-option-card:hover::before {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
|
|
}
|
|
|
|
.path-option-card:hover svg {
|
|
color: rgba(255, 255, 255, 1);
|
|
filter:
|
|
drop-shadow(0 1px 2px rgba(255, 255, 255, 0.5))
|
|
drop-shadow(0 3px 6px rgba(0, 0, 0, 0.9))
|
|
drop-shadow(0 -1px 3px rgba(0, 0, 0, 0.7));
|
|
}
|
|
|
|
/* Selected state */
|
|
.path-option-card--selected {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
box-shadow:
|
|
0 12px 32px rgba(0, 0, 0, 0.6),
|
|
0 0 30px rgba(255, 255, 255, 0.2),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.35);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.path-option-card--selected::before {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
|
|
}
|
|
|
|
.path-option-card--selected svg {
|
|
color: rgba(255, 255, 255, 1);
|
|
filter:
|
|
drop-shadow(0 1px 2px rgba(255, 255, 255, 0.6))
|
|
drop-shadow(0 3px 8px rgba(0, 0, 0, 1))
|
|
drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
|
|
}
|
|
|
|
.path-option-card--selected h3 {
|
|
color: rgba(255, 255, 255, 1);
|
|
}
|
|
|
|
/* Action Buttons */
|
|
.path-action-button {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
line-height: 1.4;
|
|
border-radius: 16px;
|
|
background: rgba(0, 0, 0, 0.25);
|
|
color: rgba(255, 255, 255, 0.96);
|
|
box-shadow:
|
|
0 8px 24px rgba(0, 0, 0, 0.45),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.22);
|
|
backdrop-filter: blur(24px);
|
|
-webkit-backdrop-filter: blur(24px);
|
|
border: none;
|
|
position: relative;
|
|
cursor: pointer;
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.3s ease;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.path-action-button:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.path-action-button--skip {
|
|
padding: 12px 40px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.path-action-button--skip::before {
|
|
display: none;
|
|
}
|
|
|
|
.path-action-button--continue {
|
|
padding: 16px 40px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media (max-width: 639px) {
|
|
.path-action-button {
|
|
font-size: 15px;
|
|
border-radius: 14px;
|
|
}
|
|
.path-action-button--skip {
|
|
padding: 10px 24px;
|
|
font-size: 14px;
|
|
}
|
|
.path-action-button--continue {
|
|
padding: 12px 28px;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
.path-action-button::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: inherit;
|
|
padding: 2px;
|
|
background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent);
|
|
-webkit-mask:
|
|
linear-gradient(#fff 0 0) content-box,
|
|
linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.path-action-button:hover {
|
|
transform: translateY(-2px);
|
|
background: rgba(0, 0, 0, 0.35);
|
|
box-shadow:
|
|
0 12px 32px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
.path-action-button:hover::before {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
|
|
}
|
|
|
|
.path-action-button:active {
|
|
background: rgba(0, 0, 0, 0.55);
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
/* Active Navigation Tab Style - matches hover container */
|
|
.nav-tab-active {
|
|
position: relative;
|
|
background: rgba(0, 0, 0, 0.35) !important;
|
|
box-shadow:
|
|
0 6px 16px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
|
|
color: rgba(255, 255, 255, 1) !important;
|
|
font-weight: 600 !important;
|
|
}
|
|
|
|
.nav-tab-active::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: inherit;
|
|
padding: 2px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
|
|
-webkit-mask:
|
|
linear-gradient(#fff 0 0) content-box,
|
|
linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Sidebar nav items: grow + glow on gamepad focus (same as containers) */
|
|
.sidebar-nav-item {
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
.sidebar-nav-item:focus-visible {
|
|
transform: scale(1.02) !important;
|
|
box-shadow:
|
|
0 0 24px rgba(120, 180, 255, 0.15),
|
|
0 0 48px rgba(100, 160, 255, 0.08),
|
|
inset 0 0 24px rgba(255, 255, 255, 0.03) !important;
|
|
}
|
|
}
|
|
|
|
/* Background image */
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Avenir Next', system-ui, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background: #000;
|
|
color: white;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
#app {
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
/* Custom scrollbar for glass containers */
|
|
.custom-scrollbar::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-track {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
|
|
border-radius: 10px;
|
|
border: 2px solid rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
|
|
}
|
|
|
|
/* Hide scrollbar but keep scroll functionality - applied globally to all scrollable content */
|
|
.scrollbar-hide,
|
|
.overflow-y-auto,
|
|
.overflow-auto,
|
|
.overflow-y-scroll,
|
|
.iframe-scrollbar-hide {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
.scrollbar-hide::-webkit-scrollbar,
|
|
.overflow-y-auto::-webkit-scrollbar,
|
|
.overflow-auto::-webkit-scrollbar,
|
|
.overflow-y-scroll::-webkit-scrollbar,
|
|
.iframe-scrollbar-hide::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
/* Iframe scrollbar hide - targets iframe element; inner doc scrollbars need same-origin injection */
|
|
iframe.iframe-scrollbar-hide {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeUpIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateY(28px);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
from { opacity: 1; }
|
|
to { opacity: 0; }
|
|
}
|
|
|
|
@keyframes caretBlink {
|
|
0%, 100% {
|
|
border-right-color: #00ffff;
|
|
}
|
|
50% {
|
|
border-right-color: transparent;
|
|
}
|
|
}
|
|
|
|
.animate-fade-up {
|
|
animation: fadeUpIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
|
|
}
|
|
|
|
.animate-fade-in {
|
|
animation: fadeIn 0.5s ease forwards;
|
|
}
|
|
|
|
.animate-fade-out {
|
|
animation: fadeOut 0.8s ease forwards;
|
|
}
|
|
|
|
.typing-text {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
max-width: 0;
|
|
border-right: 4px solid #fbbf24;
|
|
animation:
|
|
typing 2s steps(30, end) forwards,
|
|
caretBlink 0.5s step-end 3 2.6s;
|
|
}
|
|
|
|
/* Adjust typing animation to use max-width for better centering */
|
|
@keyframes typing {
|
|
from {
|
|
max-width: 0;
|
|
}
|
|
to {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
@keyframes caretBlink {
|
|
0%, 100% {
|
|
border-right-color: #fbbf24;
|
|
}
|
|
50% {
|
|
border-right-color: transparent;
|
|
}
|
|
}
|
|
|
|
/* Splash screen styles */
|
|
.splash-complete .login-card {
|
|
animation: fadeUpIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
|
|
}
|
|
|
|
/* Background glitch effect - continuous every 5s */
|
|
body::before,
|
|
body::after,
|
|
html::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
opacity: 0;
|
|
}
|
|
|
|
/* Subtle black glitch overlay - delay to avoid flash of partial clip-path on first paint (black crescent bug) */
|
|
body::before {
|
|
background-image: url('/assets/img/bg.jpg');
|
|
background-size: auto 100vh;
|
|
background-position: center top;
|
|
background-attachment: fixed;
|
|
mix-blend-mode: multiply;
|
|
filter: brightness(0.4) contrast(1.2);
|
|
will-change: transform, clip-path, opacity;
|
|
animation: bg-glitch-shift-repeat 5s steps(10, end) infinite;
|
|
animation-delay: 1.5s;
|
|
animation-fill-mode: backwards;
|
|
}
|
|
|
|
/* Second subtle black layer */
|
|
html::before {
|
|
background-image: url('/assets/img/bg.jpg');
|
|
background-size: auto 100vh;
|
|
background-position: center top;
|
|
background-attachment: fixed;
|
|
mix-blend-mode: multiply;
|
|
filter: brightness(0.3) contrast(1.3);
|
|
will-change: transform, clip-path, opacity;
|
|
animation: bg-glitch-shift-2-repeat 5s steps(9, end) infinite;
|
|
animation-delay: 1.6s;
|
|
animation-fill-mode: backwards;
|
|
}
|
|
|
|
/* Subtle scanline sweep */
|
|
body::after {
|
|
background:
|
|
linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0) 60%),
|
|
repeating-linear-gradient(180deg, rgba(0,0,0,0.02) 0 2px, rgba(0,0,0,0) 2px 4px),
|
|
radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.15) 100%);
|
|
will-change: transform, opacity;
|
|
animation: bg-glitch-scan-repeat 5s ease-out infinite;
|
|
animation-delay: 1.5s;
|
|
animation-fill-mode: backwards;
|
|
}
|
|
|
|
/* Dashboard: full viewport width, no letterboxing */
|
|
body.dashboard-active {
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
body.dashboard-active .dashboard-view .bg-perspective-container {
|
|
left: 0 !important;
|
|
right: 0 !important;
|
|
width: 100% !important;
|
|
min-width: 100% !important;
|
|
}
|
|
|
|
/* Disable glitch effect on dashboard */
|
|
.dashboard-view ~ body::before,
|
|
.dashboard-view ~ body::after,
|
|
.dashboard-view ~ html::before {
|
|
animation: none !important;
|
|
opacity: 0 !important;
|
|
}
|
|
|
|
/* Alternative approach - disable on body when dashboard is active */
|
|
body:has(.dashboard-view)::before,
|
|
body:has(.dashboard-view)::after,
|
|
html:has(.dashboard-view)::before {
|
|
animation: none !important;
|
|
opacity: 0 !important;
|
|
}
|
|
|
|
/* Disable glitch effect on video background screens (onboarding intro/login) */
|
|
body.video-background-active::before,
|
|
body.video-background-active::after,
|
|
html:has(body.video-background-active)::before {
|
|
animation: none !important;
|
|
opacity: 0 !important;
|
|
display: none !important;
|
|
}
|
|
|
|
/* Repeating glitch animations - every 5 seconds (subtle) */
|
|
@keyframes bg-glitch-shift-repeat {
|
|
0%, 82% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; }
|
|
82.1% { opacity: .08; }
|
|
84% { transform: translate(3px,-1px); clip-path: inset(8% 0 70% 0); }
|
|
86% { transform: translate(-3px,1px); clip-path: inset(42% 0 40% 0); }
|
|
88% { transform: translate(2px,0); clip-path: inset(68% 0 10% 0); }
|
|
91% { transform: translate(-2px,2px); clip-path: inset(18% 0 60% 0); }
|
|
93% { transform: translate(3px,-2px); clip-path: inset(55% 0 20% 0); }
|
|
95% { transform: translate(-2px,1px); clip-path: inset(10% 0 80% 0); }
|
|
100% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; }
|
|
}
|
|
|
|
@keyframes bg-glitch-scan-repeat {
|
|
0%, 82% { opacity: 0; transform: translateY(-20%); }
|
|
84% { opacity: 0.15; }
|
|
90% { opacity: 0.10; }
|
|
100% { opacity: 0; transform: translateY(115%); }
|
|
}
|
|
|
|
@keyframes bg-glitch-shift-2-repeat {
|
|
0%, 82% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; }
|
|
82.1% { opacity: .06; }
|
|
84% { transform: translate(-3px,1px); clip-path: inset(12% 0 65% 0); }
|
|
86% { transform: translate(3px,-1px) skewX(0.3deg); clip-path: inset(36% 0 42% 0); }
|
|
89% { transform: translate(-2px,1px); clip-path: inset(72% 0 8% 0); }
|
|
92% { transform: translate(2px,-2px); clip-path: inset(22% 0 58% 0); }
|
|
95% { transform: translate(-2px,1px); clip-path: inset(50% 0 26% 0); }
|
|
100% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; }
|
|
}
|
|
|
|
/* ── Cloud File Browser (AIUI-style list cards) ──── */
|
|
|
|
.cloud-file-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.125rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.cloud-file-item {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
padding: 0.5rem;
|
|
border-radius: 0.75rem;
|
|
transition: background-color 0.2s ease;
|
|
text-align: left;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
color: inherit;
|
|
align-items: center;
|
|
}
|
|
.cloud-file-item:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
.cloud-file-item:active {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
.cloud-file-item:focus-visible {
|
|
box-shadow: 0 0 16px rgba(120, 180, 255, 0.2), 0 0 32px rgba(100, 160, 255, 0.1);
|
|
}
|
|
|
|
.cloud-file-item-thumb {
|
|
flex-shrink: 0;
|
|
width: 3rem;
|
|
height: 3rem;
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cloud-file-item-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
opacity: 0;
|
|
transition: opacity 0.15s ease;
|
|
flex-shrink: 0;
|
|
}
|
|
.cloud-file-item:hover .cloud-file-item-actions,
|
|
.cloud-file-item:focus-within .cloud-file-item-actions {
|
|
opacity: 1;
|
|
}
|
|
|
|
.cloud-file-action-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1.75rem;
|
|
height: 1.75rem;
|
|
border-radius: 0.375rem;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.6);
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
|
|
text-decoration: none;
|
|
}
|
|
.cloud-file-action-btn:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: white;
|
|
}
|
|
.cloud-file-action-delete:hover {
|
|
background: rgba(239, 68, 68, 0.2);
|
|
color: #ef4444;
|
|
}
|
|
|
|
.cloud-file-badge {
|
|
display: inline-flex;
|
|
font-size: 0.6875rem;
|
|
font-weight: 500;
|
|
padding: 0.125rem 0.375rem;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.cloud-file-item-skeleton {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Toolbar */
|
|
.cloud-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.75rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cloud-breadcrumbs {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.cloud-breadcrumb-item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.125rem;
|
|
padding: 0.25rem 0.375rem;
|
|
font-size: 0.8125rem;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 0.25rem;
|
|
transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
|
|
white-space: nowrap;
|
|
}
|
|
.cloud-breadcrumb-item:hover:not(.cloud-breadcrumb-active) {
|
|
color: white;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
.cloud-breadcrumb-active {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
font-weight: 500;
|
|
cursor: default;
|
|
}
|
|
|
|
.cloud-toolbar-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
padding: 0.375rem 0.625rem;
|
|
font-size: 0.8125rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
/* View toggle */
|
|
.cloud-view-toggle {
|
|
display: flex;
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
.cloud-view-toggle-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
border: none;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
color: rgba(255, 255, 255, 0.35);
|
|
transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
|
|
}
|
|
.cloud-view-toggle-btn:hover {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
.cloud-view-toggle-active {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
/* ── Cloud Card Grid (AIUI-style poster cards) ──── */
|
|
|
|
.cloud-card-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 1rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
@media (min-width: 640px) {
|
|
.cloud-card-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.cloud-card-grid {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
}
|
|
|
|
.cloud-grid-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: left;
|
|
width: 100%;
|
|
border: none;
|
|
cursor: pointer;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border-radius: 0.75rem;
|
|
overflow: hidden;
|
|
transition: background-color 0.2s ease, box-shadow 0.2s ease;
|
|
color: inherit;
|
|
padding: 0;
|
|
}
|
|
.cloud-grid-card:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
transform: translateY(-2px);
|
|
}
|
|
.cloud-grid-card:active {
|
|
transform: translateY(0);
|
|
}
|
|
.cloud-grid-card:focus-visible {
|
|
box-shadow: 0 0 16px rgba(120, 180, 255, 0.2), 0 0 32px rgba(100, 160, 255, 0.1);
|
|
}
|
|
|
|
.cloud-grid-card-cover {
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
border-radius: 0.625rem;
|
|
}
|
|
|
|
.cloud-grid-card-gradient {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cloud-grid-card-info {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 0.5rem;
|
|
z-index: 1;
|
|
}
|
|
|
|
.cloud-grid-card-badges {
|
|
position: absolute;
|
|
top: 0.375rem;
|
|
right: 0.375rem;
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
z-index: 1;
|
|
}
|
|
.cloud-grid-card-badge {
|
|
font-size: 0.625rem;
|
|
font-weight: 500;
|
|
padding: 0.125rem 0.375rem;
|
|
border-radius: 0.25rem;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(4px);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
/* Play button overlay (audio/video) */
|
|
.cloud-grid-card-play {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 2;
|
|
backdrop-filter: blur(2px);
|
|
background: rgba(0, 0, 0, 0.3);
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease;
|
|
}
|
|
.cloud-grid-card:hover .cloud-grid-card-play {
|
|
opacity: 1;
|
|
}
|
|
.cloud-grid-card-play-btn {
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
backdrop-filter: blur(8px);
|
|
transition: transform 0.15s ease;
|
|
}
|
|
.cloud-grid-card:hover .cloud-grid-card-play-btn {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Actions overlay (top-left, on hover) */
|
|
.cloud-grid-card-actions {
|
|
position: absolute;
|
|
top: 0.375rem;
|
|
left: 0.375rem;
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
z-index: 3;
|
|
opacity: 0;
|
|
transition: opacity 0.15s ease;
|
|
}
|
|
.cloud-grid-card:hover .cloud-grid-card-actions {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Grid skeleton */
|
|
.cloud-grid-card-skeleton {
|
|
border-radius: 0.75rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Playing state — keep play overlay visible */
|
|
.cloud-grid-card-play-active {
|
|
opacity: 1 !important;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
/* ── Mobile floating back/close button (always 8px above tab bar) ──── */
|
|
.mobile-back-btn {
|
|
position: fixed;
|
|
left: 1rem;
|
|
right: 1rem;
|
|
bottom: calc(var(--mobile-tab-bar-height, 72px) + 8px);
|
|
z-index: 40;
|
|
filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
|
|
}
|
|
|
|
/* ── Cloud Audio Player (mini bar) ──── */
|
|
|
|
.cloud-audio-player {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 0.75rem 1rem;
|
|
margin-top: 0.5rem;
|
|
background: rgba(0, 0, 0, 0.65);
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: 0.75rem;
|
|
flex-shrink: 0;
|
|
}
|
|
.cloud-audio-player-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2.75rem;
|
|
height: 2.75rem;
|
|
min-width: 2.75rem;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: none;
|
|
color: white;
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
|
|
padding: 0;
|
|
}
|
|
.cloud-audio-player-btn:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
}
|
|
.cloud-audio-progress {
|
|
height: 3px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 2px;
|
|
margin-top: 0.375rem;
|
|
overflow: hidden;
|
|
}
|
|
.cloud-audio-progress-bar {
|
|
height: 100%;
|
|
background: #fb923c;
|
|
border-radius: 2px;
|
|
transition: width 0.3s linear;
|
|
}
|
|
|
|
/* ── Cloud Drag-and-Drop Overlay ──── */
|
|
|
|
.cloud-drop-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 30;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(8px);
|
|
-webkit-backdrop-filter: blur(8px);
|
|
border-radius: 0.75rem;
|
|
border: 2px dashed rgba(251, 146, 60, 0.6);
|
|
animation: drop-overlay-in 0.2s ease-out;
|
|
}
|
|
.cloud-drop-overlay-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
@keyframes drop-overlay-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
/* ── Share Modal ──── */
|
|
|
|
.share-modal-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 9999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(8px);
|
|
-webkit-backdrop-filter: blur(8px);
|
|
animation: share-modal-fade-in 0.2s ease-out;
|
|
}
|
|
@keyframes share-modal-fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
.share-modal {
|
|
width: 100%;
|
|
max-width: 28rem;
|
|
margin: 1rem;
|
|
padding: 1.5rem;
|
|
animation: share-modal-slide-in 0.25s ease-out;
|
|
}
|
|
@keyframes share-modal-slide-in {
|
|
from { opacity: 0; transform: translateY(12px) scale(0.97); }
|
|
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
}
|
|
|
|
.share-modal-close {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
border-radius: 0.5rem;
|
|
border: none;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
cursor: pointer;
|
|
transition: background-color 0.15s ease, color 0.15s ease;
|
|
}
|
|
.share-modal-close:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: white;
|
|
}
|
|
|
|
.share-modal-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 0.75rem;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
/* Toggle switch */
|
|
.share-toggle {
|
|
position: relative;
|
|
display: inline-flex;
|
|
width: 2.75rem;
|
|
height: 1.5rem;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
}
|
|
.share-toggle input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
.share-toggle-slider {
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 9999px;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
.share-toggle-slider::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 1.125rem;
|
|
height: 1.125rem;
|
|
left: 0.1875rem;
|
|
bottom: 0.1875rem;
|
|
border-radius: 9999px;
|
|
background: white;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
.share-toggle input:checked + .share-toggle-slider {
|
|
background: #fb923c;
|
|
}
|
|
.share-toggle input:checked + .share-toggle-slider::before {
|
|
transform: translateX(1.25rem);
|
|
}
|
|
|
|
/* Access type options */
|
|
.share-access-options {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.5rem;
|
|
}
|
|
.share-access-option {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
padding: 0.75rem 0.5rem;
|
|
border-radius: 0.75rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: rgba(255, 255, 255, 0.6);
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
.share-access-option:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-color: rgba(255, 255, 255, 0.15);
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
.share-access-option-active {
|
|
background: rgba(251, 146, 60, 0.1);
|
|
border-color: rgba(251, 146, 60, 0.4);
|
|
color: #fb923c;
|
|
}
|
|
.share-access-option-active:hover {
|
|
background: rgba(251, 146, 60, 0.15);
|
|
border-color: rgba(251, 146, 60, 0.5);
|
|
color: #fb923c;
|
|
}
|
|
|
|
/* Price input */
|
|
.share-price-input-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0;
|
|
border-radius: 0.75rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
overflow: hidden;
|
|
margin-top: 0.5rem;
|
|
}
|
|
.share-price-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 0.75rem;
|
|
flex-shrink: 0;
|
|
}
|
|
.share-price-input {
|
|
flex: 1;
|
|
min-width: 0;
|
|
padding: 0.625rem 0;
|
|
background: transparent;
|
|
border: none;
|
|
outline: none;
|
|
color: white;
|
|
font-size: 0.875rem;
|
|
font-family: inherit;
|
|
}
|
|
.share-price-input::placeholder {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
.share-price-unit {
|
|
padding: 0 0.75rem;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Status messages */
|
|
.share-modal-status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 0.75rem;
|
|
border-radius: 0.5rem;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
.share-modal-error {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 0.75rem;
|
|
border-radius: 0.5rem;
|
|
background: rgba(239, 68, 68, 0.1);
|
|
border: 1px solid rgba(239, 68, 68, 0.2);
|
|
}
|
|
.share-modal-success {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 0.75rem;
|
|
border-radius: 0.5rem;
|
|
background: rgba(74, 222, 128, 0.1);
|
|
border: 1px solid rgba(74, 222, 128, 0.2);
|
|
}
|
|
.share-modal-save {
|
|
background: rgba(251, 146, 60, 0.15);
|
|
border-color: rgba(251, 146, 60, 0.3);
|
|
}
|
|
.share-modal-save:hover:not(:disabled) {
|
|
background: rgba(251, 146, 60, 0.25);
|
|
}
|
|
.share-modal-save:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Share action button highlight */
|
|
.cloud-file-action-share:hover {
|
|
background: rgba(251, 146, 60, 0.2);
|
|
color: #fb923c;
|
|
}
|
|
|
|
/* Smooth loading → content transition */
|
|
.content-fade-enter-active,
|
|
.content-fade-leave-active {
|
|
transition: opacity 0.2s ease, transform 0.2s ease;
|
|
}
|
|
|
|
.content-fade-enter-from {
|
|
opacity: 0;
|
|
transform: translateY(6px);
|
|
}
|
|
|
|
.content-fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
/* Staggered card entrance animation */
|
|
.card-stagger {
|
|
opacity: 0;
|
|
animation: card-stagger-in 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
|
|
animation-delay: calc(var(--stagger-index, 0) * 50ms);
|
|
}
|
|
|
|
@keyframes card-stagger-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(12px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Monitoring dashboard */
|
|
.monitoring-stat-card {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 0.75rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.monitoring-chart {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
.monitoring-bar-container {
|
|
width: 80px;
|
|
height: 6px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.monitoring-bar-fill {
|
|
height: 100%;
|
|
border-radius: 3px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.monitoring-bar-ok {
|
|
background: #4ade80;
|
|
}
|
|
|
|
.monitoring-bar-warn {
|
|
background: #f59e0b;
|
|
}
|
|
|
|
.monitoring-bar-danger {
|
|
background: #ef4444;
|
|
}
|
|
.monitoring-alert-toggle {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 36px;
|
|
height: 20px;
|
|
flex-shrink: 0;
|
|
}
|
|
.monitoring-alert-toggle input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
.monitoring-alert-toggle-slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
inset: 0;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 10px;
|
|
transition: background 0.2s ease;
|
|
}
|
|
.monitoring-alert-toggle-slider::before {
|
|
content: '';
|
|
position: absolute;
|
|
height: 14px;
|
|
width: 14px;
|
|
left: 3px;
|
|
bottom: 3px;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
border-radius: 50%;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
.monitoring-alert-toggle input:checked + .monitoring-alert-toggle-slider {
|
|
background: rgba(74, 222, 128, 0.4);
|
|
}
|
|
.monitoring-alert-toggle input:checked + .monitoring-alert-toggle-slider::before {
|
|
transform: translateX(16px);
|
|
background: #4ade80;
|
|
}
|
|
.monitoring-threshold-input {
|
|
width: 60px;
|
|
padding: 4px 8px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: 6px;
|
|
color: white;
|
|
font-size: 0.75rem;
|
|
text-align: right;
|
|
}
|
|
|
|
/* Toggle switch for Tor services and similar on/off controls */
|
|
.tor-toggle-label {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 36px;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
}
|
|
.tor-toggle-input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
position: absolute;
|
|
}
|
|
.tor-toggle-slider {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 10px;
|
|
transition: background 0.3s ease;
|
|
}
|
|
.tor-toggle-slider::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px;
|
|
left: 2px;
|
|
top: 2px;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
border-radius: 50%;
|
|
transition: transform 0.3s ease, background 0.3s ease;
|
|
}
|
|
.tor-toggle-input:checked + .tor-toggle-slider {
|
|
background: rgba(251, 146, 60, 0.4);
|
|
}
|
|
.tor-toggle-input:checked + .tor-toggle-slider::before {
|
|
transform: translateX(16px);
|
|
background: #fb923c;
|
|
}
|