* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 25%, #FFEB3B 50%, #FDD835 75%, #FFD600 100%);
    color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 30%, #FFEB3B 70%, #FFD600 100%);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.logo-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.pepe-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.social-icons-top {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 0, 0, 0.9);
}

.social-icon img {
    width: 32px;
    height: 32px;
}

.main-title {
    font-family: 'Bangers', cursive;
    font-size: 6rem;
    color: #000;
    text-shadow: 3px 3px 0 #FFD700, 6px 6px 0 #FF6B00;
    letter-spacing: 3px;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.subtitle {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.8rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contract-address {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    border: 3px dashed #000;
    margin-top: 20px;
}

.contract-label {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.contract-value {
    color: #FFD700;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 15px;
    font-family: monospace;
}

.copy-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Comic Neue', cursive;
}

.copy-btn:hover {
    background: #FFC700;
    transform: scale(1.05);
}

/* About Section */
#about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4DD0E1 0%, #FFEB3B 50%, #FFD600 100%);
    border-top: 5px dashed #000;
    border-bottom: 5px dashed #000;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    text-align: center;
    color: #000;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #FFD700;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-decoration: underline;
    text-decoration-style: wavy;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    border: 4px solid #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-heading {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
}

/* Partners Section */
#partners {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFD600 50%, #FDD835 100%);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    text-align: center;
}

.partner-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #000;
    transition: transform 0.3s;
}

.partner-logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.partner-logo p {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.partner-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
    border-radius: 20px;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s;
}

.partner-logo:hover .partner-placeholder {
    transform: scale(1.1) rotate(-5deg);
}

/* Socials Section */
#socials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFD600 0%, #FFEB3B 50%, #4DD0E1 100%);
    border-top: 5px dashed #000;
}

.social-icons-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    border: 3px solid #000;
}

.social-icon-large:hover {
    transform: translateY(-10px) scale(1.15);
    background: rgba(0, 0, 0, 0.95);
}

.social-icon-large img {
    width: 50px;
    height: 50px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 10px 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    #hero {
        min-height: auto;
        padding: 30px 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left {
        min-width: auto;
    }

    .pepe-image,
    .Apu-image {
        max-width: 280px;
    }

    .hero-right {
        min-width: auto;
    }

    .social-icons-top {
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon img {
        width: 28px;
        height: 28px;
    }

    .main-title {
        font-size: 4rem;
        text-shadow: 2px 2px 0 #FFD700, 4px 4px 0 #FF6B00;
    }

    .subtitle {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .contract-address {
        padding: 15px;
    }

    .contract-label {
        font-size: 0.9rem;
    }

    .contract-value {
        font-size: 0.75rem;
    }

    .copy-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    #about,
    #partners,
    #socials {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .about-content {
        padding: 25px 20px;
    }

    .about-heading {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 1rem;
        text-align: center;
    }

    .partners-grid {
        gap: 35px;
    }

    .partner-logo img,
    .partner-placeholder {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .partner-logo p {
        font-size: 1rem;
        margin-top: 10px;
    }

    .social-icons-bottom {
        gap: 20px;
    }

    .social-icon-large {
        width: 70px;
        height: 70px;
    }

    .social-icon-large img {
        width: 45px;
        height: 45px;
    }

    footer {
        padding: 25px 15px;
    }

    footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    #hero {
        padding: 20px 10px;
    }

    .hero-content {
        gap: 20px;
    }

    .pepe-image,
    .Apu-image {
        max-width: 220px;
    }

    .social-icons-top {
        gap: 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
    }

    .main-title {
        font-size: 2.8rem;
        text-shadow: 2px 2px 0 #FFD700, 3px 3px 0 #FF6B00;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .contract-address {
        padding: 12px;
        border-width: 2px;
    }

    .contract-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .contract-value {
        font-size: 0.65rem;
        margin-bottom: 12px;
    }

    .copy-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100%;
    }

    #about,
    #partners,
    #socials {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    .about-content {
        padding: 20px 15px;
        border-width: 3px;
    }

    .about-heading {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .partners-grid {
        gap: 25px;
    }

    .partner-logo img,
    .partner-placeholder {
        width: 85px;
        height: 85px;
        padding: 12px;
        border-width: 2px;
    }

    .partner-placeholder {
        font-size: 1.2rem;
    }

    .partner-logo p {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .social-icons-bottom {
        gap: 15px;
    }

    .social-icon-large {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .social-icon-large img {
        width: 38px;
        height: 38px;
    }

    footer {
        padding: 20px 10px;
    }

    footer p {
        font-size: 0.85rem;
        margin: 8px 0;
    }
}

@media (max-width: 360px) {
    .pepe-image,
    .Apu-image {
        max-width: 180px;
    }

    .main-title {
        font-size: 2.3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .about-heading {
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .partner-logo img,
    .partner-placeholder {
        width: 75px;
        height: 75px;
    }

    .partner-logo p {
        font-size: 0.8rem;
    }

    .social-icon-large {
        width: 55px;
        height: 55px;
    }

    .social-icon-large img {
        width: 35px;
        height: 35px;
    }
}
