* {
    box-sizing: border-box;
}

body {
    background-color: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 40px 20px; /* Reduced top padding */
}

.hero {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    width: auto;
    max-height: 550px; /* Adjusted height */
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 40px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.lore {
    max-width: 600px;
    margin: 0 auto 80px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.lore p {
    margin: 10px 0;
}

.memes {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.meme-img {
    max-width: 100%;
    width: auto;
    max-height: 600px;
    display: block;
}

.ca-section {
    margin-bottom: 80px;
}

.ca-label {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ca-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid black;
    background: white;
}

#contract-address {
    font-family: monospace;
    font-size: 1rem;
    word-break: break-all;
}

.copy-btn {
    background: black;
    color: white;
    border: none;
    padding: 8px 12px;
    font-weight: bold;
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
}

.copy-btn:active {
    opacity: 0.8;
}

.footer {
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: block;
    transition: opacity 0.2s;
    transition: transform 0.2s;
}

.social-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.social-icon {
    width: 60px; /* Increased size as requested */
    height: auto;
    display: block;
}
