/**
 * Enhanced Styles for Team Page
 * Matching the reference design with clean white background and team cards
 */

/* Base Styles */
body {
    background: #ffffff;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

#root {
    background: #ffffff;
    min-height: 100vh;
}

/* Main Container */
.sc-kstqJO.jYtiBH {
    padding-top: 90px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}

/* Section Container */
.sc-crrszt.iprKbO {
    margin-bottom: 50px;
    text-align: left;
}

.sc-crrszt.cGlxVe {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* Headings */
.sc-iqHYmW.kHbDpc {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

/* Paragraphs */
.sc-dQoVA.hEiRSt {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

/* Team Grid */
.sc-idOiZg.bDyQJJ.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
    row-gap: 1rem;
    margin-bottom: 30px;
}

/* Team Item */
.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
}

/* Team Image Container */
.team-image-container {
    width: 253px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* Team Image */
.team-image {
    width: 200px;
    height: 260px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    display: block;
}

/* Team Image Placeholder */
.team-image-placeholder {
    width: 200px;
    height: 260px;
    background-color: #E0E0E0;
}

/* Team Name */
.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

/* Team Role */
.team-role {
    font-size: 14px;
    color: #666666;
    font-family: "Poppins", sans-serif;
}

/* Footer */
.sc-gKseQn.jbPSmi {
    background-color: #353535;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 50px;
}

.sc-gKseQn.jbPSmi .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-gKseQn.jbPSmi .sc-bdfBQB.fRUpFr.discord,
.sc-gKseQn.jbPSmi .sc-gsTEea.bUpIAL.twitter {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.sc-gKseQn.jbPSmi .sc-bdfBQB.fRUpFr.discord:hover,
.sc-gKseQn.jbPSmi .sc-gsTEea.bUpIAL.twitter:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sc-idOiZg.bDyQJJ.team-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 1rem;
    }
}

@media (max-width: 768px) {
    .sc-kstqJO.jYtiBH {
        padding-top: 80px;
    }
    
    .sc-iqHYmW.kHbDpc {
        font-size: 28px;
    }
    
    .sc-idOiZg.bDyQJJ.team-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 1rem;
    }
    
    .sc-gKseQn.jbPSmi {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sc-gKseQn.jbPSmi .right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sc-idOiZg.bDyQJJ.team-grid {
        grid-template-columns: 1fr;
        column-gap: 16px;
        row-gap: 1rem;
    }
}

