
body {
    background: #141414;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
}

.team-section {
    padding: 80px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    color: #e50914;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-card {
    background: #181818;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

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

.team-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.role {
    color: #e50914;
    font-style: italic;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e50914;
}

.back-btn {
    display: inline-block;
    background: #e50914;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 30px;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #f40612;
}
.netflix-header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

nav {
    padding: 25px 4%;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 20%;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 4%;
    position: relative;
    z-index: 10;
}
.btn-team, .btn-signin {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-team {
    color: var(--nf-light);
    background: rgba(255, 255, 255, 0.08);
}

.btn-team:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-signin {
    background: var(--nf-red);
    color: var(--nf-light);
}

.btn-signin:hover {
    background: #f40612;
}
.nav-right {
    display: flex;
    gap: 12px;
}
