body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: white;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(5px);
}

header h1 {
    font-size: 3rem;
    margin: 0;
    color: #FFD700;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.tab {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.tab.active, .tab:hover {
    background: #FFD700;
    color: #000000;
    font-weight: bold;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
    border: 1px solid #FFD700;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #FFD700;
}

.card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #FFD700;
}

.card p {
    margin: 5px 0;
    opacity: 0.9;
    color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111111;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    color: white;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
    border: 2px solid #FFD700;
}

.modal-content h2 {
    margin-top: 0;
    color: #FFD700;
}

.modal-content h4 {
    color: #FFD700;
    opacity: 0.9;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #FFD700;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    .card img { width: 90px; height: 90px; }
}
