body {
    background-color: black;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    background: url('https://www.redactedsociety.com/socials/RS_Website_Background.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.calendar-container {
    margin-top: 20px;
    text-align: center;
}

.match-calendar {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.match-calendar th,
.match-calendar td {
    border: 1px solid #ddd;
    padding: 8px;
}

.match-calendar th {
    background-color: #333;
    color: white;
}

h1 {
    padding-bottom: 90px;
    padding-top: 90px;
    font-family: 'Oswald', sans-serif;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.player-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    min-height: 320px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out 0.1s, box-shadow 0.3s ease-in-out 0.1s;
    position: relative;
    overflow: hidden;
}

.player-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px gold;
    transition-delay: 0s;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.player-card:hover .avatar {
    transform: scale(1.1);
}

.description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}

.player-card:hover .description {
    opacity: 1;
    max-height: 300px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.socials a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.socials a:hover {
    color: gold;
}

.footer {
    background: #111;
    text-align: center;
    font-size: 14px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
