Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Brand Detail View - Abyssal Nexus</title> | |
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet"> | |
<style> | |
:root { | |
--bg-dark: #0A0A0F; | |
--card-bg: #1A1A22; | |
--purple-dark: #300030; | |
--purple-medium: #600060; | |
--purple-light: #900090; | |
--text-light: #E0E0E0; | |
--text-subdued: #A0A0A0; | |
--border-light: rgba(224, 224, 224, 0.1); | |
--shadow-color: rgba(0, 0, 0, 0.4); | |
--gradient-blue: #000030; | |
--gradient-orange: #301000; | |
} | |
body { | |
margin: 0; | |
font-family: 'Roboto', sans-serif; | |
color: var(--text-light); | |
background-color: var(--bg-dark); | |
overflow: hidden; /* Prevent scrollbar from background animation */ | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
min-height: 100vh; | |
position: relative; | |
} | |
.background-container { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: | |
radial-gradient(circle at 20% 80%, var(--purple-dark) 0%, transparent 30%), | |
radial-gradient(circle at 80% 20%, var(--gradient-blue) 0%, transparent 30%), | |
radial-gradient(circle at 50% 50%, var(--gradient-orange) 0%, transparent 40%), | |
linear-gradient(135deg, var(--bg-dark) 0%, #000000 100%); | |
background-size: 200% 200%; | |
animation: cosmic-pan 30s infinite alternate ease-in-out; | |
z-index: -2; | |
} | |
.background-overlay { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%); | |
z-index: -1; | |
} | |
@keyframes cosmic-pan { | |
0% { background-position: 0% 0%; } | |
100% { background-position: 100% 100%; } | |
} | |
.star-field { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px); | |
background-size: 200px 200px; | |
opacity: 0.3; | |
z-index: -1; | |
} | |
.container { | |
max-width: 400px; | |
width: 90%; | |
padding: 30px; | |
background: rgba(0, 0, 0, 0.1); | |
border-radius: 15px; | |
box-shadow: 0 10px 30px var(--shadow-color); | |
backdrop-filter: blur(5px); | |
position: relative; | |
z-index: 1; | |
border: 1px solid rgba(255, 255, 255, 0.05); | |
} | |
.title { | |
font-family: 'Orbitron', sans-serif; | |
font-size: 2.5em; | |
font-weight: 700; | |
margin-bottom: 20px; | |
text-align: left; | |
color: var(--text-light); | |
text-shadow: 0 0 10px var(--purple-medium); | |
} | |
.brand-header { | |
margin-bottom: 30px; | |
} | |
.brand-name { | |
font-family: 'Orbitron', sans-serif; | |
font-size: 3em; | |
font-weight: 700; | |
color: var(--text-light); | |
margin-bottom: 5px; | |
text-shadow: 0 0 15px var(--purple-light); | |
} | |
.parent-company-value { | |
font-size: 1em; | |
color: var(--text-subdued); | |
font-weight: 300; | |
} | |
.details-card { | |
background-color: var(--card-bg); | |
border-radius: 10px; | |
padding: 20px; | |
box-shadow: 0 5px 20px var(--shadow-color); | |
margin-bottom: 30px; | |
border: 1px solid rgba(255, 255, 255, 0.08); | |
} | |
.detail-row { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 12px 0; | |
border-bottom: 1px solid var(--border-light); | |
} | |
.detail-row:last-child { | |
border-bottom: none; | |
} | |
.detail-label { | |
font-size: 0.95em; | |
color: var(--text-subdued); | |
font-weight: 300; | |
} | |
.detail-value { | |
font-size: 1em; | |
font-weight: 700; | |
color: var(--text-light); | |
text-align: right; | |
} | |
.status-pills { | |
display: flex; | |
gap: 10px; | |
} | |
.status-pill { | |
padding: 6px 12px; | |
border-radius: 20px; | |
font-size: 0.85em; | |
font-weight: 700; | |
border: 1px solid transparent; | |
transition: all 0.3s ease; | |
} | |
.status-pill.active { | |
background-color: var(--purple-medium); | |
color: var(--text-light); | |
border-color: var(--purple-light); | |
box-shadow: 0 0 8px rgba(144, 0, 144, 0.5); | |
} | |
.status-pill.inactive { | |
background-color: transparent; | |
color: var(--text-subdued); | |
border-color: var(--border-light); | |
} | |
.view-button { | |
width: 100%; | |
padding: 18px 25px; | |
background-color: var(--purple-medium); | |
color: var(--text-light); | |
border: none; | |
border-radius: 10px; | |
font-family: 'Orbitron', sans-serif; | |
font-size: 1.2em; | |
font-weight: 700; | |
cursor: pointer; | |
box-shadow: 0 8px 20px var(--shadow-color), 0 0 15px var(--purple-light); | |
transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; | |
text-transform: uppercase; | |
letter-spacing: 1px; | |
} | |
.view-button:hover { | |
background-color: var(--purple-light); | |
transform: translateY(-2px); | |
box-shadow: 0 12px 25px var(--shadow-color), 0 0 20px var(--purple-light); | |
} | |
.view-button:active { | |
transform: translateY(0); | |
box-shadow: 0 5px 15px var(--shadow-color), 0 0 10px var(--purple-light); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="background-container"></div> | |
<div class="background-overlay"></div> | |
<div class="star-field"></div> | |
<div class="container"> | |
<h1 class="title">Brand Details</h1> | |
<div class="brand-header"> | |
<div class="brand-name">Brand</div> | |
<div class="parent-company-value">Parent Company: $12,000.00</div> | |
</div> | |
<div class="details-card"> | |
<div class="detail-row"> | |
<div class="detail-label">Brand Status</div> | |
<div class="detail-value status-pills"> | |
<span class="status-pill active">Active</span> | |
<span class="status-pill inactive">Inactive</span> | |
</div> | |
</div> | |
<div class="detail-row"> | |
<div class="detail-label">Engagement Score</div> | |
<div class="detail-value">8.5</div> | |
</div> | |
<div class="detail-row"> | |
<div class="detail-label">Subsidiary Brands</div> | |
<div class="detail-value">12</div> | |
</div> | |
<div class="detail-row"> | |
<div class="detail-label">Parent Company</div> | |
<div class="detail-value">XYZ Corp</div> | |
</div> | |
<div class="detail-row"> | |
<div class="detail-label">Nexus Core</div> | |
<div class="detail-value">$500,000.00</div> | |
</div> | |
</div> | |
<button class="view-button">View Nexus Core</button> | |
</div> | |
</body> | |
</html> |