* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 3px 3px 0px #ff6b6b, 6px 6px 0px #4ecdc4;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 0px #ff6b6b;
    opacity: 0.9;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-container {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.locker-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.locker-image:hover {
    transform: scale(1.02);
}

.name-banner {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

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

.letter {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    animation: letterBounce 2s infinite;
    display: inline-block;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }
.letter:nth-child(8) { animation-delay: 0.7s; }
.letter:nth-child(9) { animation-delay: 0.8s; }
.letter:nth-child(10) { animation-delay: 0.9s; }
.letter:nth-child(11) { animation-delay: 1.0s; }
.letter:nth-child(12) { animation-delay: 1.1s; }
.letter:nth-child(13) { animation-delay: 1.2s; }
.letter:nth-child(14) { animation-delay: 1.3s; }
.letter:nth-child(15) { animation-delay: 1.4s; }
.letter:nth-child(16) { animation-delay: 1.5s; }
.letter:nth-child(17) { animation-delay: 1.6s; }
.letter:nth-child(18) { animation-delay: 1.7s; }
.letter:nth-child(19) { animation-delay: 1.8s; }

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

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

.fun-facts h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 0px #ff6b6b;
    margin-bottom: 30px;
}

.fact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn 0.8s ease-out;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fact-card:nth-child(2) { animation-delay: 0.2s; }
.fact-card:nth-child(3) { animation-delay: 0.4s; }
.fact-card:nth-child(4) { animation-delay: 0.6s; }

.fact-card h3 {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    text-align: center;
}

.fact-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.fact-card ul {
    list-style: none;
    padding: 0;
}

.fact-card li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.fact-card li::before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

.fact-card strong {
    color: #4ecdc4;
    font-weight: bold;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .name-banner {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .letter {
        font-size: 1.4rem;
    }
    
    .fun-facts {
        grid-template-columns: 1fr;
    }
    
    .fact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .letter {
        font-size: 1.2rem;
    }
    
    .fact-card h3 {
        font-size: 1.3rem;
    }
    
    .fact-card p,
    .fact-card li {
        font-size: 1rem;
    }
} 