@font-face { 
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-style: normal;
}

 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
         font-family: 'DMSans';
    }

    body {
        width: 100vw;
        height: 100vh;
        background: url("../images/16.png") center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0rem;
        color: #fff;
        text-align: center;
        position: relative;
    }

    /* Overlay for readability */
    body::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 0;
    }
    
    .top-offer-bar {
    background: #000;
    color: #ffc316;
    font-size: 19px;
    text-transform: uppercase;
    text-align: center;
    padding: 13px 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
    .content {
        position: relative;
        z-index: 2;
        max-width: 90%;
        margin-top: 60px; 
    }

    .row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .logo {
        width: 22rem;
        max-width: 35vw;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }



    .btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        font-weight: bold;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        width: 8rem;
    }

    .yes { background: #fff; color: #000;     margin: 0.5rem;}
    .no { background: #fff; color: #000;     margin: 0.5rem;}

    /* Privacy Policy */
    .privacy {
        position: absolute;
        bottom: 2vh;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        color: #ddd;
        z-index: 2;
    }


    /* Responsive Text */
    @media (max-width: 600px) {
        h1 { font-size: 1.6rem; }
         .logo {
        max-width: 75vw;
    }
        .btn { width: 7rem; font-size: 1rem; }
        .row { gap: 1.5rem; }

            .button {
        width: 76vw;
    }
    }