body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg,#0f0f0f,#111);
    color:white;
    text-align:center;
}

/* Container */
.container{
    max-width:420px;
    margin:auto;
    padding:20px;
}

/* Logo */
.logo{
    width:120px;
    height:120px;
    border-radius:50%;
    border:4px solid #3cff00;
    padding:5px;
    margin-top:20px;
}

/* Heading */
h1{
    font-size:28px;
    margin:15px 0 5px;
    color:#ffd000;
    letter-spacing:1px;
}

.members{
    font-size:18px;
    margin-bottom:20px;
    color:#ddd;
}

/* Badge Buttons */
.badges{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:25px;
}

.badge{
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.premium{
    background:#143d1c;
    color:#3cff00;
}

.live{
    background:#3d1414;
    color:#ff4747;
}

/* Stats Boxes */
.stats{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.box{
    flex:1;
    background:#111c14;
    border:1px solid #1f2d20;
    padding:15px 5px;
    border-radius:12px;
}

.box h2{
    margin:0;
    font-size:22px;
    color:#ffd000;
}

.box p{
    margin:5px 0 0;
    font-size:13px;
    color:#ccc;
}

/* Win Rate Highlight */
.win{
    background:#1b1212;
    border:1px solid #3a1f1f;
}

.win h2{
    color:#ff4747;
}

/* Telegram Button */
.telegram-btn{
    display:block;
    background:linear-gradient(90deg,#0f8a00,#ff0000);
    padding:15px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    font-weight:600;
    font-size:18px;
    margin-bottom:25px;
    transition:0.3s;
}

.telegram-btn:hover{
    transform:scale(1.05);
}

/* Feature Section */
/* Main Box */
.features-box{
    margin-top:25px;
    padding:25px 15px;
    border-radius:20px;
    background: radial-gradient(circle at top, #12351f, #07140d);
    border:2px solid #ffd000;
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.2);
}

/* Top 3 in Row */
.features-row{
    display:flex;
    justify-content:space-around;
    align-items:center;
}

/* Bottom Center Item */
.features-bottom{
    margin-top:25px;
    display:flex;
    justify-content:center;
}

/* Individual Item */
.feature-item{
    text-align:center;
}

/* Icons */
.feature-item i{
    font-size:32px;
    margin-bottom:8px;
}

/* Text */
.feature-item p{
    margin:0;
    font-size:16px;
    color:#ffffff;
}

/* Icon Colors */
.verified{
    color:#32ff32;
}

.secure{
    color:#ffd000;
}

.profit{
    color:#ff3c3c;
}

.star{
    color:#ffd000;
}

/* Mobile Responsive */
@media(max-width:400px){
    .feature-item i{
        font-size:26px;
    }
    .feature-item p{
        font-size:14px;
    }
}


@media(max-width:400px){
    h1{ font-size:24px; }
}