body, html {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 15px;
}

h1 {
    color: #ffffff;
    font-size: 3.5em;
    margin-bottom: 5px;
    font-family: 'Pacifico', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.3em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-top: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

section {
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    backdrop-filter: none; /* No blur effect */
    background-color: transparent; /* Fully transparent background */
    box-sizing: border-box;
}

#cat-interactive {
    text-align: center;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 30px; /* Added margin for spacing */
}

.cat-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#cat-image {
    width: 520px;
    height: 520px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#click-counter {
    font-size: 8em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    color: #ffffff;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    font-family: 'Pacifico', cursive;
    margin-bottom: 20px; /* Added margin for spacing */
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

footer {
    text-align: center;
    margin-top: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#tokenomics {
    background-color: transparent;
    color: white;
    padding: 40px;
}

#tokenomics h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: none;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tokenomics-item {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    backdrop-filter: none; /* No blur effect */
    border-radius: 10px;
}

.tokenomics-item .icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.tokenomics-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.tokenomics-item p {
    font-size: 1em;
}

@media (max-width: 600px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

/* New Styles */
.content {
    text-align: center;
    color: white;
    background-color: transparent; /* Fully transparent background */
}

.content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contract-address {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    background: linear-gradient(135deg, #6A5ACD, #7B68EE);
    color: white;
    border: none;
}

.button:hover {
    background: linear-gradient(135deg, #836FFF, #8A2BE2);
}

/* Video Section Container */
.video-container {
    background-color: transparent; /* Fully transparent background */
    margin-bottom: 30px; /* Added margin for spacing */
    padding: 30px; /* Added padding for spacing */
}
