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

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #4a6cf7, #3b5998, #2d1b69);
    color: #2d1b69;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(74, 108, 247, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 89, 152, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(45, 27, 105, 0.3) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(-3px) translateY(3px); }
    75% { transform: translateX(-5px) translateY(-3px); }
}

/* Header */
.header {
    padding: 20px 0;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #ffff00;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(74, 108, 247, 0.9);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    font-weight: 400;
    background: linear-gradient(135deg, #ffff00, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 0px #2d1b69;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: block;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.social-link:hover {
    transform: translateY(-3px) rotate(2deg) scale(1.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffff00;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #ff1493;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}
/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.first-mascot-png {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.first-mascot-image {
    width: 400px;
    height: 400px;
    border-radius: 15px;
    border: 4px solid #ffff00;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
    transform: rotate(-1deg);
}

@keyframes glow {
    0% { box-shadow: 0 0 25px rgba(255, 255, 0, 0.6); }
    100% { box-shadow: 0 0 35px rgba(255, 20, 147, 0.8); }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #7C77C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 3px 3px 0px #2d1b69;
    transform: rotate(-1deg);
}

.cat-png {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-left: 20px;
    border-radius: 15px;
    animation: bounce 2s infinite;
    vertical-align: middle;
}

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

.hero-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    color: #2d1b69;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #ffff00;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 700;
    box-shadow: 5px 5px 0px #ff1493;
    transform: rotate(1deg);
}

.cta-section {
    margin-top: 50px;
}

.cta-button {
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(135deg, #ffff00, #ff1493);
    color: #2d1b69;
    border: 4px solid #2d1b69;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 5px 5px 0px #2d1b69;
    transform: rotate(-1deg);
}

.cta-button:hover {
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 8px 8px 0px #2d1b69;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    animation: bounce 0.5s ease;
}

/* CA Address Frame */
.ca-address-frame {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #ffff00;
    box-shadow: 5px 5px 0px #ff1493;
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.ca-address-frame:hover {
    transform: translateY(-2px) rotate(-1deg);
    box-shadow: 8px 8px 0px #ff1493;
}

.ca-address-frame p {
    font-family: 'Comic Neue', cursive;
  font-size: 1.2rem;
    color: #2d1b69;
    font-weight: 700;
    word-break: break-all;
    line-height: 1.4;
    margin: 0;
}

/* Token Info Section */
.token-info {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 5px solid #ffff00;
    border-bottom: 5px solid #ff1493;
}

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

.info-card {
    background: linear-gradient(135deg, #ff1493, #00ffff);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 4px solid #2d1b69;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px #2d1b69;
    transform: rotate(1deg);
}

.info-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    background: linear-gradient(135deg, #ffff00, #ff1493);
    box-shadow: 8px 8px 0px #2d1b69;
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    border: 3px solid #2d1b69;
    box-shadow: 0 0 10px rgba(45, 27, 105, 0.4);
    transition: all 0.3s ease;
    object-fit: cover;
}

.card-icon-img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
}

.info-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d1b69;
    font-weight: 400;
    text-shadow: 1px 1px 0px #ffffff;
}

.info-card p {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    color: #2d1b69;
    font-weight: 700;
    text-shadow: 1px 1px 0px #ffffff;
}

.info-card a {
    color: #2d1b69;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.info-card a:hover {
    color: #ff1493;
    border-bottom: 2px solid #ff1493;
    text-shadow: 2px 2px 0px #ffffff;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
}

.features-content {
    text-align: center;
}

.features h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffff00, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 3px 3px 0px #2d1b69;
    transform: rotate(-1deg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2d1b69;
    font-weight: 400;
    text-shadow: 2px 2px 0px #ffff00;
}

.feature-item p {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    color: #2d1b69;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #ff1493;
    line-height: 1.6;
    font-weight: 700;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.bottom-png {
    margin-bottom: 40px;
}

.bottom-banner-image {
    width: 100%;
    max-width: 1500px;
    height: auto;
    aspect-ratio: 1500/500;
    border-radius: 15px;
    border: 4px solid #ffff00;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.bottom-banner-image:hover {
    transform: translateY(-3px) rotate(0.5deg);
    box-shadow: 0 0 35px rgba(255, 20, 147, 0.8);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 5px solid #ffff00;
    background: #2d1b69;
}

.footer p {
    font-family: 'Comic Neue', cursive;
    color: #ffff00;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .features h2 {
        font-size: 2.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .token-info, .features {
        padding: 60px 0;
    }
    
    .first-mascot-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .ca-address-frame p {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .first-mascot-image {
        width: 300px;
        height: 300px;
    }
    
    .bottom-banner-image {
        border: 3px solid #ffff00;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: #ffff00;
    color: #2d1b69;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #4a6cf7, #3b5998);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a6cf7, #ff1493);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff1493, #00ffff);
}