

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

body{
    background:#050816;
    color:white;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}
a{
    text-decoration: none;
}
/* ======================== */

:root{
    --qx-primary:#00F0FF;
    --qx-secondary:#B026FF;
    --qx-pink:#FF00AA;
    --qx-gradient: #30e4f8;
    --qx-card:#10172d;
}

/* ======================== */
/* SCROLLBAR */
/* ======================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:var(--qx-gradient);
    border-radius:20px;
}
h2{
  color:#30e4f8 !important;  
}
/* ======================== */
/* NAVBAR */
/* ======================== */

.qx-navbar{
    background:rgba(5,8,22,0.75);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.qx-logo{
    font-size:34px;
    font-weight:800;
    font-family:'Orbitron',sans-serif;
    background:var(--qx-gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.qx-nav-link{
    color:white !important;
    margin-left:18px;
    transition:0.4s;
}

.qx-nav-link:hover{
    color:#00F0FF !important;
}

.qx-btn{
    padding:13px 30px;
    border:none;
    border-radius:50px;
    background:var(--qx-gradient);
    color:white;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 0 25px rgba(176,38,255,0.4);
    margin:12px;
}

.qx-btn:hover{
    transform:translateY(-5px);
}

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

.qx-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding-top:120px;
}

.qx-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#00F0FF;
    filter:blur(180px);
    opacity:0.15;
    top:-100px;
    left:-100px;
}

.qx-hero::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#FF00AA;
    filter:blur(180px);
    opacity:0.12;
    bottom:-100px;
    right:-100px;
}

.qx-hero-text h1{
    font-size:59px;
    line-height:1.1;
    font-family:'Orbitron',sans-serif;
    margin-bottom:25px;
}

.qx-hero-text h1 span{
    background:var(--qx-gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.qx-hero-text p{
    color:#d5ddff;
    line-height:1.9;
    margin-bottom:35px;
}

.qx-hero-img img{
    width:100%;
    animation:floatImage 5s infinite ease-in-out;
    filter:drop-shadow(0 0 35px rgba(0,240,255,0.35));
}

/* ======================== */
/* GLASS CARD */
/* ======================== */

.qx-glass{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.07);
    backdrop-filter:blur(14px);
    border-radius:25px;
    transition:0.5s;
}

.qx-glass:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,240,255,0.15);
}

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

.qx-feature-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:var(--qx-gradient);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

/* ======================== */
/* SERVICE CARD */
/* ======================== */

.service-premium-card{
    position:relative;
    overflow:hidden;
}

.service-premium-card::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:var(--qx-gradient);
    border-radius:50%;
    top:-100px;
    right:-100px;
    opacity:0.08;
}

.service-img{
    width:100%;
    transition:0.6s;
}

.service-premium-card:hover .service-img{
    transform:scale(1.08);
}

.service-icon-box{
    width:60px;
    height:60px;
    border-radius:18px;
    background:var(--qx-gradient);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:white;
}

/* ======================== */
/* STATS */
/* ======================== */

