@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root{
    --primary:#0f172a;
    --secondary:#1e40af;
    --accent:#f59e0b;
    --success:#16a34a;
    --danger:#dc2626;
    --bg:#eef2f7;
    --glass:rgba(255,255,255,0.88);
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:radial-gradient(circle at top,#e0e7ff,#f8fafc);
    color:#0f172a;
}

/* ===== HERO ===== */
.hero{
    background:linear-gradient(135deg,#020617,#1e3a8a);
    color:#fff;
    padding:70px 20px;
    text-align:center;
}

.hero h1{
    font-size:40px;
    margin:0;
    font-weight:700;
}

.hero h2{
    font-size:22px;
    margin-top:10px;
    font-weight:500;
    color:#fde68a;
}

.hero .subtitle{
    margin-top:14px;
    font-size:16px;
    opacity:.95;
}

.hero .badge{
    display:inline-block;
    margin-top:18px;
    padding:8px 20px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    font-size:14px;
}

/* ===== CONTAINER ===== */
.container{
    max-width:1200px;
    margin:-50px auto 40px;
    padding:20px;
}

/* ===== CARD ===== */
.card{
    background:var(--glass);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:30px 34px;
    margin-bottom:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    position:relative;
}

.card::before{
    content:"";
    position:absolute;
    top:0;left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
}

/* ===== SECTION TITLE ===== */
.section-title{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:22px;
    font-weight:600;
    margin-bottom:16px;
}

.section-title span{
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--secondary),#2563eb);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

/* ===== LIST ===== */
ul{
    padding-left:22px;
    margin:0;
}
li{
    margin-bottom:10px;
    line-height:1.75;
}

/* ===== BOXES ===== */
.info{
    background:#eff6ff;
    border-left:6px solid var(--secondary);
    padding:16px 18px;
    border-radius:10px;
    font-weight:500;
}
.warning{
    background:#fff7ed;
    border-left:6px solid var(--accent);
    padding:16px 18px;
    border-radius:10px;
    font-weight:500;
}
.danger{
    background:#fee2e2;
    border-left:6px solid var(--danger);
    padding:16px 18px;
    border-radius:10px;
    font-weight:600;
}

/* ===== BADGES ===== */
.badge-mini{
    display:inline-block;
    padding:4px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-right:8px;
}
.blue{background:#dbeafe;color:#1e40af}
.red{background:#fee2e2;color:#991b1b}
.green{background:#dcfce7;color:#166534}

/* ===== DECLARATION ===== */
.declaration{
    position:sticky;
    bottom:0;
    background:linear-gradient(135deg,#1e40af,#020617);
    color:#fff;
    padding:22px;
    border-radius:16px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
}

.declaration label{
    display:flex;
    gap:12px;
    align-items:flex-start;
    font-size:15px;
}

.declaration input{
    transform:scale(1.3);
    margin-top:4px;
}

.declaration button{
    padding:12px 28px;
    border:none;
    border-radius:30px;
    background:var(--accent);
    font-size:15px;
    font-weight:600;
    opacity:.6;
    cursor:not-allowed;
}
.declaration button.active{
    opacity:1;
    cursor:pointer;
}

/* ===== FOOTER ===== */
.footer{
    text-align:center;
    font-size:14px;
    color:#475569;
    padding:14px;
}