body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ffcccc, #ff66b2);
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    position: relative;
}

header {
    background-color: #ff3399;
    padding: 1em 0;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 3em;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    margin-top: 100px;
    padding: 1em;
}

.intro {
    padding: 1em 0;
}

.cat-container {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.cat-img {
    max-width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.cat-img:hover {
    transform: scale(1.1);
}

section {
    margin-bottom: 1em;
}

.contract-container, .tokenomics-container {
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    color: white;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0.5em auto;
    word-wrap: break-word;
}

.tokenomics-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
}

.token-box {
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    color: white;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.token-box h3, .token-box p {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.2em 0.5em;
    border-radius: 5px;
}

footer {
    background-color: #ff3399;
    color: white;
    padding: 1em 0;
    width: 100%;
}

.social-link {
    color: yellow;
    text-decoration: none;
}

#rainbow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.rainbow {
    position: absolute;
    top: -50px;
    font-size: 3em;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

@media (max-width: 768px) {
    .cat-img {
        max-width: 80%;
    }

    .token-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .token-box h3 {
        order: 1;
    }

    .token-box p {
        order: 2;
    }
}
