* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rainbow: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dda0dd, #ff7675);
    --neon: #00f5ff;
    --purple: #9b59b6;
    --pink: #ff1744;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rainbow);
    background-size: 400% 400%;
    animation: rainbowShift 3s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.splash-screen.hidden {
    transform: scale(0) rotate(360deg);
    opacity: 0;
}

.splash-content {
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.splash-logo {
    font-size: 4rem;
    animation: spin 3s linear infinite, glow 2s ease-in-out infinite alternate;
}

.splash-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin: 20px 0;
    text-shadow: 3px 3px 0px var(--pink), 6px 6px 0px var(--purple);
    animation: wobble 1s ease-in-out infinite;
}

.main-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.main-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--neon);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    background: var(--rainbow);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowText 2s linear infinite;
}

button {
    background: var(--rainbow);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: rainbowShift 3s ease infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.enter-btn {
    background: none;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: none;
    box-shadow: none;
    margin-top: 20px;
}

.enter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid var(--neon);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: none;
    box-shadow: 0 3px 10px rgba(0, 245, 255, 0.2);
    white-space: nowrap;
}

.section-btn:hover {
    background: var(--neon);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.4);
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon);
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-coin {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.float-coin:nth-child(1) { left: 10%; animation-delay: 0s; }
.float-coin:nth-child(2) { left: 30%; animation-delay: 1s; }
.float-coin:nth-child(3) { left: 50%; animation-delay: 2s; }
.float-coin:nth-child(4) { left: 70%; animation-delay: 3s; }
.float-coin:nth-child(5) { left: 90%; animation-delay: 4s; }

section {
    margin: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.4s; }
section:nth-child(4) { animation-delay: 0.6s; }

section h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    background: var(--rainbow);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowText 2s linear infinite;
}

section p {
    font-size: 1.2rem;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--neon);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--neon);
    animation: pulse 2s ease-in-out infinite;
}

.team-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.team-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    animation: bounce 1s ease-in-out infinite;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--neon);
    max-width: 600px;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--pink);
    color: white;
    animation: glow 2s ease-in-out infinite alternate;
}

.btn-secondary {
    background: var(--purple);
    color: white;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rainbowText {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px var(--neon); }
    to { text-shadow: 0 0 20px var(--neon), 0 0 30px var(--neon); }
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    section h2 { font-size: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-buttons { flex-direction: column; align-items: center; }
}
