
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background: black;
    overflow-x: hidden;
overflow-y: auto;
    text-align: center;
}
#starfield {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}
.logo {
    width: 150px;
    margin: 20px auto;
    display: block;
}
h1 {
    font-size: 2.5rem;
}
.buttons {
    margin: 20px;
}
.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border: 2px solid #00f7ff;
    border-radius: 25px;
    transition: 0.3s;
}
.btn:hover {
    background: #00f7ff;
    color: black;
    transform: scale(1.1);
}
.token-stats {
    margin: 40px;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
}
footer {
    margin-top: 50px;
    font-size: 0.9rem;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url('assets/background.png') no-repeat center center;
    background-size: cover;
}

body {
    min-height: 200vh;
    overflow-x: hidden;
}


/* Meme Vault Section */
.meme-vault {
    padding: 50px 20px;
    text-align: center;
}

.meme-vault h2 {
    color: white;
    margin-bottom: 20px;
}

.meme-vault .meme-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.meme-vault .meme-grid img {
    width: 200px;
    border-radius: 10px;
    border: 2px solid #00f0ff;
    transition: transform 0.2s ease;
}

.meme-vault .meme-grid img:hover {
    transform: scale(1.05);
}

.meme-vault .download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border: 2px solid #00f7ff;
    border-radius: 25px;
    transition: 0.3s;
}

.meme-vault .download-btn:hover {
    background: #00f7ff;
    color: black;
}

/* Responsive Meme Grid */
@media (max-width: 768px) {
    .meme-vault .meme-grid img {
        width: 45%;
    }
}
