
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Segoe UI", Arial, sans-serif;
}

body{
background:#0f0f1a;
color:#fff;
line-height:1.6;
}

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

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
width:100%;
top:0;
background:#111;
z-index:1000;
border-bottom:1px solid #222;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-size:28px;
font-weight:700;
letter-spacing:1px;
color:#f7c948;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav ul li a{
font-size:15px;
opacity:0.9;
}

nav ul li a:hover{
color:#f7c948;
}

/* hamburger */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO */

.hero{
padding-top:120px;
padding-bottom:100px;
background:linear-gradient(135deg,#1a1a2e,#0f3460);
text-align:center;
}

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

.hero p{
font-size:18px;
opacity:0.9;
margin-bottom:30px;
}

.bonus{
font-size:24px;
color:#f7c948;
margin-bottom:30px;
}

.cta{
background:#f7c948;
color:#000;
padding:15px 35px;
border-radius:30px;
font-weight:700;
display:inline-block;
transition:0.3s;
}

.cta:hover{
background:#ffde70;
}

/* SECTIONS */

section{
padding:80px 0;
}

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

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

.card{
background:#181828;
padding:30px;
border-radius:12px;
text-align:center;
border:1px solid #2a2a3f;
}

.card h3{
margin-bottom:10px;
color:#f7c948;
}

/* PAYMENTS */

.payments{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
margin-top:20px;
}

.payment{
background:#1a1a2e;
padding:10px 18px;
border-radius:8px;
font-size:14px;
}

/* CTA SECTION */

.cta-section{
text-align:center;
background:linear-gradient(135deg,#0f3460,#16213e);
}

.cta-section h2{
margin-bottom:20px;
}

/* FOOTER */

footer{
background:#080810;
padding:40px 0;
text-align:center;
font-size:14px;
}

.languages{
margin-top:20px;
}

.languages a{
margin:0 10px;
opacity:0.8;
}

.languages a:hover{
color:#f7c948;
}

/* MOBILE */

@media(max-width:768px){

nav ul{
display:none;
flex-direction:column;
position:absolute;
top:60px;
left:0;
width:100%;
background:#111;
padding:20px 0;
}

nav ul.active{
display:flex;
}

nav ul li{
text-align:center;
padding:10px 0;
}

.hamburger{
display:block;
}

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

}