.qx-stats h1{
    font-size:55px;
    font-weight:700;
    background:var(--qx-gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ======================== */
/* TEAM */
/* ======================== */

.qx-team-card{
    overflow:hidden;
}

.qx-team-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.qx-team-card:hover img{
    transform:scale(1.08);
}

/* ======================== */
/* FORM */
/* ======================== */

.qx-form-control{
    width:100%;
    padding:16px;
    background:#151d37;
    border:none;
    border-radius:14px;
    color:white;
    margin-bottom:20px;
}

.qx-form-control:focus{
    outline:none;
    box-shadow:0 0 15px rgba(0,240,255,0.3);
}

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

.qx-footer{
    border-top:1px solid rgba(255,255,255,0.06);
}

/* ======================== */
/* ANIMATION */
/* ======================== */

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ======================== */
/* RESPONSIVE */
/* ======================== */

@media(max-width:991px){

    .qx-hero{
        text-align:center;
    }

    .qx-hero-text h1{
        font-size:50px;
    }

}

@media(max-width:600px){

    .qx-hero-text h1{
        font-size:36px;
    }

}



.fixed-top {
  position: none !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  width: 100%;
}




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

.crypto-hero-section{
    background:#050505;
    position:relative;
    overflow:hidden;
}

.crypto-hero-section::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-150px;
    width:500px;
    height:500px;
    background:#00d4ff20;
    border-radius:50%;
    filter:blur(120px);
}

.crypto-content{
    position:relative;
    z-index:2;
}

.crypto-badge{
    display:inline-block;
    background:#00d4ff;
    color:#000;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.crypto-title{
    font-size:60px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
}

.crypto-title span{
    color:#00d4ff;
}

.crypto-description{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.crypto-btn{
    display:inline-block;
    background:#00d4ff;
    color:#000;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.crypto-btn:hover{
    background:#00b8df;
    transform:translateY(-3px);
    color:#000;
}

/* ==========================
   VIDEO
========================== */

.crypto-video-box{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,212,255,.25);
}

.crypto-video{
    width:100%;
    display:block;
}

/* ==========================
   STATS
========================== */

.crypto-stats-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.crypto-stat-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.crypto-stat-card:hover{
    transform:translateY(-6px);
    border-color:#00d4ff;
}

.crypto-stat-card h3{
    color:#00d4ff;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.crypto-stat-card p{
    color:#fff;
    margin:0;
    font-size:15px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .crypto-title{
        font-size:42px;
    }

    .crypto-stats-row{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

    .crypto-title{
        font-size:32px;
        text-align:center;
    }

    .crypto-description{
        text-align:center;
        font-size:16px;
    }

    .crypto-btn-wrap{
        text-align:center;
    }

    .crypto-badge{
        display:table;
        margin:0 auto 20px;
    }

    .crypto-stats-row{
        grid-template-columns:1fr;
        gap:15px;
    }

    .crypto-stat-card{
        padding:20px;
    }
}


/* crypto-black-gold.css */

:root{
    --gold:#D4AF37;
    --gold-light:#f8d96b;
    --black:#050505;
    --dark:#111111;
    --card:#171717;
    --white:#ffffff;
    --gray:#bfbfbf;
}

/* BODY */

body{
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
}

/* SECTION */

section{
    padding:80px 0;
}

/* HERO */

.crypto-hero-section{
    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 40%),
    var(--black);
}

.crypto-badge{
    display:inline-block;
    background:rgba(212,175,55,.15);
    color:var(--gold);
    border:1px solid rgba(212,175,55,.4);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.crypto-title{
    font-size:4rem;
    font-weight:800;
    line-height:1.2;
}

.crypto-title span{
    color:var(--gold);
}

.crypto-description{
    color:var(--gray);
    font-size:1.1rem;
    margin:25px 0;
}

/* BUTTON */

.crypto-btn,
.qx-btn{
    display:inline-block;
    background:var(--gold);
    color:#000;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    border:none;
}

.crypto-btn:hover,
.qx-btn:hover{
    background:var(--gold-light);
    transform:translateY(-3px);
}

/* GLASS CARD */

.qx-glass{
    background:var(--card);
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    transition:.4s;
}

.qx-glass:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 0 30px rgba(212,175,55,.2);
}

/* FEATURE ICON */

.qx-feature-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.qx-feature-icon i{
    color:var(--gold);
    font-size:30px;
}

/* STATS */

.crypto-stats-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:70px;
}

.crypto-stat-card{
    background:var(--card);
    border-radius:18px;
    padding:30px;
    text-align:center;
    border:1px solid rgba(212,175,55,.15);
}

.crypto-stat-card h3{
    color:var(--gold);
    font-size:2rem;
    font-weight:700;
}

.crypto-stat-card p{
    color:var(--gray);
    margin:0;
}

/* SERVICE CARD */

.service-premium-card{
    overflow:hidden;
}

