:root {
    --primary: #FFB11A;
    --primary-hover: #E69D00;
    --secondary: #FF4D4D;
    --secondary-hover: #E63535;
    --background: #FFFFFF;
    --surface: #F5F5F5;
    --text: #121212;
    --text-muted: #555555;
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 10px 10px 0 var(--text);
}

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

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo span {
    font-family: 'Fredoka One', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 4px solid var(--text);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--text);
    transform: rotate(-10deg);
}

.logo span {
    font-size: 1.5rem;
    color: var(--text);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

.cta-small {
    background: var(--primary);
    color: var(--text) !important;
    padding: 8px 16px;
    border-radius: 50px;
    border: 2px solid var(--text);
    box-shadow: 4px 4px 0 var(--text);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.distorted-text {
    font-size: 5.5rem;
    line-height: 0.9;
    color: var(--text);
    text-shadow: 6px 6px 0px var(--primary);
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 30px;
}

/* CA Copier Section */
.ca-copier {
    background: var(--surface);
    border: 4px solid var(--text);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 6px 6px 0 var(--text);
    width: fit-content;
}

.ca-label {
    font-weight: 900;
    font-family: 'Fredoka One', cursive;
    color: var(--secondary);
}

.ca-value {
    font-family: monospace;
    font-size: 1rem;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

.copy-btn {
    background: var(--text);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Fredoka One', cursive;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--primary);
    color: var(--text);
}

.copy-tooltip {
    position: absolute;
    top: -45px;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 0.8rem;
    border: 2px solid var(--text);
}

/* Hero Socials */
.hero-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
    box-shadow: 4px 4px 0 var(--text);
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    background: var(--primary);
    box-shadow: 8px 8px 0 var(--text);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: var(--primary);
    color: var(--text);
    padding: 20px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    border: 4px solid var(--text);
    box-shadow: 8px 8px 0 var(--text);
    transition: var(--transition);
    display: inline-block;
}

.cta-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 12px 12px 0 var(--text);
}

.cta-primary:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--text);
}

.cta-secondary {
    background: white;
    color: var(--text);
    padding: 20px 40px;
    border: 4px solid var(--text);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    box-shadow: 8px 8px 0 var(--text);
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--surface);
}

.wobble-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.distorted-doge {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 10px solid var(--text);
    box-shadow: 25px 25px 0 var(--primary);
    animation: wobble 4s infinite ease-in-out;
}

@keyframes wobble {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(10px, -15px) scale(1.05) rotate(5deg); }
    50% { transform: translate(-10px, 10px) scale(0.95) rotate(-5deg); }
    75% { transform: translate(15px, 5px) scale(1.02) rotate(3deg); }
}

.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--text);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: -40px;
    margin-bottom: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.cartoon-border {
    width: 100%;
    border-radius: var(--border-radius);
    border: 8px solid var(--text);
    box-shadow: 20px 20px 0 var(--secondary);
}

/* Chart Container */
.chart-container {
    width: 100%;
    height: 600px;
    background: white;
    border: 8px solid var(--text);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--primary);
}

.chart-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.registry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.registry-item {
    background: var(--surface);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 4px solid var(--text);
    transition: var(--transition);
    cursor: crosshair;
    box-shadow: 8px 8px 0 var(--text);
}

.registry-item:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 15px 15px 0 var(--text);
}

.registry-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--text);
}

.registry-item img.flipped { transform: scaleX(-1); }
.registry-item img.zoomed { transform: scale(1.5); }

footer {
    padding: 80px 0;
    border-top: 4px solid var(--text);
    background: var(--surface);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.social-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
    font-family: 'Fredoka One', cursive;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .distorted-text { font-size: 4rem; }
    .hero { gap: 40px; }
}

@media (max-width: 768px) {
    header { padding: 10px 0; }
    nav ul { display: none; } /* Could add a hamburger, but for "quick" we simplify */
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
    }
    
    .distorted-text { font-size: 3.5rem; }
    
    .hero p { margin: 0 auto 30px; }
    
    .ca-copier {
        margin: 0 auto 30px;
        flex-direction: column;
        width: 100%;
    }
    
    .ca-value { max-width: 100%; }
    
    .hero-socials { justify-content: center; }
    .hero-btns { flex-direction: column; width: 100%; }
    .cta-primary, .cta-secondary { width: 100%; }
    
    .wobble-container { margin: 40px auto 0; }
    
    .section-title { font-size: 2.5rem; }
    
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .registry-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .registry-item img { height: 150px; }
    
    .chart-container { height: 400px; box-shadow: 10px 10px 0 var(--primary); }
}

.hidden { display: none; }
