@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Fredoka:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #FF1744 0%, #FF4081 50%, #FF6B9D 100%);
    color: #fff;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

header {
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.logo {
    font-family: 'Chewy', cursive;
    font-size: 4rem;
    color: #FFE600;
    text-shadow: 
        4px 4px 0px #FF1744,
        6px 6px 0px rgba(0,0,0,0.3),
        -2px -2px 0px #FF4081;
    letter-spacing: 3px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.subtitle {
    font-size: 1.5rem;
    color: #FFE600;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero {
    text-align: center;
    padding: 40px 0 60px;
    position: relative;
}

.hero-image-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    border: 6px solid #FFE600;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.5),
        0 0 40px rgba(255,230,0,0.3);
    filter: drop-shadow(0 0 20px rgba(255,100,180,0.5));
}

.hero-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 4px solid #FFE600;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        inset 0 0 20px rgba(255,230,0,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '♪ ♫ ♪ ♫';
    position: absolute;
    font-size: 3rem;
    color: rgba(255,230,0,0.1);
    top: 20px;
    left: 20px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h2 {
    font-family: 'Chewy', cursive;
    font-size: 2.5rem;
    color: #FFE600;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFE600 0%, #FFF176 100%);
    color: #FF1744;
    font-family: 'Chewy', cursive;
    font-size: 1.8rem;
    padding: 20px 50px;
    border: 5px solid #fff;
    border-radius: 50px;
    box-shadow: 
        0 8px 0 #FF4081,
        0 12px 20px rgba(0,0,0,0.4);
    transition: all 0.2s;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 13px 0 #FF4081,
        0 17px 25px rgba(0,0,0,0.5);
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: 
        0 4px 0 #FF4081,
        0 6px 10px rgba(0,0,0,0.3);
}

.mascot-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-family: 'Chewy', cursive;
    font-size: 3rem;
    color: #FFE600;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.mascot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mascot-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border: 4px solid #FF4081;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.mascot-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: #FFE600;
}

.mascot-card h3 {
    font-family: 'Chewy', cursive;
    font-size: 2rem;
    color: #FFE600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mascot-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.features {
    padding: 80px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 4px solid #FFE600;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.3),
        inset 0 0 15px rgba(255,230,0,0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF1744, #FF4081, #FFE600);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: scale(1.05) rotate(1deg);
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounceIcon 2s infinite;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feature-card h3 {
    font-family: 'Chewy', cursive;
    font-size: 1.8rem;
    color: #FFE600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    border-top: 4px solid #FFE600;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

footer p {
    font-size: 1.1rem;
    color: #FFE600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.decoration {
    position: fixed;
    font-size: 2rem;
    opacity: 0.2;
    animation: floatAround 15s infinite;
    z-index: 0;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -50px) rotate(90deg); }
    50% { transform: translate(0, -100px) rotate(180deg); }
    75% { transform: translate(-100px, -50px) rotate(270deg); }
}

.decoration:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.decoration:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
.decoration:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .cta-button {
        font-size: 1.4rem;
        padding: 15px 35px;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
}