/* ═══════════════════════════════════════════════════════════════
   MASCOT SPOTLIGHT CSS
   ═══════════════════════════════════════════════════════════════ */
.mascot-spotlight {
    padding: 80px 0;
    background: var(--surface-light);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mascot-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(229, 46, 77, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.mascot-spotlight__inner {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.mascot-spotlight__image {
    flex: 0 0 40%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mascot-spotlight__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
    z-index: 0;
}

.mascot-float {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(229, 46, 77, 0.15));
}

.mascot-spotlight__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.mascot-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text) 0%, #ff4d6d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mascot-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mascot-bio {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.6;
}

.mascot-bio strong {
    color: var(--text);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .mascot-spotlight__inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .mascot-spotlight__image {
        width: 80%;
        margin: 0 auto;
    }

    .mascot-title {
        font-size: 2rem;
    }
}