body{
margin:0;
font-family:Arial;
background:#0b0f1a;
color:white;
}

/* HEADER */

.header{
background:#020617;
border-bottom:2px solid #d4af37;
position:sticky;
top:0;
z-index:100;
}

.header-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 30px;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo-star{
color:#d4af37;
font-size:28px;
}

.logo-text{
display:flex;
flex-direction:column;
}

.title{
font-weight:bold;
font-size:18px;
}

.logo-text .subtitle{
font-size:11px;
color:#aaa;
}

/* NAV */

.nav{
display:flex;
gap:25px;
}

.nav a{
color:#ddd;
text-decoration:none;
font-size:14px;
}

.nav a:hover{
color:#d4af37;
}

/* PLAY BUTTON */

.play-button{
background:#6366f1;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:bold;
}

.play-button:hover{
background:#7c7fff;
}

/* HERO */

.hero{
position:relative;
height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:url("../images/3.png") center/cover no-repeat;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(2,6,23,0.8),rgba(2,6,23,0.9));
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.hero h1{
font-size:64px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
color:#ccc;
}

.hero-buttons{
margin-top:35px;
}

.btn{
padding:12px 30px;
border-radius:6px;
margin:10px;
text-decoration:none;
}

.primary{
background:#6366f1;
color:white;
}

.secondary{
border:1px solid white;
color:white;
}

/* LORE */

.lore{
padding:120px;
text-align:center;
background:#020617;
background:url("../images/1.png") center/cover no-repeat;
}

/* FEATURES */

.features{
padding:100px 60px;
text-align:center;
max-width:1200px;
margin:auto;
background:#333333;
}

.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.feature{
background:#1e293b;
padding:30px;
border-radius:10px;
}

/* NEWS */

.news{
padding:120px 60px;
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:60px;
}

.news-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.news-card{
background:#1e293b;
border-radius:12px;
overflow:hidden;
transition:0.3s;
}

.news-card:hover{
transform:translateY(-6px);
}

.news-image{
position:relative;
}

.news-image img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}

.news-tag{
position:absolute;
top:10px;
left:10px;
background:#d4af37;
color:black;
padding:4px 10px;
border-radius:4px;
font-size:12px;
}

.news-content{
padding:20px;
}

.news-content p{
color:#bbb;
}

.news-meta{
margin-top:15px;
display:flex;
justify-content:space-between;
font-size:13px;
color:#888;
}

.news-read{
color:#d4af37;
text-decoration:none;
}

/* FOOTER */

.footer{
background:#020617;
border-top:2px solid #d4af37;
margin-top:120px;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:60px 40px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.brand-logo{
display:flex;
align-items:center;
gap:10px;
margin-bottom:15px;
}

.star{
font-size:30px;
color:#d4af37;
}

.footer .subtitle{
font-size:13px;
color:#aaa;
}

.brand-desc{
color:#aaa;
max-width:400px;
}

.footer-links ul{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
color:#aaa;
text-decoration:none;
}

.footer-links a:hover{
color:#d4af37;
}

.social-icons{
display:flex;
gap:10px;
}

.social-icons a{
width:35px;
height:35px;
display:flex;
align-items:center;
justify-content:center;
background:#1e293b;
border-radius:6px;
color:white;
text-decoration:none;
}

.social-icons a:hover{
background:#d4af37;
}

.footer-bottom{
border-top:1px solid #333;
margin-top:40px;
padding-top:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.language{
display:flex;
gap:10px;
align-items:center;
}