:root {
    --bg-color: #ffd700; /* Vibrant yellow */
    --text-color: #1a1a1a;
    --accent-color: #ff3366;
    --font-heading: 'Permanent Marker', cursive;
    --font-body: 'Caveat', cursive;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    padding: 0;
}

main {
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    text-shadow: 4px 4px 0px white, 8px 8px 0px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}

.tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    color: var(--accent-color);
    transform: rotate(2deg);
    margin-top: -20px;
}

.image-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: 20px 0;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
    border: 6px solid white;
    background-color: white; /* In case of transparency */
}

.story {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.4;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 500;
}

.punchline {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-color);
    transform: rotate(-1deg);
}

.cta-button {
    font-family: var(--font-heading);
    display: inline-block;
    padding: 15px 40px;
    font-size: 2.2rem;
    color: white;
    background-color: #000;
    text-decoration: none;
    border-radius: 50px;
    border: 4px solid white;
    box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 40px;
}

.cta-button:hover {
    transform: translate(-4px, -4px) scale(1.05);
    box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
    background-color: var(--accent-color);
}

.cta-button:active {
    transform: translate(2px, 2px) scale(0.95);
    box-shadow: 2px 2px 0px rgba(0,0,0,0.4);
}

.top-nav {
    width: 100%;
    background-color: rgba(255, 215, 0, 0.95);
    border-bottom: 5px solid white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0px 4px 0px rgba(0,0,0,0.1);
}

nav {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-twitter {
    font-family: var(--font-heading);
    color: white;
    background-color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 8px 20px;
    border: 3px solid white;
    border-radius: 30px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    transition: all 0.2s;
    display: inline-block;
}

.nav-twitter:hover {
    background: var(--accent-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.4);
}

.ca-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 5px 15px;
    border: 3px solid var(--text-color);
    border-radius: 20px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.ca-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
}

#ca-input {
    border: none;
    background: transparent;
    font-family: monospace;
    font-size: 1.1rem;
    outline: none;
    width: 170px;
    color: var(--text-color);
    font-weight: bold;
}

#copy-ca-btn {
    font-family: var(--font-heading);
    background: var(--text-color);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}

#copy-ca-btn:hover {
    background: var(--accent-color);
}
