* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: radial-gradient(circle, #2c2c2c 0%, #000000 100%);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 350px;
    width: 100%;
}

.logo {
    width:90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid gold;
    box-shadow: 0 0 30px yellow;
}
.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #0088cc;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid black;
}

h1 {
    font-size: 25px;
    font-weight: bold;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 20pxpx;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.sub {
    font-size: 18px;
     font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 25px;
    overflow:visible;
}
span{
    color: yellow;
}

.join-btn {
    display: block;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    padding: 15px 25px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    font-size: 25px;
    margin-bottom: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    
}


.stats {
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 5px;
    border: 2px solid yellow;
    color: rgba(249, 249, 249, 0.68);
    background: rgba(255, 0, 0, 0.231);
    padding: 5px;
    
}

.stats i{
    color: #ffb000;
}

@media (max-width: 480px) {
    .logo {
        width:50%;
        height: 50%;
    }
    h1 {
        font-size: 35px;
    }
}
