/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: #5DA9FF;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
}

.monospace {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.green-text {
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    margin: 5px 0;
}

/* Hand-drawn borders and shapes */
.hand-drawn-border {
    border: 3px solid #000;
    border-radius: 15px;
    position: relative;
}

.hand-drawn-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #000;
    border-radius: 18px;
    background: transparent;
    z-index: -1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #5DA9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.main-cat {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 4px solid #000;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #000;
}

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

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border: 3px solid #000;
    border-radius: 15px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background: #00ff00;
    color: #000;
}

.btn-primary:hover {
    background: #00cc00;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

.btn-secondary {
    background: #e6b3ff;
    color: #000;
}

.btn-secondary:hover {
    background: #d699ff;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

/* Floating cats */
.floating-cats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-cat {
    position: absolute;
    width: 120px;
    height: auto;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.floating-cat:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-cat:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

/* Origin Story */
.origin-story {
    background: #90EE90;
}

.origin-link {
    text-align: center;
    margin-bottom: 30px;
}

.archive-link {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border: 3px solid #000;
    border-radius: 15px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

.archive-link:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
}

.comic-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.comic-panel {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
}

.comic-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    border: 2px solid #000;
    border-radius: 10px;
}

.comic-text {
    text-align: left;
}

/* Token Info */
.token-info {
    background: #5DA9FF;
}

.token-ticker {
    text-align: center;
    margin-bottom: 50px;
}

.token-ticker h3 {
    font-size: 4rem;
    color: #000;
}

.token-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
}

.info-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.info-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    background: #e6b3ff;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: #d699ff;
    transform: translateY(-2px);
}

/* Meme Gallery */
.meme-gallery {
    background: #90EE90;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0 rgba(0,0,0,0.8);
}

.gallery-image {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    border-radius: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.close {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

#modalImage {
    max-width: 100%;
    height: auto;
    border: 4px solid #000;
    border-radius: 20px;
}

/* Community Section */
.community {
    background: #5DA9FF;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.community-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.community-btn:hover {
    transform: translateY(-5px);
}

.doodle-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

.community-btn span {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
}

.community-slogan {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Fredoka One', cursive;
    color: #000;
}

/* Footer */
.footer {
    background: #90EE90;
    text-align: center;
    padding: 40px 0;
}

.disclaimer {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000;
}

.goodbye-cat {
    width: 100px;
    height: auto;
    border: 3px solid #000;
    border-radius: 15px;
    background: #fff;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .token-ticker h3 {
        font-size: 3rem;
    }
    
    .comic-strip {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-cat {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .main-cat {
        max-width: 300px;
    }
} 