#teams {
    background: #050a06; 
    position: relative;
}
.coming-soon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.coming-soon-content {
    background: rgba(146, 183, 117, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px dashed rgba(146, 183, 117, 0.4);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}
.coming-soon-content i {
    font-size: 3.5rem;
    color: var(--bordo);
    margin-bottom: 20px;
    filter: brightness(1.5);
    animation: pulseIcon 2s infinite;
}
.coming-soon-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--beyaz);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.coming-soon-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
}
@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}
.team-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.coming-soon-content {
    background: rgba(146, 183, 117, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(146, 183, 117, 0.2);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 40px;
    overflow: hidden;
}
.loading-progress {
    width: 60%;
    height: 100%;
    background: var(--bordo);
    box-shadow: 0 0 15px var(--bordo);
    border-radius: 10px;
    animation: progressAnim 3s ease-in-out infinite;
}
@keyframes progressAnim {
    0% { width: 10%; }
    50% { width: 80%; }
    100% { width: 10%; }
}

/* Teams page embedded styles */
.team-page-wrapper {
        min-height: 100vh;
    }

    .team-section {
        margin-bottom: 80px;
        text-align: center;
    }

    .team-section-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
        gap: 20px;
        padding: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .team-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .team-section-header i {
        font-size: 1.8rem;
    }

    .team-section-header h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--beyaz);
        letter-spacing: 1px;
        text-align: left;
    }

    .team-card:hover {
        transform: translateY(-8px);
        background: rgba(146, 183, 117, 0.08);
        border-color: rgba(146, 183, 117, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .team-card-link {
        text-decoration: none;
        display: block;
    }

    .team-card-link .team-card:hover {
        transform: translateY(-8px);
        background: rgba(146, 183, 117, 0.08);
        border-color: rgba(146, 183, 117, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .member-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid var(--bordo);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        align-self: center;
    }

    .team-color {
        color: var(--team-color);
    }

    .member-avatar.team-themed {
        border-color: var(--team-color);
        background: var(--team-bg);
    }

    .team-card:hover .member-avatar {
        transform: scale(1.05);
    }

    .avatar-letter {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--beyaz);
        line-height: 1;
    }

    .member-avatar i {
        font-size: 1rem;
        margin-top: 4px;
        opacity: 0.7;
    }

    .member-info {
        text-align: center;
        align-self: center;
    }

    .member-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--beyaz);
        margin-bottom: 4px;
    }

    .member-role {
        font-size: 0.85rem;
        font-weight: 500;
        opacity: 0.8;
    }

    @media (max-width: 768px) {
        .team-section {
            margin-bottom: 60px;
        }

        .team-section-header h3 {
            font-size: 1.4rem;
        }

        .team-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            padding: 10px;
        }

        .team-card {
            padding: 20px;
        }

        .member-avatar {
            width: 65px;
            height: 65px;
        }

        .avatar-letter {
            font-size: 1.5rem;
        }
    }
