/*==================================================
                RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

:root{

    --gold:#FFD54A;

    --gold-dark:#E8B923;

    --blue:#2563EB;

    --dark:#080808;

    --card:#171717;

    --light:#F5F5F5;

    --text:#CFCFCF;

    --white:#FFFFFF;

    --shadow:0 20px 45px rgba(0,0,0,.35);

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--dark);

    color:var(--white);

    font-family:'Poppins',sans-serif;

    line-height:1.9;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*==================================================
                HEADER
==================================================*/

.header{

    position:relative;

    top:0;

    left:0;

    width:100%;

    z-index:999;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(14px);

}

.logo img{

    width:165px;

}

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:white;

    font-weight:600;

    transition:.35s;

}

.navbar a:hover{

    color:var(--gold);

}


/*==================================================
                HERO
==================================================*/

.hero{

    position:relative;

    min-height:65vh;

    background:

    linear-gradient(

    rgba(0,0,0,.75),

    rgba(0,0,0,.75)

    ),

    url("image/backgroundimg.png");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:0px 8% 90px;

}

.hero-content{

    max-width:850px;

}

.badge{

    display:inline-block;

    background:rgba(255,213,74,.15);

    color:var(--gold);

    padding:2px 28px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:0px;

}

.hero h1{

    font-size:60px;

}

.hero p{

    color:#dddddd;

    font-size:22px;
}

.hero-info{

    margin-top:0px;

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

}

.hero-info div{

    background:rgba(255,255,255,.08);

    padding:25px 35px;

    border-radius:18px;

    min-width:220px;

}

.hero-info h3{

    color:var(--gold);

    margin-bottom:8px;

}

.hero-info span{

    color:#eeeeee;

}

/*==================================================
            MAIN LAYOUT
==================================================*/

.terms-layout{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:45px;

    max-width:1500px;

    margin:auto;

    padding:80px 8%;

}


/*==================================================
            SIDEBAR
==================================================*/

.sidebar{

    position:sticky;

    top:120px;

    align-self:start;

    background:var(--card);

    padding:35px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.sidebar h2{

    color:var(--gold);

    margin-bottom:25px;

}

.sidebar ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.sidebar a{

    color:#cccccc;

    transition:.3s;

}

.sidebar a:hover{

    color:var(--gold);

    padding-left:10px;

}

/*==================================================
            CONTENT
==================================================*/

.terms-content{

    display:flex;

    flex-direction:column;

    gap:35px;

}

/*==================================================
            HELP SECTION
==================================================*/

.help-section{

    margin-top:80px;

    background:linear-gradient(
        135deg,
        #151515,
        #1f1f1f
    );

    border-radius:30px;

    padding:70px 50px;

    text-align:center;

    box-shadow:var(--shadow);

}

.help-section h2{

    font-size:44px;

    color:var(--gold);

    margin-bottom:20px;

}

.help-section p{

    max-width:700px;

    margin:0 auto 40px;

    color:#d5d5d5;

    line-height:2;

    font-size:18px;

}

/*==================================================
            HELP BUTTONS
==================================================*/

.help-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.contact-btn,

.join-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:18px 35px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.contact-btn{

    background:transparent;

    border:2px solid var(--gold);

    color:var(--gold);

}

.contact-btn:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}


.join-btn{

    background:linear-gradient(
        135deg,
        var(--blue),
        var(--gold)
    );

    color:white;

}

.join-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(37,99,235,.35);

}


/*==================================================
                FOOTER
==================================================*/

.footer{

    margin-top:90px;

    background:#111;

    padding:50px 8%;

    text-align:center;

}

.footer img{

    width:140px;

    margin:0 auto 20px;

}

.footer p{

    color:#bfbfbf;

    margin-bottom:30px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.footer-links a{

    color:var(--gold);

    transition:.35s;

}

.footer-links a:hover{

    color:white;

}

/*==================================================
            BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    transform:translateY(-6px);

}


/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-dark);

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1100px){

.terms-layout{

grid-template-columns:1fr;

}

.sidebar{

position:relative;

top:0;

}

}

@media(max-width:768px){

.hero{

padding:150px 25px 80px;

min-height:auto;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.hero-info{

flex-direction:column;

}

.hero-info div{

width:100%;

}

.navbar{

flex-direction:column;

gap:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.intro-card{

padding:30px;

}

.term-card{

padding:30px;

}

.term-card h2{

font-size:26px;

}

.help-section{

padding:45px 25px;

}

.help-section h2{

font-size:34px;

}

.help-buttons{

flex-direction:column;

}

.contact-btn,

.join-btn{

width:100%;

}

.footer-links{

flex-direction:column;

gap:15px;

}

.back-top{

width:50px;

height:50px;

font-size:18px;

right:20px;

bottom:20px;

}

}

/*==================================================
            POLISH
==================================================*/

.term-card,
.intro-card,
.help-section,
.sidebar{

transition:.35s;

}

.sidebar:hover{

box-shadow:0 25px 60px rgba(255,213,74,.12);

}

html{

scroll-padding-top:120px;

}

.print-btn{

position:fixed;

bottom:100px;

right:30px;

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#2563EB;

color:white;

font-size:22px;

cursor:pointer;

box-shadow:0 15px 35px rgba(0,0,0,.3);

transition:.35s;

z-index:999;

}

.print-btn:hover{

transform:translateY(-5px);

}

























