/* =========================
   PRIVACY POLICY
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
}
.privacy-section{
    width:100%;
    min-height:100vh;

    padding:120px 6%;

    background:#050816;

    position:relative;

    overflow:hidden;
}

/* BACKGROUND */

.privacy-bg{
    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(247,147,26,0.08),
        transparent 35%
    );

    z-index:0;
}

/* CONTAINER */

.privacy-container{
    position:relative;

    z-index:2;

    max-width:1300px;

    margin:auto;
}

/* HEADER */

.privacy-header{
    text-align:center;

    margin-bottom:80px;
}

.privacy-badge{
    display:inline-block;

    background:
    rgba(247,147,26,0.12);

    color:#f7931a;

    padding:12px 20px;

    border-radius:50px;

    margin-bottom:25px;

    border:
    1px solid rgba(247,147,26,0.2);
}

.privacy-header h1{
    font-size:65px;

    color:white;

    margin-bottom:25px;
}

.privacy-header p{
    max-width:850px;

    margin:auto;

    color:#cccccc;

    line-height:2;

    font-size:17px;
}

/* CARD */

.privacy-card{
    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    padding:40px;

    margin-bottom:30px;

    backdrop-filter:blur(12px);

    transition:0.4s;

    position:relative;

    overflow:hidden;
}

/* HOVER */

.privacy-card:hover{
    transform:translateY(-8px);

    border:
    1px solid rgba(247,147,26,0.25);

    box-shadow:
    0 0 35px rgba(247,147,26,0.12);
}

/* SHINE */

.privacy-card::before{
    content:"";

    position:absolute;

    top:-100%;

    left:-60%;

    width:80%;

    height:300%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.05),
        transparent
    );

    transform:rotate(25deg);

    transition:1s;
}

.privacy-card:hover::before{
    left:120%;
}

/* TITLES */

.privacy-card h2{
    color:#f7931a;

    font-size:30px;

    margin-bottom:20px;
}

/* TEXT */

.privacy-card p{
    color:#d5d5d5;

    line-height:2;

    margin-bottom:18px;

    font-size:16px;
}

/* WARNING CARD */

.warning-card{
    border:
    1px solid rgba(255,80,80,0.25);

    box-shadow:
    0 0 25px rgba(255,80,80,0.08);
}

/* SECURITY CARD */

.security-card{
    border:
    1px solid rgba(247,147,26,0.25);

    box-shadow:
    0 0 30px rgba(247,147,26,0.12);
}

/* CONTACT */

.contact-card a{
    display:inline-block;

    margin-top:15px;

    text-decoration:none;

    color:white;

    background:#f7931a;

    padding:15px 28px;

    border-radius:50px;

    transition:0.4s;
}

.contact-card a:hover{
    transform:translateY(-4px);

    box-shadow:
    0 0 25px rgba(247,147,26,0.35);
}

/* RESPONSIVE */

@media(max-width:768px){

    .privacy-section{
        padding:100px 20px;
    }

    .privacy-header h1{
        font-size:42px;
    }

    .privacy-header p{
        font-size:15px;
    }

    .privacy-card{
        padding:30px 25px;
    }

    .privacy-card h2{
        font-size:24px;
    }

}