
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0f;
    color:#fff;
    line-height:1.7;
}

header{
    background:#000;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(212,175,55,0.2);
}

header h2{
    font-family:'Playfair Display',serif;
    color:#d4af37;
    letter-spacing:2px;
}

nav a{
    margin-left:25px;
    color:#ccc;
    font-size:14px;
}

nav a:hover{
    color:#d4af37;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:100px 20px;
}

.hero{
    display:flex;
    gap:60px;
    align-items:center;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-family:'Playfair Display',serif;
    font-size:56px;
    line-height:1.2;
    margin-bottom:30px;
}

.gold{
    color:#d4af37;
}

.btn{
    display:inline-block;
    padding:16px 45px;
    background:linear-gradient(135deg,#d4af37,#b8902c);
    color:#000;
    font-weight:600;
    border-radius:50px;
    margin-top:20px;
}

.hero-right{
    flex:1;
    height:450px;
    background:radial-gradient(circle at center,#d4af37 0%,#000 60%);
    border-radius:30px;
    box-shadow:0 0 60px rgba(212,175,55,0.4);
}

.section-dark{
    background:#111115;
    padding:80px 40px;
    border-radius:30px;
    margin-top:100px;
}

h2{
    font-family:'Playfair Display',serif;
    font-size:36px;
    margin-bottom:30px;
    color:#d4af37;
}

.trust{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:50px;
}

.trust div{
    background:#1a1a20;
    padding:40px;
    border-radius:25px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.2);
}

.price{
    font-size:40px;
    color:#d4af37;
    margin:20px 0;
}

.countdown{
    margin-top:20px;
    font-size:20px;
    color:#ff4d4d;
}

footer{
    margin-top:120px;
    background:#000;
    text-align:center;
    padding:50px;
    border-top:1px solid rgba(212,175,55,0.2);
}

@media(max-width:768px){
    .hero{flex-direction:column}
    .hero-left h1{font-size:40px}
}
