body {
    background-color: #F9C94B; /* Pokémon-inspired yellow background */
     font-family: 'Exo 2', Arial, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

main {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
}

#snowfallCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#tokenomics {
    text-align: center;
    margin-top: 20px;
}

#tokenomics h2 {
    font-size: 3em;
    text-transform: uppercase;
    color: #3B4CCA; /* Pokémon blue */
    text-shadow: 3px 3px #FF0000; /* Red shadow for Pokéball vibe */
    margin: 0;
    letter-spacing: 2px;
}

.copy-box {
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid #3B4CCA;
    border-radius: 10px;
    padding: 10px;
    margin: 20px auto;
    width: 80%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copy-input {
    width: 100%;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1.2em;
    color: #000;
    cursor: pointer;
}

.logo-container {
    margin: 20px 0;
}

.logo {
    max-width: 250px;
    border: 5px solid #FF0000; /* Red border like Pokéball */
    border-radius: 50%;
    box-shadow: 0 0 15px #3B4CCA;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

#about {
    text-align: center;
    margin: 15px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 3px dashed #FF0000;
    border-radius: 15px;
    max-width: 600px;
}

#about h2 {
    font-size: 2.5em;
    color: #3B4CCA;
    text-shadow: 2px 2px #F9C94B;
    margin-bottom: 10px;
}

#about p {
    font-size: 1.2em;
    font-style: italic;
}

#social-media {
    text-align: center;
    margin: 15px 0 150px 0;
}

#social-media h2 {
    font-size: 2em;
    color: #FF0000;
    text-shadow: 2px 2px #3B4CCA;
    margin-bottom: 15px;
}

#social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#social-media li {
    margin: 10px;
}

.logo-img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 0 10px #F9C94B;
}

.logo-img:hover {
    transform: rotate(15deg) scale(1.2);
}

footer {
    text-align: center;
    padding: 15px;
    background: #3B4CCA;
    color: #FFF;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.9em;
    border-top: 3px solid #FF0000;
}