body {
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: #0d0f1a url('../image/bg.jpg') center/cover no-repeat fixed;
    color:#fff;
}

/* CONTAINER */
.container {
    max-width:1100px;
    margin:auto;
    padding:20px;
}

/* GLASS CARD PREMIUM */
.card {
    background: rgba(21, 24, 43, 0.6);
    border-radius:16px;
    padding:20px;
    margin-bottom:20px;

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    border:1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(90deg,#3a7bd5,#8e54e9,#00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTON PREMIUM */
.btn {
    background: linear-gradient(90deg,#3a7bd5,#8e54e9);
    padding:12px 22px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
    transition:0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(138,92,246,0.6);
}

/* OUTLINE BUTTON */
.btn-outline {
    border:1px solid rgba(255,255,255,0.2);
    padding:12px 22px;
    border-radius:10px;
    color:#fff;
}

/* FLEX GRID */
.grid {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
}

/* STAT BOX */
.stat {
    text-align:center;
}

.stat h2 {
    margin:0;
    font-size:28px;
}

.stat p {
    opacity:0.7;
}

/* SIGNAL STYLE */
.signal-box {
    padding:15px;
    border-radius:10px;
    background: rgba(0,0,0,0.3);
    margin-top:10px;
}

/* BUY SELL COLOR */
.buy { color:#00ff9d; }
.sell { color:#ff4d6d; }

/* GLOW EFFECT */
.card:hover {
    box-shadow: 0 0 25px rgba(138,92,246,0.3);
    transition:0.3s;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

@media(max-width:768px){
    .container {
        padding:15px;
    }

    h2 {
        font-size:20px;
    }
}







