771 lines
19 KiB
CSS
771 lines
19 KiB
CSS
/* =========================================================================
|
|
Pristine Rapture - Pre-Civil War Luxury Art Deco Edition (Soften Colors)
|
|
========================================================================= */
|
|
|
|
:root {
|
|
/* Softened, Warm Base Colors (Easy on the eyes) */
|
|
--ocean-dark: rgb(8, 14, 20); /* Deeper, calmer atlantic depths */
|
|
--velvet-blue: rgb(14, 24, 38); /* Dark slate velvet console backing */
|
|
--brass-dark: rgb(33, 26, 18); /* Softened dark brass */
|
|
--ivory-paper: rgb(234, 226, 210); /* Warm, soft aged cream/sepia parchment (not harsh white) */
|
|
|
|
/* Softer Brushed Metallic Accents */
|
|
--gold-leaf: rgb(204, 172, 107); /* Brushed warm gold (subdued from bright yellow) */
|
|
--gold-glow: rgba(204, 172, 107, 0.25);
|
|
--cyan-accent: rgb(80, 168, 168); /* Softer, desaturated sage teal/aquamarine */
|
|
--text-light: rgb(215, 225, 222); /* Subdued off-white for dark zones */
|
|
--text-dark: rgb(45, 50, 48); /* Muted dark charcoal ink (less harsh than black) */
|
|
--text-muted: rgb(125, 142, 145); /* Muted steel grey-blue */
|
|
|
|
--green-glow: rgb(75, 168, 128); /* Softened forest/sage green */
|
|
--red-glow: rgb(180, 95, 95); /* Faded terracotta/crimson red */
|
|
}
|
|
|
|
/* Core Settings */
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--ocean-dark);
|
|
background-image: linear-gradient(135deg, rgba(8, 14, 20, 0.88) 0%, rgba(12, 22, 34, 0.94) 100%), url('bg.jpg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
color: var(--text-light);
|
|
font-family: 'Montserrat', sans-serif;
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
/* Soft brushed gold pointer */
|
|
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='0,0 16,6 9,9 6,16' fill='%23ccac6b' stroke='%23080e14' stroke-width='1.5'/></svg>"), auto;
|
|
}
|
|
|
|
/* Custom glowing pointer cursor on hover elements */
|
|
a, button, .tag, .download-dossier-btn, .dep-link, .ryan-quote, .download-btn, .dossier-folder {
|
|
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='0,0 16,6 9,9 6,16' fill='%2350a8a8' stroke='%23080e14' stroke-width='1.5'/></svg>"), pointer !important;
|
|
}
|
|
|
|
/* Thriving Metropolis - Slower, Murky Floating Bubbles */
|
|
.bubbles {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bubble {
|
|
position: absolute;
|
|
bottom: -30px;
|
|
background-color: rgba(80, 168, 168, 0.03);
|
|
border: 1px solid rgba(80, 168, 168, 0.1);
|
|
border-radius: 50%;
|
|
animation: floatUp 30s infinite linear;
|
|
}
|
|
|
|
.bubble:nth-child(1) { left: 8%; width: 18px; height: 18px; animation-duration: 25s; animation-delay: 1s; }
|
|
.bubble:nth-child(2) { left: 22%; width: 8px; height: 8px; animation-duration: 40s; animation-delay: 6s; }
|
|
.bubble:nth-child(3) { left: 45%; width: 28px; height: 28px; animation-duration: 32s; animation-delay: 0s; }
|
|
.bubble:nth-child(4) { left: 72%; width: 12px; height: 12px; animation-duration: 45s; animation-delay: 4s; }
|
|
.bubble:nth-child(5) { left: 88%; width: 22px; height: 22px; animation-duration: 28s; animation-delay: 8s; }
|
|
|
|
@keyframes floatUp {
|
|
0% { transform: translateY(0) translateX(0) scale(0.9); opacity: 0; }
|
|
15% { opacity: 0.3; }
|
|
85% { opacity: 0.3; }
|
|
100% { transform: translateY(-110vh) translateX(60px) scale(1.1); opacity: 0; }
|
|
}
|
|
|
|
/* Ambient Bioluminescent Background Blobs */
|
|
.glow-blob {
|
|
position: absolute;
|
|
width: 600px;
|
|
height: 600px;
|
|
border-radius: 50%;
|
|
filter: blur(180px);
|
|
opacity: 0.05;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.blob-cyan { background-color: var(--cyan-accent); top: -100px; right: -100px; }
|
|
.blob-gold { background-color: var(--gold-leaf); bottom: -200px; left: -200px; }
|
|
|
|
/* Pristine Art Deco Container Box */
|
|
.container {
|
|
max-width: 1150px;
|
|
margin: 40px auto;
|
|
padding: 50px;
|
|
position: relative;
|
|
z-index: 10;
|
|
background: rgba(8, 15, 25, 0.97); /* Rich dark velvet desk surface */
|
|
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.95);
|
|
}
|
|
|
|
.art-deco-frame-pristine {
|
|
border: 3px solid var(--gold-leaf);
|
|
outline: 1px solid var(--gold-leaf);
|
|
outline-offset: 4px;
|
|
}
|
|
|
|
/* Art Deco Corner Accents (Sunburst Style) */
|
|
.corner-accent {
|
|
position: absolute;
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 2px solid var(--gold-leaf);
|
|
z-index: 15;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.corner-accent::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 1px solid var(--gold-leaf);
|
|
}
|
|
|
|
.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
|
|
.top-left::before { top: 0; left: 0; border-right: none; border-bottom: none; }
|
|
|
|
.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
|
|
.top-right::before { top: 0; right: 0; border-left: none; border-bottom: none; }
|
|
|
|
.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
|
|
.bottom-left::before { bottom: 0; left: 0; border-right: none; border-top: none; }
|
|
|
|
.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }
|
|
.bottom-right::before { bottom: 0; right: 0; border-left: none; border-top: none; }
|
|
|
|
/* Main Header */
|
|
.main-header {
|
|
text-align: center;
|
|
margin-bottom: 45px;
|
|
position: relative;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.deco-divider-top, .deco-divider-bottom {
|
|
height: 2px;
|
|
background: linear-gradient(90deg, transparent, var(--gold-leaf) 30%, var(--gold-leaf) 70%, transparent);
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.deco-divider-top { margin-bottom: 15px; }
|
|
.deco-divider-bottom { margin-top: 15px; }
|
|
|
|
/* Art Deco Sunburst Logo positioned behind the title */
|
|
.sunburst-logo {
|
|
position: absolute;
|
|
top: 52%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 320px;
|
|
height: 180px;
|
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g stroke='rgba(204,172,107,0.18)' stroke-width='0.6'><line x1='50' y1='50' x2='50' y2='5'/><line x1='50' y1='50' x2='72' y2='10'/><line x1='50' y1='50' x2='90' y2='25'/><line x1='50' y1='50' x2='95' y2='50'/><line x1='50' y1='50' x2='90' y2='75'/><line x1='50' y1='50' x2='72' y2='90'/><line x1='50' y1='50' x2='50' y2='95'/><line x1='50' y1='50' x2='28' y2='90'/><line x1='50' y1='50' x2='10' y2='75'/><line x1='50' y1='50' x2='5' y2='50'/><line x1='50' y1='50' x2='10' y2='25'/><line x1='50' y1='50' x2='28' y2='10'/></g><circle cx='50' cy='50' r='12' fill='none' stroke='rgba(204,172,107,0.15)' stroke-width='1'/></svg>");
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
z-index: 1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.main-header h1 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 4.5rem;
|
|
font-weight: 900;
|
|
letter-spacing: 14px;
|
|
text-transform: uppercase;
|
|
color: var(--gold-leaf);
|
|
text-shadow: 0 0 25px var(--gold-glow);
|
|
position: relative;
|
|
z-index: 2;
|
|
background: none !important;
|
|
-webkit-background-clip: unset !important;
|
|
-webkit-text-fill-color: unset !important;
|
|
}
|
|
|
|
.main-header .subtitle {
|
|
color: var(--cyan-accent);
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.95rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 6px;
|
|
margin-top: 8px;
|
|
text-shadow: 0 0 10px rgba(80, 168, 168, 0.2);
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
/* Two-Column Grid */
|
|
.portfolio-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.6fr;
|
|
gap: 40px;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.portfolio-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Card Sections */
|
|
.card-section {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.card-section h2 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 1.15rem;
|
|
font-weight: 700;
|
|
margin-bottom: 24px;
|
|
color: var(--gold-leaf);
|
|
text-shadow: 0 0 8px var(--gold-glow);
|
|
text-align: center;
|
|
letter-spacing: 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
/* Ornate Art Deco Gold Title Wings */
|
|
.deco-wing {
|
|
display: inline-block;
|
|
width: 30px;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, transparent, var(--gold-leaf));
|
|
position: relative;
|
|
}
|
|
|
|
.deco-wing::before, .deco-wing::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 1px;
|
|
background: var(--gold-leaf);
|
|
}
|
|
.deco-wing::before { top: -4px; opacity: 0.6; }
|
|
.deco-wing::after { top: 4px; opacity: 0.6; }
|
|
|
|
.main-column .deco-wing {
|
|
width: 45px;
|
|
}
|
|
|
|
/* Ivory Parchment Folder Dossiers (Soften to Warm Sepia-Ivory) */
|
|
.dossier-folder {
|
|
background-color: var(--ivory-paper) !important;
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px);
|
|
background-size: 100% 24px; /* Notebook lines */
|
|
color: var(--text-dark) !important;
|
|
border: 1px solid rgba(204, 172, 107, 0.4) !important;
|
|
outline: 1px solid rgba(204, 172, 107, 0.25);
|
|
outline-offset: -5px;
|
|
border-radius: 2px;
|
|
padding: 32px 26px 26px 26px !important;
|
|
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), inset 0 0 20px rgba(0, 0, 0, 0.02) !important;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
|
|
.dossier-folder:hover {
|
|
transform: translateY(-2px);
|
|
border-color: var(--gold-leaf) !important;
|
|
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 12px rgba(204, 172, 107, 0.1) !important;
|
|
}
|
|
|
|
/* Polished Brass Paperclip Ornament (Dimmed) */
|
|
.brass-clip {
|
|
position: absolute;
|
|
top: -8px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 14px;
|
|
height: 34px;
|
|
background: linear-gradient(135deg, rgb(220, 190, 120) 0%, rgb(170, 130, 70) 50%, rgb(110, 80, 30) 100%);
|
|
border: 1px solid rgba(204, 172, 107, 0.6);
|
|
border-radius: 6px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.5), inset 0 0 4px rgba(255,255,255,0.3);
|
|
z-index: 10;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Folder header stamps */
|
|
.card-header-dossier {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
border-bottom: 1px solid rgba(45, 50, 48, 0.18);
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
/* Softened Ink Stamp Look */
|
|
.seal-stamp {
|
|
font-family: 'Cinzel', serif;
|
|
font-weight: 900;
|
|
font-size: 0.65rem;
|
|
color: rgb(140, 60, 60); /* Muted Red */
|
|
border: 2px double rgb(140, 60, 60);
|
|
padding: 3px 8px;
|
|
letter-spacing: 1.5px;
|
|
transform: rotate(-8deg);
|
|
display: inline-block;
|
|
opacity: 0.78;
|
|
margin-bottom: 10px;
|
|
user-select: none;
|
|
}
|
|
|
|
.dossier-folder .role-title {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 1.05rem;
|
|
color: var(--text-dark) !important;
|
|
letter-spacing: 1px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.dossier-folder .profile-text {
|
|
color: var(--text-dark) !important;
|
|
text-align: justify;
|
|
line-height: 1.7;
|
|
font-size: 0.86rem;
|
|
}
|
|
|
|
/* Sidebar Dossier Download Button */
|
|
.dossier-folder .download-btn {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 14px;
|
|
text-align: center;
|
|
background: linear-gradient(135deg, rgb(38, 30, 22), rgb(20, 16, 12));
|
|
color: var(--gold-leaf);
|
|
font-family: 'Cinzel', serif;
|
|
font-weight: 700;
|
|
font-size: 0.85rem;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
border: 1px solid rgba(204, 172, 107, 0.8);
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: inset 0 0 10px rgba(204, 172, 107, 0.15);
|
|
transition: all 0.4s ease;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.dossier-folder .download-btn:hover {
|
|
color: var(--ivory-paper);
|
|
background: var(--brass-dark);
|
|
border-color: var(--gold-leaf);
|
|
box-shadow: 0 0 20px rgba(204, 172, 107, 0.35);
|
|
}
|
|
|
|
/* Technical Plasmids (Skills on Paper) */
|
|
.skills-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 28px;
|
|
}
|
|
|
|
.skills-group h3 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.85rem;
|
|
color: var(--text-dark);
|
|
margin-bottom: 12px;
|
|
letter-spacing: 1.5px;
|
|
font-weight: bold;
|
|
border-left: 2.5px solid var(--gold-leaf);
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.skill-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px 12px;
|
|
}
|
|
|
|
.dossier-folder .tag {
|
|
background: rgba(0, 0, 0, 0.03);
|
|
border: 1px solid rgba(8, 14, 13, 0.12);
|
|
color: var(--text-dark);
|
|
font-size: 0.75rem;
|
|
padding: 6px 14px;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.dossier-folder .tag:hover {
|
|
border-color: var(--cyan-accent);
|
|
background: var(--cyan-accent);
|
|
color: var(--ivory-paper);
|
|
text-shadow: none;
|
|
box-shadow: 0 0 10px rgba(80, 168, 168, 0.25);
|
|
}
|
|
|
|
/* Education Cards on Paper */
|
|
.education-card {
|
|
gap: 15px;
|
|
}
|
|
|
|
.education-card .edu-item h3 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.95rem;
|
|
color: var(--text-dark);
|
|
margin-bottom: 4px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.education-card .edu-detail {
|
|
font-size: 0.78rem;
|
|
color: rgba(8, 14, 13, 0.7);
|
|
}
|
|
|
|
.education-card .edu-divider {
|
|
height: 1px;
|
|
background: linear-gradient(90deg, transparent, rgba(8, 14, 13, 0.1), transparent);
|
|
}
|
|
|
|
/* Featured Project Cards on Paper */
|
|
.projects-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 25px;
|
|
}
|
|
|
|
.project-card {
|
|
border-left: 3px solid var(--gold-leaf) !important;
|
|
}
|
|
|
|
.project-card:hover {
|
|
border-left-color: var(--cyan-accent) !important;
|
|
}
|
|
|
|
.project-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
border-bottom: 1px solid rgba(8, 14, 13, 0.08);
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.project-header h3 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.project-tag {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.7rem;
|
|
color: rgb(140, 60, 60);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
border: 1px solid rgba(140, 60, 60, 0.25);
|
|
padding: 3px 8px;
|
|
}
|
|
|
|
.project-desc {
|
|
margin-bottom: 18px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.project-link {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--text-dark);
|
|
text-decoration: none;
|
|
letter-spacing: 1.5px;
|
|
transition: all 0.3s ease;
|
|
align-self: flex-start;
|
|
border-bottom: 1.5px solid rgba(45, 50, 48, 0.4);
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.project-link:hover {
|
|
color: var(--cyan-accent);
|
|
border-bottom-color: var(--cyan-accent);
|
|
transform: translateX(4px);
|
|
}
|
|
|
|
/* Contact Card on Paper */
|
|
.contact-card {
|
|
gap: 15px;
|
|
}
|
|
|
|
.contact-links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.contact-item {
|
|
color: var(--text-dark) !important;
|
|
text-decoration: none;
|
|
font-size: 0.85rem;
|
|
font-family: monospace;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.contact-item .label {
|
|
font-family: 'Cinzel', serif;
|
|
color: rgb(140, 60, 60);
|
|
font-weight: 700;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.contact-item:hover {
|
|
color: var(--cyan-accent) !important;
|
|
}
|
|
|
|
/* LOWER PORTION: Central Operations Panel (Soften Neon Console) */
|
|
.telemetry-section-pristine h2 {
|
|
font-family: 'Cinzel', serif;
|
|
color: var(--gold-leaf);
|
|
}
|
|
|
|
.operations-card {
|
|
border-top: 3px solid var(--gold-leaf) !important;
|
|
}
|
|
|
|
.ops-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 15px;
|
|
border-bottom: 1px solid rgba(45, 50, 48, 0.15);
|
|
padding-bottom: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.indicator-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ops-indicator {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
background-color: var(--cyan-accent);
|
|
box-shadow: 0 0 8px var(--cyan-accent);
|
|
animation: pulse 2.5s infinite alternate;
|
|
}
|
|
|
|
.ops-header h3 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.9rem;
|
|
letter-spacing: 1.5px;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
/* Mini Node Monitor Grid */
|
|
.mini-nodes-grid {
|
|
display: flex;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.mini-node {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.mini-node .node-name {
|
|
font-family: monospace;
|
|
font-size: 0.8rem;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.mini-node:hover .node-name {
|
|
color: var(--cyan-accent);
|
|
}
|
|
|
|
/* Telemetry Embedded Iframes */
|
|
.embedded-telemetry {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.embedded-telemetry {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.telemetry-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.telemetry-box h4 {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 0.78rem;
|
|
color: var(--text-dark);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.telemetry-iframe {
|
|
width: 100%;
|
|
height: 200px;
|
|
border: 1px solid var(--gold-leaf);
|
|
background: var(--ocean-dark);
|
|
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.95);
|
|
}
|
|
|
|
/* Status Indicators */
|
|
.status-indicator {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.status-indicator::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
animation: pulse 3s infinite;
|
|
}
|
|
|
|
.online {
|
|
background-color: var(--cyan-accent);
|
|
box-shadow: 0 0 6px var(--cyan-accent);
|
|
}
|
|
|
|
.online::after {
|
|
background-color: var(--cyan-accent);
|
|
}
|
|
|
|
.offline {
|
|
background-color: var(--red-glow) !important;
|
|
box-shadow: 0 0 6px var(--red-glow);
|
|
}
|
|
|
|
.offline::after {
|
|
background-color: var(--red-glow) !important;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% { transform: scale(1); opacity: 0.6; }
|
|
100% { transform: scale(3.5); opacity: 0; }
|
|
}
|
|
|
|
/* Footer & Andrew Ryan Quote */
|
|
.main-footer {
|
|
text-align: center;
|
|
margin-top: 40px;
|
|
padding-top: 30px;
|
|
border-top: 1px solid rgba(204, 172, 107, 0.15);
|
|
}
|
|
|
|
.ryan-quote {
|
|
font-family: 'Cinzel', serif;
|
|
font-size: 1.35rem;
|
|
font-weight: 400;
|
|
letter-spacing: 3px;
|
|
color: var(--gold-leaf);
|
|
margin-bottom: 12px;
|
|
text-shadow: 0 0 12px rgba(204, 172, 107, 0.15);
|
|
transition: all 0.3s ease;
|
|
user-select: none;
|
|
}
|
|
|
|
.ryan-quote:hover {
|
|
color: var(--cyan-accent);
|
|
text-shadow: 0 0 15px var(--cyan-accent);
|
|
}
|
|
|
|
.footer-sub {
|
|
color: var(--text-muted);
|
|
font-size: 0.75rem;
|
|
font-weight: 300;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
/* FEATURE: Dynamic Hover Bubbles Styles (Cursor Trail) */
|
|
.hover-bubble {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
z-index: 100;
|
|
border-radius: 50%;
|
|
transform: scale(0.6);
|
|
animation: hoverBubbleFloat 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
|
|
}
|
|
|
|
.bubble-cyan-sparkle {
|
|
background: radial-gradient(circle, rgba(80, 168, 168, 0.35) 0%, transparent 80%);
|
|
border: 0.5px solid rgba(80, 168, 168, 0.5);
|
|
box-shadow: 0 0 6px rgba(80, 168, 168, 0.2);
|
|
}
|
|
|
|
.bubble-gold-sparkle {
|
|
background: radial-gradient(circle, rgba(204, 172, 107, 0.35) 0%, transparent 80%);
|
|
border: 0.5px solid rgba(204, 172, 107, 0.5);
|
|
box-shadow: 0 0 6px rgba(204, 172, 107, 0.2);
|
|
}
|
|
|
|
@keyframes hoverBubbleFloat {
|
|
0% { transform: scale(0.5) translateY(0); opacity: 0.8; }
|
|
100% { transform: scale(1.2) translateY(-70px) translateX(var(--drift)); opacity: 0; }
|
|
}
|
|
|
|
/* FEATURE: Dynamic Glass Reflection / Light Sweep Effect */
|
|
.dossier-folder::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -150%;
|
|
width: 50%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(204, 172, 107, 0.08) 50%, transparent);
|
|
transform: skewX(-25deg);
|
|
transition: none;
|
|
z-index: 5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.dossier-folder:hover::after {
|
|
left: 150%;
|
|
transition: left 0.9s cubic-bezier(0.25, 1, 0.5, 1);
|
|
}
|
|
|
|
/* Stable breathing glow animation */
|
|
@keyframes glowPulse {
|
|
0% { text-shadow: 0 0 4px var(--cyan-accent); }
|
|
100% { text-shadow: 0 0 10px var(--cyan-accent); }
|
|
}
|
|
|
|
@keyframes lightFlicker {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.96; }
|
|
}
|