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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.chaos-grid {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, #F3BA2F 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, #F3BA2F 3px, transparent 3px),
        radial-gradient(circle at 50% 10%, #F3BA2F 2px, transparent 2px);
    background-size: 80px 80px, 60px 60px, 100px 100px;
    animation: chaos-float 15s ease-in-out infinite;
}

@keyframes chaos-float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-15px) rotate(270deg) scale(1.05); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.token-image {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: chaos-bounce 2s ease-in-out infinite;
    filter: hue-rotate(45deg) saturate(1.5);
}

.token-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(243, 186, 47, 0.4);
    filter: hue-rotate(90deg) saturate(2);
}

@keyframes chaos-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

/* CZ F*CK YOU Image Styles */
.cz-fuck-image {
    position: relative;
    text-align: center;
}

.cz-fuck-img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: cz-fuck-bounce 2s ease-in-out infinite;
    filter: hue-rotate(45deg) saturate(1.5);
}

.cz-fuck-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(243, 186, 47, 0.4);
    filter: hue-rotate(90deg) saturate(2);
}

@keyframes cz-fuck-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.cz-caption {
    font-family: 'Impact', sans-serif;
    font-size: 1.2rem;
    color: #F3BA2F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
    animation: caption-shake 0.5s ease-in-out infinite alternate;
}

@keyframes caption-shake {
    0% { transform: translateX(0px); }
    100% { transform: translateX(3px); }
}

.hero-title {
    font-family: 'Impact', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #F3BA2F;
    text-shadow: 3px 3px 0px #000000, 6px 6px 10px rgba(243, 186, 47, 0.5);
    animation: title-shake 0.5s ease-in-out infinite alternate;
    letter-spacing: 3px;
}

@keyframes title-shake {
    0% { transform: translateX(0px) rotate(0deg); }
    100% { transform: translateX(2px) rotate(1deg); }
}

.hero-subtitle {
    font-family: 'Papyrus', fantasy;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #F3BA2F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    opacity: 0.8;
    font-family: 'Comic Neue', cursive;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #F3BA2F, #d9a62a);
    color: #000000;
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.4);
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 186, 47, 0.6);
}

.btn-secondary {
    background: rgba(243, 186, 47, 0.2);
    color: #F3BA2F;
    border: 2px solid rgba(243, 186, 47, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(243, 186, 47, 0.3);
    transform: translateY(-2px) rotate(2deg);
}

/* Contract Section */
.contract-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.contract-card {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid #F3BA2F;
    animation: card-wiggle 3s ease-in-out infinite;
}

@keyframes card-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.contract-card h2 {
    font-family: 'Jokerman', cursive;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F3BA2F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contract-address {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    word-break: break-all;
    margin-bottom: 2rem;
    border: 2px solid #F3BA2F;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.contract-address:hover {
    border-color: #d9a62a;
    background: #2a2a2a;
    transform: scale(1.02);
}

.btn-copy {
    background: linear-gradient(45deg, #F3BA2F, #d9a62a);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

.btn-copy:hover {
    transform: translateY(-2px) rotate(3deg);
    box-shadow: 0 5px 15px rgba(243, 186, 47, 0.4);
}

/* Chaos Sticker Section */
.chaos-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #000000, #1a1a1a, #000000);
    position: relative;
    overflow: hidden;
}

.chaos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(243, 186, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 186, 47, 0.1) 0%, transparent 50%);
    animation: background-pulse 4s ease-in-out infinite;
}

@keyframes background-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.chaos-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.chaos-sticker {
    font-size: 10rem;
    margin-bottom: 2rem;
    cursor: pointer;
    animation: middle-finger-flip 2s ease-in-out infinite, middle-finger-wave 1s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(243, 186, 47, 0.8));
    transition: all 0.4s ease;
    position: relative;
}

.chaos-sticker::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #F3BA2F;
    border-radius: 50%;
    animation: border-rotate 3s linear infinite;
    opacity: 0.5;
}

