:root{
--gold:#CFAF5E;
--gold-light:#F2D27A;
--black:#070707;
--dark:#0d0d0d;
--card:#111111;
}

/* RESET */

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

body{
font-family:'Poppins',sans-serif;
background:var(--black);
color:white;
padding-top:100px;
overflow-x:hidden;
}

/* PARTICULES */

#particles{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
pointer-events:none;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.85);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(207,175,94,0.2);
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
}

.logo img{
height:60px;
}

.nav-links a{
color:white;
text-decoration:none;
margin-left:35px;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:var(--gold);
}

/* HERO */

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:radial-gradient(circle at center,#111 0%,#000 70%);
position:relative;
overflow:hidden;
}

.hero h1{
font-size:70px;
background:linear-gradient(45deg,var(--gold),var(--gold-light));
-webkit-background-clip:text;
color:transparent;
}

.hero p{
margin-top:25px;
font-size:20px;
opacity:0.85;
}

/* SECTIONS */

.section{
padding:120px 20px;
text-align:center;
}

.section h2{
font-size:48px;
margin-bottom:50px;
background:linear-gradient(45deg,var(--gold),var(--gold-light));
-webkit-background-clip:text;
color:transparent;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
max-width:1200px;
margin:auto;
}

/* CARDS */

.card{
background:var(--card);
border:1px solid rgba(207,175,94,0.15);
border-radius:20px;
padding:35px;
transition:0.6s;
opacity:0;
transform:translateY(40px);
}

.card.visible{
opacity:1;
transform:translateY(0);
}

.card:hover{
border-color:var(--gold);
box-shadow:0 0 40px rgba(207,175,94,0.2);
transform:translateY(-8px);
}

.card h3{
color:var(--gold-light);
margin-bottom:15px;
font-size:20px;
}

.card p{
opacity:0.85;
line-height:1.6;
}

/* BUTTON PREMIUM */

.btn{
background:linear-gradient(45deg,var(--gold),var(--gold-light));
color:black;
padding:14px 45px;
border-radius:40px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:0.3s;
animation:vipPulse 3s infinite ease-in-out;
}

@keyframes vipPulse{
0%{box-shadow:0 0 20px rgba(207,175,94,0.3);}
50%{box-shadow:0 0 60px rgba(207,175,94,0.7);}
100%{box-shadow:0 0 20px rgba(207,175,94,0.3);}
}

.btn:hover{
transform:scale(1.08);
box-shadow:0 0 90px rgba(207,175,94,1);
}

/* DIFFERENCE SECTION */

.difference-section{
padding:140px 20px;
background:#0a0a0a;
text-align:center;
}

.difference-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:60px;
max-width:1100px;
margin:auto;
}

.difference-col{
flex:1;
min-width:300px;
font-size:18px;
line-height:2.2;
}

.negative p{color:#888;}
.positive p{color:var(--gold-light);font-weight:500;}

/* SELECTION SECTION */

.selection-section{
padding:160px 20px;
text-align:center;
background:linear-gradient(180deg,#000,#111);
border-top:1px solid rgba(207,175,94,0.2);
border-bottom:1px solid rgba(207,175,94,0.2);
}

.selection-section h2{
font-size:55px;
background:linear-gradient(45deg,var(--gold),var(--gold-light));
-webkit-background-clip:text;
color:transparent;
margin-bottom:40px;
}

.selection-section p{
max-width:800px;
margin:auto;
line-height:1.9;
font-size:20px;
opacity:0.9;
}

/* FOOTER */

footer{
padding:60px;
background:#000;
text-align:center;
border-top:1px solid rgba(207,175,94,0.2);
font-size:14px;
opacity:0.8;
}

/* COOKIE BANNER */

.cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
border-top:1px solid rgba(207,175,94,0.3);
padding:20px;
display:none;
z-index:2000;
}

.cookie-content{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;
gap:20px;
}

.cookie-content p{
font-size:14px;
opacity:0.85;
max-width:700px;
}

.btn-outline{
background:transparent;
border:1px solid var(--gold);
color:var(--gold);
padding:10px 20px;
border-radius:25px;
cursor:pointer;
transition:0.3s;
}

.btn-outline:hover{
background:var(--gold);
color:black;
}

/* RESPONSIVE */

@media(max-width:768px){

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

.section h2{
font-size:32px;
}

.nav-container{
padding:20px;
}

.nav-links a{
margin-left:20px;
}

}

/* PARALLAX BACKGROUND */

.parallax-section{
position:relative;
background-attachment:fixed;
background-position:center;
background-repeat:no-repeat;
background-size:cover;
}

.parallax-dark{
background-image:
linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
radial-gradient(circle at center, rgba(207,175,94,0.1) 0%, transparent 70%);
}

/* STORY ENHANCED */

.story-block{
max-width:900px;
margin:auto;
background:#111;
padding:80px;
border-radius:20px;
border:1px solid rgba(207,175,94,0.2);
box-shadow:0 0 60px rgba(0,0,0,0.6);
position:relative;
}

.story-subtitle{
font-size:22px;
margin-bottom:20px;
color:#F2D27A;
letter-spacing:1px;
}

.story-divider{
width:80px;
height:3px;
background:linear-gradient(90deg,#CFAF5E,#F2D27A);
margin:30px auto 60px auto;
}

.story-separator{
width:100%;
height:1px;
background:linear-gradient(to right, transparent, rgba(207,175,94,0.3), transparent);
margin:50px 0;
}
