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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
}

.logo img {
    width: 60px;
    margin: 50px 0;
}

.wallet-buttons {
    margin-bottom: 20px;
}

.btn {
    display: block;
    width: 90%;
    padding: 15px;
    margin: 10px auto;
    border-radius: 10px;
    border: 1px solid #00ffcc;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    color: white;
}

.create-btn {
    background-color: #00ffcc;
    border-color: #00ffcc;
    color: black;
}

.referral p {
    color: #8f8f8f;
    font-size: 14px;
}

.footer {
    margin-top: 40px;
    color: #8f8f8f;
    font-size: 12px;
}

.footer a {
    color: #00ffcc;
    text-decoration: none;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.crypto-icons img {
    width: 35px;
    margin: 0 5px;
}
