*{box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
--navy:#071525;
--navy-light:#102a43;
--red:#a51f3d;
--red-light:#d43d5c;
--white:#f4f7fa;
--text:#c4d0da;
--border:rgba(255,255,255,.10);
}
body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
line-height:1.75;
color:var(--text);
background:
radial-gradient(circle at 50% 0%,rgba(165,31,61,.25),transparent 38%),
linear-gradient(135deg,#040b13 0%,#08192b 55%,#050c15 100%);
}
.container{width:min(1180px,92%);margin:auto}
.hero{
padding:90px 0 70px;
border-bottom:1px solid rgba(212,61,92,.45);
background:linear-gradient(180deg,rgba(7,21,37,.96),rgba(7,21,37,.72));
}
.badge{
display:inline-block;
padding:7px 15px;
border:1px solid rgba(212,61,92,.55);
border-radius:50px;
color:#ffb7c5;
font-size:12px;
text-transform:uppercase;
letter-spacing:2px;
}
h1{
margin:22px 0;
max-width:950px;
font-size:clamp(38px,6vw,68px);
line-height:1.05;
color:#fff;
}
h2{
margin-top:65px;
margin-bottom:22px;
font-size:34px;
color:#fff;
line-height:1.2;
}
h3{color:#fff;font-size:21px;margin-bottom:10px;line-height:1.25}
p{color:var(--text);font-size:16px}
.hero-text{max-width:900px;font-size:19px}
.notice{
margin-top:30px;
padding:23px 26px;
border-left:4px solid var(--red-light);
border-radius:8px;
background:rgba(165,31,61,.13);
}
.hero-actions{margin-top:30px}
.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 30px;
border-radius:8px;
text-decoration:none;
font-weight:800;
letter-spacing:.5px;
transition:.25s ease;
}
.btn-red{
color:#fff;
background:linear-gradient(135deg,#a51f3d,#d43d5c);
box-shadow:0 12px 28px rgba(165,31,61,.30);
}
.btn-red:hover{
transform:translateY(-2px);
box-shadow:0 16px 35px rgba(165,31,61,.42);
}
nav{
position:sticky;
top:0;
z-index:20;
background:rgba(4,11,19,.94);
backdrop-filter:blur(15px);
border-bottom:1px solid var(--border);
}
.nav-inner{
display:flex;
gap:28px;
overflow-x:auto;
white-space:nowrap;
}
nav a{
display:block;
padding:16px 0;
color:#dce6ee;
text-decoration:none;
font-size:14px;
}
nav a:hover{color:#ff8da3}
.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:28px;
}
.card{
padding:25px;
border:1px solid var(--border);
border-radius:14px;
background:linear-gradient(145deg,rgba(16,42,67,.95),rgba(7,24,41,.92));
box-shadow:0 20px 45px rgba(0,0,0,.18);
}
.card p{margin-bottom:0;font-size:15px}
.category{
color:#ff91a5;
font-size:11px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:1.5px;
}
.two-column{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}
table{
width:100%;
border-collapse:collapse;
margin:30px 0;
background:rgba(7,24,41,.8);
}
th,td{
padding:14px;
text-align:left;
vertical-align:top;
border:1px solid var(--border);
}
th{color:#fff;background:rgba(165,31,61,.20)}
footer{
margin-top:80px;
padding:50px 0;
border-top:1px solid var(--border);
background:#040b13;
}
.footer-title{color:#fff;font-size:22px;font-weight:bold}
.small{color:#8495a5;font-size:13px}
@media(max-width:850px){
.grid,.two-column{grid-template-columns:1fr}
h2{font-size:28px}
.hero{padding:65px 0 50px}
}
