body.team{--primary: #2A5C84;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --dark: #2D3436;
    --light: #F9F9F9;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));}
body.team{font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);}
.hero-title{font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;}
.gradient-text{background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: textFlow 3s ease infinite;}
@keyframes textFlow{0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }}
.member-grid{display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    will-change: transform;}
.member-card{background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;}
.member-card:hover{transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);}
.member-card:active{animation: clickFeedback 0.3s;}
@keyframes clickFeedback{0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }}
.avatar-frame{position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;}
.member-avatar{width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;}
.hover-zoom:hover{transform: scale(1.1);}
.hover-zoom{transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);}
.avatar-border{position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 50%;
    animation: rotateBorder 8s linear infinite;
    will-change: transform;}
@keyframes rotateBorder{0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.8;
    }}
@media (max-width: 768px){.hero-title {
        font-size: 2.5rem;
    }

    .member-grid {
        grid-template-columns: 1fr;
    }}
.animated-dots{display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;}
.dot{width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: bounce 1.4s infinite;}
.dot:nth-child(2){animation-delay: 0.2s;}
.dot:nth-child(3){animation-delay: 0.4s;}
@keyframes bounce{0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }}
.scrolling-text-container{overflow: hidden;
    white-space: nowrap;
    margin: 2rem 0;}
.scrolling-text{display: inline-block;
    animation: scrollText 20s linear infinite;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;}
@keyframes scrollText{from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }}
@keyframes fadeIn{from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }}
.bio-list{margin: 1.5rem 0;
    padding-left: 0;}
.bio-item{position: relative;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.7;}
.decorative-line{position: absolute;
    left: 0;
    top: 0.6em;
    width: 1rem;
    height: 2px;
    background: var(--accent);
    margin-right: 0.8rem;
    transition: width 0.3s ease;}
.bio-item:hover .decorative-line{width: 1.5rem;
    background: var(--secondary);}
@media (max-width: 480px){.bio-item {
        padding-left: 1.5rem;
    }}
.section-title{display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    font-size: 2.4rem;
    color: var(--primary);}
.section-title::before,
.section-title::after{content: '';
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            rgba(78, 205, 196, 0.5),
            transparent);}
.section-title span{padding: 0 1rem;
    position: relative;
    display: inline-block;}
.section-title span::after{content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;}
@media (max-width: 768px){.section-title {
        font-size: 2rem;
        gap: 1rem;
    }}
@keyframes pulse-glow{0% {
        box-shadow: 0 0 0 0 rgba(7, 193, 96, 0.3);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(7, 193, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(7, 193, 96, 0);
    }}