:root{
--bg:#050505;
--card:rgba(255,255,255,.05);
--gold:#FFD700;
--purple:#7C3AED;
--text:#ffffff;
--muted:#bfbfbf;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:min(1180px,92%);
margin:auto;
}

.aurora{
position:fixed;
width:520px;
height:520px;
border-radius:50%;
filter:blur(120px);
opacity:.18;
z-index:-1;
animation:float 12s ease-in-out infinite;
}

.aurora-1{
background:#7C3AED;
top:-180px;
left:-120px;
}

.aurora-2{
background:#FFD700;
bottom:-180px;
right:-120px;
animation-delay:5s;
}

@keyframes float{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(40px);
}
}

.navbar{
position:sticky;
top:0;
backdrop-filter:blur(20px);
background:rgba(5,5,5,.75);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:999;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
height:78px;
}

.logo{
display:flex;
align-items:center;
gap:14px;
}

.logo-icon{
font-size:34px;
}

.logo-text h2{
font-family:'Cinzel',serif;
font-size:24px;
color:var(--gold);
}

.logo-text span{
font-size:13px;
color:#aaa;
}

.nav-menu{
display:flex;
gap:24px;
align-items:center;
}

.btn-primary{
padding:14px 24px;
border-radius:999px;
background:linear-gradient(135deg,var(--gold),#B8860B);
color:#111;
font-weight:700;
}

.btn-outline{
padding:14px 24px;
border-radius:999px;
border:1px solid rgba(255,255,255,.15);
}

.hero{
padding:110px 0 90px;
text-align:center;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(255,215,0,.12);
color:var(--gold);
margin-bottom:28px;
}

.hero h1{
font-family:'Cinzel',serif;
font-size:72px;
line-height:1.08;
margin-bottom:26px;
}

.hero h1 span{
color:var(--gold);
}

.hero p{
max-width:760px;
margin:0 auto;
font-size:19px;
line-height:1.9;
color:#d4d4d4;
}

.hero-action{
display:flex;
justify-content:center;
gap:18px;
margin-top:40px;
flex-wrap:wrap;
}

.hero-stats{
display:flex;
justify-content:center;
gap:26px;
margin-top:60px;
flex-wrap:wrap;
}

.stat{
min-width:180px;
padding:24px;
background:var(--card);
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
backdrop-filter:blur(18px);
}

.stat h2{
color:var(--gold);
font-size:34px;
margin-bottom:8px;
}

.section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-family:'Cinzel',serif;
font-size:42px;
margin-bottom:10px;
color:var(--gold);
}

.section-title p{
color:var(--muted);
}

.mood-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
}

.mood-grid a{
background:var(--card);
border:1px solid rgba(255,255,255,.08);
padding:22px;
border-radius:20px;
text-align:center;
transition:.3s;
}

.mood-grid a:hover{
transform:translateY(-8px);
border-color:var(--gold);
box-shadow:0 20px 45px rgba(255,215,0,.15);
}

@media(max-width:768px){

.hero h1{
font-size:48px;
}

.navbar .container{
flex-direction:column;
height:auto;
padding:18px 0;
}

.nav-menu{
flex-wrap:wrap;
justify-content:center;
margin-top:18px;
}

}
