* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    position: relative;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.5);
}

.chungus-image {
    width: 300px;
    height: auto;
    margin: 2rem 0;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.chungus-image:hover {
    transform: rotate(3deg) scale(1.1);
}

h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 6rem;
    letter-spacing: 3px;
    transform: rotate(-3deg);
    text-shadow: 
        4px 4px 0 #000,
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        8px 8px 0 rgba(0,0,0,0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

h2 {
    font-family: 'Fredoka One', cursive;
    transform: rotate(-2deg);
    text-shadow: 
        3px 3px 0 #000,
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        6px 6px 0 rgba(0,0,0,0.5);
}

p {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    transform: rotate(-1deg);
}

.button-container {
    display: flex;
    gap: 2rem;
}

.twitter-button {
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
    background-color: #1DA1F2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
    border: 4px solid white;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    font-family: 'Fredoka One', cursive;
}

.twitter-button:hover {
    background-color: #1991db;
    transform: rotate(2deg) scale(1.1);
    box-shadow: -4px 4px 0 rgba(0,0,0,0.5);
}

.description-section,
.tokenomics-section,
.socials-section {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.description-content,
.tokenomics-content,
.socials-content {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.description-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.description-text-container {
    flex: 1;
}

.description-content h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 
        4px 4px 0 #000,
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        8px 8px 0 rgba(0,0,0,0.5);
}

.description-text {
