/* Team page specific styles */

.team-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px 10px 16px;
}

.who-card {
    background: #111111;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #d1d5db;
}

.who-card h1 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.section {
    max-width: 1100px;
    margin: 16px auto 32px auto;
    padding: 0 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 18px 0 14px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.member-card {
    background: #0f0f10;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.member-header {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: center;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 9999px;
    background: transparent;
    border: 2px dashed #333;
}

/* Specific avatar image for Saketh */
.avatar.saketh {
    background-image: url('../images/sakethCrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}

/* Specific avatar image for Teja */
.avatar.teja {
    background-image: url('../images/TejaCrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}

/* Specific avatar image for John */
.avatar.john {
    background-image: url('../images/johnCrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}

/* Specific avatar for Caleb with pastel blue background and white C */
.avatar.caleb {
    background-color: #87CEEB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border: 0;
}

.avatar.caleb::before {
    content: "CJ";
}

/* Specific avatar image for Txaber */
.avatar.txaber {
    background-image: url('../images/TxaberTrevino.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}

/* Specific avatar for Sean with pastel blue background and white SS */
.avatar.sean {
    background-color: #87CEEB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border: 0;
}

.avatar.sean::before {
    content: "SS";
}

/* Specific avatar for Darshan with pastel blue background and white DS */
.avatar.darshan {
    background-color: #87CEEB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border: 0;
}

.avatar.darshan::before {
    content: "DS";
}

/* Specific avatar for Eden with pastel blue background and white EP */
.avatar.eden {
    background-color: #87CEEB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border: 0;
}

.avatar.eden::before {
    content: "EP";
}

/* Specific avatar for TangWei with pastel blue background and white TW */
.avatar.tangwei {
    background-color: #87CEEB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border: 0;
}

.avatar.tangwei::before {
    content: "TW";
}

/* Specific avatar image for Purvi */
.avatar.purvi {
    background-image: url('../images/PurviKathalkar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}

.role-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 9999px;
    background: #0a2a33;
    border: 1px solid #00b8d4;
    color: #00e5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.member-name {
    font-size: 22px;
    color: #ffffff;
    font-weight: 800;
}

.member-handle {
    color: #9ca3af;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.member-bio {
    margin-top: 12px;
    color: #d1d5db;
}

.member-links {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #262626;
    border-radius: 8px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #06b6d4;
    color: #ffffff;
    transform: translateY(-2px);
}

.discord-link {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    width: auto;
    min-width: 120px;
}

.discord-link svg {
    width: 24px;
    height: 24px;
}

.discord-link:hover {
    background: #5865f2;
    color: #ffffff;
}

.discord-tag {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}