.creators-container {
    padding-top: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.creators-container h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}


.teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.team-cell, .special-cell {
    background-color: rgba(50,50,50,0.5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-cell:hover, .special-cell:hover {
    transform: scale(1.03);
}

.team-name {
    font-family: 'Lustra Regular';
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-creators {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.creator-card {
    background-color: rgba(30,30,30,0.7);
    border-radius: 10px;
    padding: 15px;
    width: 250px;
}

.creator-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.creator-name {
    font-family: 'Lustra Regular';
    margin-top: 10px;
    color: var(--text-color);
}

.creator-socials a {
    font-family: 'Lustra Regular';
    text-decoration: none;
    font-weight: normal;
    color: var(--primary-color);
}

.creator-socials  a:hover {
    color: var(--secondary-color);
}

.special-cell {
    grid-column: 1 / span 2;
    width: 100%;
    margin-top: 4rem;
}

.special-cell-content {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.special-cell-title {
    font-family: 'Lustra Bold', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .teams-grid {
        grid-template-columns: 1fr;
    }

    .special-cell {
        grid-column: 1;
    }
}

@media screen and (max-width: 500px) {
    .creator-card {
        width: calc(50vw - 60px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .creator-image {
        width: 100px;
        height: 100px;
    }

    div.creator-socials {
        display: block;
    }
}