* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    background-color: #f0f2f5;
    color: #1a1a1a;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid #000;
}

.copy-ca {
    padding: 0.8rem 1.5rem;
    border: 3px solid #000;
    border-radius: 8px;
    background: #f0f0f0;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    box-shadow: 5px 5px 0px #000;
    position: relative;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copy-ca:hover {
    transform: translateY(-2px) rotate(-1deg);
    box-shadow: 7px 7px 0px #000;
    background: #fff;
}

.copy-ca:active {
    transform: translate(4px, 4px);
    box-shadow: 1px 1px 0px #000;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px #000;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.meme-card {
    background: white;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.2s;
}

.meme-card:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 8px 8px 0px #000;
}

.meme-card:nth-child(even):hover {
    transform: translateY(-5px) rotate(2deg);
}

.meme-card h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-transform: lowercase;
}

.meme-content {
    font-size: 1.2rem;
    text-align: center;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.virgin {
    color: #666;
    font-style: italic;
}

.chad {
    color: #ff6b6b;
    font-weight: bold;
    text-transform: uppercase;
}

.tokenomics {
    background: white;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 5px 5px 0px #000;
}

.tokenomics h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.tokenomics ul {
    list-style: none;
}

.tokenomics li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    color: white;
    font-size: 0.9rem;
    border-top: 4px solid #000;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .meme-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
}