:root {
    --electric-green: #7ED957;
    --lightning-yellow: #FFD700;
    --sky-blue: #00CFFF;
    --midnight-navy: #1E2B3A;
    --charcoal-gray: #4A4A4A;
    --off-white: #FAF8F1;
    --cool-gray: #F0F3F7;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--charcoal-gray);
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.mascot-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--electric-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.mascot::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.mascot-placeholder {
    font-size: 5rem;
    color: var(--lightning-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--electric-green), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-section {
    flex: 1;
    max-width: 500px;
}

h1 {
    color: var(--midnight-navy);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--charcoal-gray);
}

.cta-container {
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--lightning-yellow);
    color: var(--midnight-navy);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.cta-button:hover::after {
    animation: shine 1s;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--sky-blue);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--electric-green);
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--charcoal-gray);
    font-size: 0.9rem;
}

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

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .mascot {
        width: 200px;
        height: 200px;
    }

    .logo {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

.mascot-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: transparent;
} 