    body{
        margin:0;
        font-family: Arial, sans-serif;
        background:#111827;
        color:#fff;
        line-height:1.6;
    }

    header{
        text-align:center;
        padding:20px;
    }

    header h1{
        color:#fbbf24;
        font-size:2.1rem;
        letter-spacing:1px;
        margin-bottom:0;
    }

    .container{
        width:90%;
        max-width:900px;
        margin:30px auto;
        background:#1f2937;
        padding:25px;
        border-radius:12px;
        box-shadow:0 0 15px rgba(0,0,0,0.4);
    }

    h2{
        color:#fbbf24;
        margin-bottom:8px;
    }

    p{
        font-size:1rem;
    }

    .button{
        display:inline-block;
        margin-top:25px;
        background:#fbbf24;
        color:#111827;
        font-weight:bold;
        padding:10px 20px;
        border-radius:8px;
        text-decoration:none;
        transition:.3s;
    }

    .button:hover{
        background:#fff3c4;
    }

