@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

body {
    background-color: #f7e0b5; 
    background-image: repeating-linear-gradient(45deg, #f7e0b5 25%, #e8c78a 25%, #e8c78a 50%, #f7e0b5 50%, #f7e0b5 75%, #e8c78a 75%, #e8c78a 100%);
    background-size: 40px 40px;
    color: #3e2723;
    font-family: 'Fredoka One', cursive, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    border: 8px solid #5b3e31;
    border-radius: 20px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 12px 12px 0px #5b3e31;
}

h1 {
    font-size: 3rem;
    color: #8b4513;
    text-shadow: 2px 2px 0px #000;
    margin: 10px 0;
}

h2 {
    font-size: 1.5rem;
    color: #000;
    margin-top: 0;
}

.image-container {
    margin: 20px 0;
}

.main-img {
    max-width: 100%;
    height: auto;
    border: 6px solid #000;
    border-radius: 10px;
    box-shadow: 6px 6px 0px #000;
}

.ca-box {
    background-color: #ffe0b2;
    border: 4px dashed #ff9800;
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
}

.ca-box p {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #d32f2f;
}

.ca-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border: 3px solid #000;
    border-radius: 8px;
    word-break: break-all;
}

#ca-text {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
}

button, .btn {
    color: white;
    border: 4px solid #000;
    padding: 12px 20px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 4px 4px 0px #000;
    transition: transform 0.1s, box-shadow 0.1s;
    text-transform: uppercase;
}

button:active, .btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px #000;
}

#copy-btn {
    background-color: #ff9800;
    font-size: 1rem;
    padding: 8px 15px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.twitter-btn { background-color: #1DA1F2; }
.game-btn { background-color: #9c27b0; }
.pump-btn { 
    background-color: #4CAF50; 
    font-size: 1.5rem; 
    animation: pulse 1.5s infinite; 
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

footer {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #8b4513;
    border-top: 5px solid #5b3e31;
    padding-top: 15px;
}