*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(180deg,#050505 0%,#2b0000 35%,#5a0000 65%,#050505 100%);
    color:#ffffff;
    line-height:1.7;
}

img{
    max-width:100%;
    height:auto;
}

/* HEADER */
header{
    background:rgba(0,0,0,0.92);
    border-bottom:2px solid #FFD700;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:10;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#FFD700;
    text-shadow:0 0 12px rgba(255,215,0,0.5);
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo span{
    color:#ffd700;
    font-size:28px;
    font-weight:800;
}

nav{
    display:flex;
    align-items:center;
    gap:20px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
}

nav a:hover{
    color:#FFD700;
}

.header-btn{
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(180deg,#ffd700,#c89b00);
    color:#000 !important;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    box-shadow:
        0 0 15px rgba(255,215,0,.5),
        inset 0 1px 0 rgba(255,255,255,.5);
}

/* HERO */
.hero{
    padding:70px 5% 90px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
        radial-gradient(circle at center,rgba(255,215,0,0.18),transparent 30%),
        linear-gradient(180deg,rgba(0,0,0,0.35),rgba(0,0,0,0.85)),
        linear-gradient(135deg,#050505 0%,#260000 45%,#5a0000 100%);
    border-bottom:1px solid rgba(255,215,0,0.35);
}

.hero-content{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.hero-content img{
    width:100%;
    max-width:1200px;
    height:auto;
    object-fit:contain;
    border-radius:20px;
    display:block;
    margin:0 auto 35px;
    box-shadow:0 0 40px rgba(255,215,0,.25);
}

.hero-badge{
    display:inline-block;
    color:#FFD700;
    border:1px solid rgba(255,215,0,0.45);
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:25px;
    background:rgba(0,0,0,0.45);
    font-weight:700;
}

.hero h1{
    font-size:72px;
    color:#FFD700;
    text-shadow:0 0 18px rgba(255,215,0,0.7);
    margin-bottom:12px;
    line-height:1.2;
}

.hero h2{
    font-size:30px;
    color:#ffffff;
    margin-bottom:18px;
}

.hero p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    color:#f4f4f4;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    background:linear-gradient(135deg,#FFD700,#D4AF37);
    color:#000000;
    padding:15px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 8px 25px rgba(255,215,0,0.35);
}

.btn-outline{
    background:transparent;
    color:#FFD700;
    border:2px solid #FFD700;
}

/* SECTION */
.section{
    padding:80px 8%;
}

.section h2{
    text-align:center;
    color:#FFD700;
    font-size:36px;
    margin-bottom:25px;
}

.section-intro{
    max-width:850px;
    margin:0 auto 45px;
    text-align:center;
    color:#eeeeee;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.card{
    background:rgba(75,0,0,0.45);
    border:1px solid rgba(255,215,0,0.28);
    border-radius:18px;
    padding:28px;
    box-shadow:0 0 25px rgba(0,0,0,0.35);
}

.card h3{
    color:#FFD700;
    margin-bottom:12px;
}

/* ABOUT */
.about-box{
    max-width:1000px;
    margin:0 auto;
    background:rgba(0,0,0,0.45);
    border:1px solid rgba(255,215,0,0.25);
    border-radius:20px;
    padding:35px;
    text-align:left;
}

.about-box p{
    text-align:left;
    line-height:1.8;
    margin-bottom:18px;
    font-size:16px;
}

/* FAQ */
.faq{
    max-width:900px;
    margin:auto;
}

details{
    background:rgba(0,0,0,0.45);
    border:1px solid rgba(255,215,0,0.25);
    border-radius:12px;
    margin-bottom:15px;
    padding:18px 22px;
}

summary{
    cursor:pointer;
    color:#FFD700;
    font-weight:700;
}

details p{
    margin-top:12px;
    color:#eeeeee;
}

.center{
    text-align:center;
}

section{
    scroll-margin-top:100px;
}

/* FOOTER */
footer{
    background:#050505;
    color:#D4AF37;
    text-align:center;
    padding:35px 8%;
    border-top:1px solid #FFD700;
}

/* MOBILE */
@media(max-width:768px){

    header{
        padding:15px 18px 18px;
        display:grid;
        grid-template-columns:1fr auto;
        grid-template-areas:
            "logo button"
            "menu menu";
        align-items:center;
        gap:16px;
    }

    .logo{
        grid-area:logo;
        width:auto;
    }

    .logo img{
        width:50px;
        height:50px;
    }

    .logo span{
        font-size:24px;
        white-space:nowrap;
    }

    .header-btn{
        grid-area:button;
        position:static;
        margin:0;
        padding:12px 24px;
        min-width:145px;
        text-align:center;
        font-size:14px;
    }

    nav{
        grid-area:menu;
        width:100%;
        margin-top:0;
        display:flex;
        flex-wrap:wrap;
        justify-content:flex-start;
        gap:12px 20px;
    }

    nav a{
        margin:0;
        font-size:15px;
        font-weight:700;
    }

    .hero{
        padding:30px 15px 60px;
        overflow:hidden;
    }

    .hero h1{
        font-size:40px;
        line-height:1.15;
    }
}