.service-img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.service-premium-card:hover .service-img{
    transform:scale(1.08);
}

.service-icon-box{
    width:60px;
    height:60px;
    background:rgba(212,175,55,.1);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon-box i{
    color:var(--gold);
    font-size:24px;
}

/* TEAM */

.qx-team-card{
    overflow:hidden;
    text-align:center;
}

.qx-team-card img{
    width:100%;
    height:380px;
    object-fit:cover;
}

/* FORM */

.qx-form-control{
    width:100%;
    background:#101010;
    border:1px solid #333;
    color:#fff;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}

.qx-form-control:focus{
    outline:none;
    border-color:var(--gold);
}

/* ACCORDION */

.accordion-item{
    background:#111 !important;
    border:1px solid rgba(212,175,55,.15) !important;
}

.accordion-button{
    background:#111 !important;
    color:#fff !important;
}

.accordion-button:not(.collapsed){
    color:var(--gold) !important;
}

/* VIDEO */

.crypto-video{
    width:100%;
    border-radius:25px;
    border:2px solid rgba(212,175,55,.2);
}

/* RESPONSIVE */

@media(max-width:992px){

    .crypto-title{
        font-size:3rem;
        text-align:center;
    }

    .crypto-content{
        text-align:center;
    }

    .crypto-stats-row{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .crypto-title{
        font-size:2.2rem;
    }

    .crypto-description{
        font-size:15px;
    }

    .crypto-stats-row{
        grid-template-columns:1fr;
    }

    .crypto-stat-card{
        padding:20px;
    }

    .service-img{
        height:220px;
    }

    .qx-team-card img{
        height:300px;
    }
}





.trading-market {
    /*background: #0b1220;*/
    color: #fff;
    padding: 100px 20px;
}

.container {
    max-width: 1116px;
    margin: auto;
}

.trading-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.trading-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(0,255,136,0.15);
    color: #00ff88;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.trading-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.trading-text p {
    color: #b8c0cc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.market-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.stat {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 15px;
}

.stat h3 {
    color: #00ff88;
    margin-bottom: 5px;
}

.trade-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #d4af37;
    color: #000;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}

.trading-box {
    flex: 1;
    background: #121c2e;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
}

.chart-header strong {
    color: #00ff88;
}

.fake-chart {
    height: 250px;
}

.fake-chart svg {
    width: 100%;
    height: 100%;
}

.trade-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.buy-btn,
.sell-btn {
    flex: 1;
    border: none;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.buy-btn {
    background: #00ff88;
    color: #000;
}

.sell-btn {
    background: #ff4d4d;
    color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
    .trading-content {
        flex-direction: column;
    }

    .trading-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .market-stats {
        flex-direction: column;
    }

    .trading-text h2 {
        font-size: 2rem;
    }

    .trade-actions {
        flex-direction: column;
    }
}







.staking-section {
    padding: 100px 20px;
    /*background: linear-gradient(135deg, #081120, #111d33);*/
    color: #fff;
}

.container {
    max-width: 1116px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #00ff99;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 650px;
    margin: auto;
    color: #b9c4d0;
    line-height: 1.8;
}

.staking-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.staking-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: .4s;
}

.staking-card:hover {
    transform: translateY(-10px);
    border-color: #00ff99;
}

.apy {
    font-size: 3rem;
    color: #00ff99;
    font-weight: bold;
    margin: 20px 0;
}

.staking-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.staking-card ul li {
    margin-bottom: 12px;
    color: #c6d1db;
}

.stake-btn {
    display: inline-block;
    background:#d4af37;
    /*background: #00ff99;*/
    color: #000;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}

.featured {
    position: relative;
    border: 2px solid #00ff99;
    transform: scale(1.05);
}

.popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff99;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* Responsive */

@media(max-width: 992px){
    .staking-cards{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 768px){
    .staking-cards{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 2.2rem;
    }

    .featured{
        transform: none;
    }
}







