285 lines
5.6 KiB
Text
285 lines
5.6 KiB
Text
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--cyan: #38f8ff;
|
|
--pink: #ff3df2;
|
|
--purple: #9b5cff;
|
|
--text: #e9f7ff;
|
|
--muted: rgba(226, 241, 255, 0.72);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
color: var(--text);
|
|
background:
|
|
linear-gradient(180deg, rgba(2, 5, 18, 0.28), rgba(2, 5, 18, 0.92)),
|
|
url("/images/cyberpunk-bg.png") center center / cover fixed;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(circle at 50% 12%, rgba(56, 248, 255, 0.26), transparent 22%),
|
|
radial-gradient(circle at 25% 45%, rgba(255, 61, 242, 0.2), transparent 28%),
|
|
radial-gradient(circle at 80% 48%, rgba(155, 92, 255, 0.18), transparent 28%),
|
|
rgba(0, 0, 20, 0.34);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.hero,
|
|
.topbar,
|
|
.grid {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero {
|
|
width: min(1380px, calc(100% - 48px));
|
|
margin: 28px auto 18px;
|
|
min-height: 185px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 26px;
|
|
}
|
|
|
|
.hero-logo {
|
|
width: 122px;
|
|
height: 122px;
|
|
object-fit: contain;
|
|
filter:
|
|
drop-shadow(0 0 14px rgba(56, 248, 255, 0.95))
|
|
drop-shadow(0 0 34px rgba(255, 61, 242, 0.55));
|
|
}
|
|
|
|
.hero h1 {
|
|
margin: 0;
|
|
font-size: clamp(62px, 8vw, 126px);
|
|
line-height: 0.9;
|
|
letter-spacing: -0.08em;
|
|
color: #ffffff;
|
|
text-shadow:
|
|
0 0 10px rgba(56, 248, 255, 0.95),
|
|
0 0 26px rgba(47, 125, 255, 0.7),
|
|
0 0 48px rgba(255, 61, 242, 0.52);
|
|
}
|
|
|
|
.hero h1 span {
|
|
color: var(--cyan);
|
|
}
|
|
|
|
.hero p {
|
|
margin: 18px 0 0 8px;
|
|
color: rgba(230, 247, 255, 0.8);
|
|
letter-spacing: 0.34em;
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
text-shadow: 0 0 10px rgba(56, 248, 255, 0.75);
|
|
}
|
|
|
|
.topbar {
|
|
width: min(1180px, calc(100% - 48px));
|
|
margin: 0 auto 28px;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(260px, 1fr));
|
|
gap: 18px;
|
|
}
|
|
|
|
.stat,
|
|
.weather,
|
|
.searchbox {
|
|
min-height: 76px;
|
|
padding: 15px 18px;
|
|
border-radius: 22px;
|
|
border: 1px solid rgba(56, 248, 255, 0.34);
|
|
background:
|
|
linear-gradient(135deg, rgba(7, 13, 39, 0.84), rgba(16, 10, 45, 0.62)),
|
|
radial-gradient(circle at top right, rgba(255, 61, 242, 0.14), transparent 40%);
|
|
box-shadow:
|
|
0 0 18px rgba(56, 248, 255, 0.14),
|
|
inset 0 0 28px rgba(56, 248, 255, 0.04);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.stat {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
letter-spacing: 0.16em;
|
|
}
|
|
|
|
.stat b {
|
|
display: block;
|
|
margin-top: 7px;
|
|
color: var(--cyan);
|
|
font-size: 20px;
|
|
letter-spacing: normal;
|
|
text-shadow: 0 0 14px rgba(56, 248, 255, 0.9);
|
|
}
|
|
|
|
.weather {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
color: var(--cyan);
|
|
font-weight: 900;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.weather b {
|
|
font-size: 24px;
|
|
text-shadow: 0 0 14px rgba(56, 248, 255, 0.9);
|
|
}
|
|
|
|
.weather span {
|
|
margin-top: 4px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.searchbox {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.search {
|
|
width: 100%;
|
|
border: 0;
|
|
outline: 0;
|
|
color: white;
|
|
font-size: 18px;
|
|
background: transparent;
|
|
}
|
|
|
|
.search::placeholder {
|
|
color: rgba(226, 241, 255, 0.65);
|
|
}
|
|
|
|
.grid {
|
|
width: min(1180px, calc(100% - 48px));
|
|
margin: 0 auto 42px;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(260px, 1fr));
|
|
gap: 18px;
|
|
}
|
|
|
|
.panel {
|
|
min-height: 235px;
|
|
padding: 20px;
|
|
border-radius: 26px;
|
|
border: 1px solid rgba(56, 248, 255, 0.3);
|
|
background:
|
|
linear-gradient(135deg, rgba(8, 14, 39, 0.84), rgba(20, 8, 50, 0.6)),
|
|
radial-gradient(circle at top right, rgba(255, 61, 242, 0.14), transparent 38%),
|
|
radial-gradient(circle at bottom left, rgba(56, 248, 255, 0.12), transparent 42%);
|
|
box-shadow:
|
|
0 0 18px rgba(56, 248, 255, 0.14),
|
|
0 0 42px rgba(155, 92, 255, 0.1),
|
|
inset 0 0 38px rgba(56, 248, 255, 0.04);
|
|
backdrop-filter: blur(18px);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.panel::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 26px;
|
|
padding: 1px;
|
|
background: linear-gradient(135deg, rgba(56, 248, 255, 0.78), rgba(255, 61, 242, 0.48), rgba(155, 92, 255, 0.42));
|
|
mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.infrastructure,
|
|
.future {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.panel h2 {
|
|
margin: 0 0 16px;
|
|
color: var(--cyan);
|
|
font-size: 15px;
|
|
letter-spacing: 0.2em;
|
|
text-shadow:
|
|
0 0 10px rgba(56, 248, 255, 0.95),
|
|
0 0 22px rgba(255, 61, 242, 0.35);
|
|
}
|
|
|
|
.cards {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.cards.two {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.cards a {
|
|
min-height: 72px;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
color: white;
|
|
border-radius: 18px;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background:
|
|
linear-gradient(90deg, rgba(56, 248, 255, 0.14), rgba(255, 61, 242, 0.08)),
|
|
rgba(2, 8, 24, 0.46);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
font-weight: 900;
|
|
letter-spacing: 0.03em;
|
|
transition: 0.18s ease;
|
|
box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.035);
|
|
}
|
|
|
|
.cards a:hover {
|
|
transform: translateY(-3px) scale(1.01);
|
|
border-color: rgba(56, 248, 255, 0.78);
|
|
box-shadow:
|
|
0 0 18px rgba(56, 248, 255, 0.3),
|
|
0 0 34px rgba(255, 61, 242, 0.18);
|
|
}
|
|
|
|
.cards span {
|
|
margin-top: 6px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.hero {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero p {
|
|
margin-left: 0;
|
|
letter-spacing: 0.18em;
|
|
}
|
|
|
|
.topbar,
|
|
.grid,
|
|
.cards.two {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.infrastructure,
|
|
.future {
|
|
grid-column: auto;
|
|
}
|
|
}
|