@keyframes border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chaos-sticker:hover {
    transform: scale(1.4) rotate(180deg);
    filter: drop-shadow(0 0 50px rgba(243, 186, 47, 1));
}

@keyframes chaos-spin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

/* F*CKING animations */
@keyframes fuck-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes fuck-shake {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes middle-finger-flip {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.2); }
}

@keyframes middle-finger-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.chaos-messages {
    max-width: 500px;
}

.chaos-text {
    font-family: 'Impact', sans-serif;
    font-size: 2.5rem;
    color: #F3BA2F;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    animation: text-glow 2s ease-in-out infinite alternate, fuck-shake 0.5s ease-in-out infinite;
}

@keyframes text-glow {
    0% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); }
    100% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 25px rgba(243, 186, 47, 0.6); }
}

.chaos-subtext {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    color: #CCCCCC;
    font-style: italic;
}

/* Meme Gallery Section */
.meme-gallery {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
}

.gallery-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #F3BA2F;
    font-family: 'Jokerman', cursive;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: title-bounce 1s ease-in-out infinite alternate, fuck-bounce 2s ease-in-out infinite;
}

@keyframes title-bounce {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.meme-item {
    font-size: 4rem;
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 20px;
    border: 2px solid #F3BA2F;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: middle-finger-wave 2s ease-in-out infinite, meme-float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.meme-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 186, 47, 0.3), transparent);
    transition: left 0.5s ease;
}

.meme-item:hover::before {
    left: 100%;
}

.meme-item:nth-child(1) { animation-delay: 0s; }
.meme-item:nth-child(2) { animation-delay: 0.2s; }
.meme-item:nth-child(3) { animation-delay: 0.4s; }
.meme-item:nth-child(4) { animation-delay: 0.6s; }
.meme-item:nth-child(5) { animation-delay: 0.8s; }
.meme-item:nth-child(6) { animation-delay: 1s; }
.meme-item:nth-child(7) { animation-delay: 1.2s; }
.meme-item:nth-child(8) { animation-delay: 1.4s; }

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

.meme-item:hover {
    transform: translateY(-10px) rotate(10deg) scale(1.2);
    box-shadow: 0 10px 25px rgba(243, 186, 47, 0.4);
    background: #3a3a3a;
    border-color: #d9a62a;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: white;
}

.social-section .section-title {
    color: #F3BA2F;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(243, 186, 47, 0.2);
    border-radius: 50px;
    color: #F3BA2F;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(243, 186, 47, 0.5);
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

.social-link:hover {
    background: rgba(243, 186, 47, 0.3);
    transform: translateY(-2px) rotate(3deg);
    box-shadow: 0 5px 15px rgba(243, 186, 47, 0.3);
}

.social-link i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #F3BA2F;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #F3BA2F;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

.footer-logo .emoji {
    font-size: 2.5rem;
    animation: footer-bounce 2s ease-in-out infinite;
}

@keyframes footer-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-family: 'Comic Neue', cursive;
}

.toast.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cz-fuck-img {
        max-width: 250px;
    }
    
    .cz-caption {
        font-size: 1rem;
    }
    
    .token-image {
        max-width: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contract-card {
        padding: 30px 20px;
    }
    
    .meme-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .meme-item {
        font-size: 3rem;
        padding: 1.5rem;
    }
    
    .chaos-sticker {
        font-size: 7rem;
    }
    
    .chaos-text {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .fuck-sticker {
        font-size: 6rem;
    }
    
    .fuck-message {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        gap: 1.5rem;
    }
    
    .cz-fuck-img {
        max-width: 200px;
    }
    
    .cz-caption {
        font-size: 0.9rem;
    }
    
    .token-image {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contract-address {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .meme-item {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .chaos-sticker {
        font-size: 5rem;
    }
    
    .chaos-text {
        font-size: 1.5rem;
    }
}
