/* ===========================================
   ORO TOKEN
   MAIN STYLE
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    "Segoe UI",
    sans-serif;

    background:#070707;

    color:#ffffff;

    overflow-x:hidden;

}

/* ===========================
BACKGROUND
=========================== */

.background{

    position:fixed;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:
    radial-gradient(circle at top,#3a2b00,#070707 65%);

    z-index:-2;

}

/* ===========================
HEADER
=========================== */

.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

}

.logo-area{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo{

    width:46px;

    height:46px;

}

.logo-area h1{

    font-size:18px;

    color:#FFD54A;

}

.logo-area span{

    font-size:12px;

    color:#999;

}

/* ===========================
LANGUAGE
=========================== */

#language{

    background:#161616;

    color:white;

    border:1px solid #333;

    padding:8px 10px;

    border-radius:12px;

}

/* ===========================
HERO
=========================== */

.hero{

    text-align:center;

    padding:40px 20px;

}

.hero-logo{

    width:130px;

    margin-bottom:20px;

}

.hero h2{

    font-size:30px;

    line-height:1.3;

    margin-bottom:18px;

}

.hero p{

    color:#bbbbbb;

    font-size:16px;

    margin-bottom:30px;

}

/* ===========================
CONNECT BUTTON
=========================== */

.connect-btn{

    width:100%;

    max-width:320px;

    height:56px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    background:

    linear-gradient(

    90deg,

    #FFD54A,

    #F4B400

    );

    color:#000;

    font-size:18px;

    font-weight:bold;

}

/* ===========================
FEATURES
=========================== */

.features{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

    padding:20px;

}

.card{

    background:

    rgba(255,255,255,.05);

    border:

    1px solid

    rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px;

    backdrop-filter:blur(12px);

}

.card h3{

    color:#FFD54A;

    margin-bottom:10px;

}

.card p{

    color:#aaa;

    line-height:1.6;

}

/* ===========================
STATISTICS
=========================== */

.statistics{

    padding:25px;

}

.statistics h2{

    text-align:center;

    margin-bottom:25px;

}

.stats-grid{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:15px;

}

.stat{

    background:#111;

    border-radius:16px;

    text-align:center;

    padding:20px 10px;

}

.stat h3{

    color:#FFD54A;

    margin-bottom:8px;

    font-size:22px;

}

.stat span{

    color:#999;

    font-size:13px;

}

/* ===========================
MENU
=========================== */

.menu{

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:15px;

}

.menu a{

    text-decoration:none;

    color:#ffffff;

    background:

    rgba(255,255,255,.05);

    border:

    1px solid

    rgba(255,255,255,.08);

    border-radius:16px;

    padding:18px;

    font-size:16px;

    transition:.3s;

}

.menu a:hover{

    background:#FFD54A;

    color:#000;

    transform:translateY(-3px);

}

/* ===========================
FOOTER
=========================== */

footer{

    margin-top:40px;

    padding:30px 20px;

    text-align:center;

    border-top:

    1px solid

    rgba(255,255,255,.08);

}

footer p{

    color:#777;

    font-size:14px;

}

/* ===========================
BUTTON EFFECT
=========================== */

.connect-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 0 25px

    rgba(255,213,74,.5);

}

.connect-btn:active{

    transform:scale(.98);

}

/* ===========================
CARD EFFECT
=========================== */

.card:hover{

    transform:translateY(-5px);

    border-color:#FFD54A;

    transition:.35s;

    box-shadow:

    0 0 25px

    rgba(255,213,74,.15);

}

/* ===========================
STAT EFFECT
=========================== */

.stat:hover{

    transform:translateY(-5px);

    transition:.35s;

    border:

    1px solid

    rgba(255,213,74,.4);

}

/* ===========================
TEXT
=========================== */

h1,h2,h3{

    font-weight:700;

}

p{

    line-height:1.7;

}

/* ===========================
SECTION
=========================== */

section{

    margin-bottom:35px;

}

/* ===========================
LINK
=========================== */

a{

    transition:.3s;

}

/* ===========================
SCROLL BAR
=========================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#090909;

}

::-webkit-scrollbar-thumb{

    background:#FFD54A;

    border-radius:20px;

}

/* ===========================
SELECTION
=========================== */

::selection{

    background:#FFD54A;

    color:#000;

}

/* ===========================
konek wallet
=========================== */

.connect-btn{

    width:100%;

    height:auto;

    padding:0;

    margin:30px auto;

    border:none;

    background:none;

    display:block;

    cursor:pointer;

}

.connect-btn img{

    display:block;

    width:100%;

    height:auto;

    object-fit:cover;

    border-radius:18px;

}

.connect-btn{

    width:100%;
    padding:0;
    border:none;
    background:transparent;
    overflow:hidden;

}

.connect-btn img{

    width:100%;
    display:block;

    margin-top:-50px;   /* Geser gambar ke atas */

}
