body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg,#05051a,#0b0b2e);
    color:white;
    text-align:center;
}

.container{
    max-width:420px;
    margin:auto;
    padding:20px;
}

/* Profile */
.profile-img{
    width:120px;
    height:120px;
    border-radius:50%;
    border:4px solid #00eaff;
    padding:4px;
    margin-top:20px;
}

.name{
    font-size:22px;
    font-weight:bold;
    margin-top:10px;
}

.followers{
    color:#00eaff;
    margin:8px 0 20px;
    font-size:14px;
}

/* Stats */
.stats{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.stat-box{
    flex:1;
    padding:12px 5px;
    border-radius:10px;
    border:1px solid #00eaff;
    background:#0d0d3b;
}

.stat-box h3{
    margin:0;
    font-size:18px;
    color:#00eaff;
}

.stat-box p{
    margin:4px 0 0;
    font-size:12px;
    color:#ccc;
}

/* Telegram Button */
.telegram-btn{
    display:block;
    margin:20px 0;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    background: linear-gradient(90deg,#00eaff,#a100ff);
    color:white;
    transition:0.3s;
}

.telegram-btn:hover{
    transform:scale(1.05);
}

/* Countdown Box */
.countdown-box{
    border:1px solid #00eaff;
    border-radius:10px;
    padding:15px;
    margin-bottom:20px;
    background:#0d0d3b;
}

.countdown-title{
    font-size:14px;
    margin-bottom:10px;
    color:#00eaff;
}

.timer{
    display:flex;
    justify-content:space-around;
    font-size:18px;
    font-weight:bold;
}

/* Feature Cards */
.card{
    text-align:left;
    border-radius:12px;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #1c1cff;
    background: linear-gradient(135deg,#0b0b2e,#141450);
}

.card i{
    margin-right:8px;
    color:#a100ff;
}

.card h4{
    margin:0 0 8px;
    font-size:15px;
}

.card p{
    margin:0;
    font-size:13px;
    color:#ccc;
}

/* Responsive */
@media(max-width:400px){
    .stat-box h3{font-size:16px;}
    .timer{font-size:16px;}
}