* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Unbounded', sans-serif;
}

body {
background: #000;
color: #fff;
overflow-x: hidden;
}

.header {
position: fixed;
top: 0;
width: 100%;
height: 64px;
background: rgba(0,0,0,0.8);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
z-index: 1000;
backdrop-filter: blur(10px);
}

.logo {
font-weight: 800;
font-size: 20px;
color: #ff0000;
}

.burger {
width: 30px;
height: 22px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}

.burger span {
height: 3px;
background: #fff;
border-radius: 2px;
transition: 0.3s;
}

.menu {
position: fixed;
top: 64px;
right: -100%;
width: 100%;
height: calc(100vh - 64px);
background: #000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 30px;
transition: 0.4s;
}

.menu a {
color: #fff;
font-size: 22px;
text-decoration: none;
}

.menu.active {
right: 0;
}

.hero {
padding: 120px 20px 80px;
text-align: center;
animation: fadeUp 1s ease;
}

.hero h1 {
font-size: 36px;
line-height: 1.1;
margin-bottom: 20px;
}

.hero h1 span {
color: #ff0000;
}

.hero p {
opacity: 0.8;
margin-bottom: 30px;
}

.cta {
display: inline-block;
padding: 16px 28px;
border-radius: 14px;
background: #2bbcff;
color: #000;
text-decoration: none;
font-weight: 600;
transition: 0.3s;
}

.cta:hover {
transform: scale(1.05);
}

.cta.dark {
background: #ff0000;
color: #fff;
}

.cards {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
padding: 40px 20px;
}

.card {
background: linear-gradient(135deg, #1a1a1a, #000);
border-radius: 18px;
padding: 30px;
text-align: center;
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s ease forwards;
}

.card:nth-child(2) { animation-delay: 0.2s }
.card:nth-child(3) { animation-delay: 0.4s }

.trial {
padding: 60px 20px;
text-align: center;
background: #0d0d0d;
}

.trial h2 {
color: #ff0000;
margin-bottom: 10px;
}

.footer {
text-align: center;
padding: 20px;
font-size: 12px;
opacity: 0.6;
}

@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}

@media (min-width: 768px) {
.cards {
grid-template-columns: repeat(3, 1fr);
}
.hero h1 {
font-size: 48px;
}
.menu {
position: static;
flex-direction: row;
height: auto;
background: none;
right: 0;
}
.burger {
display: none;
}
}
.trial {
padding: 60px 20px;
text-align: center;
background: linear-gradient(135deg, #0b0b0b, #140000);
border-top: 1px solid rgba(255,255,255,0.05);
}

.trial h2 {
color: #ff0000;
margin-bottom: 12px;
}

.trial p {
opacity: 0.85;
margin-bottom: 24px;
}

.footer {
padding: 24px 20px;
text-align: center;
background: #000;
border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
display: flex;
justify-content: center;
gap: 16px;
margin-bottom: 8px;
}

.footer-links a {
font-size: 12px;
color: #aaa;
text-decoration: none;
transition: 0.2s;
}

.footer-links a:hover {
color: #fff;
}

.footer-copy {
font-size: 11px;
opacity: 0.6;
}
