main.page-home {
    display: block;
    overflow-y: auto;
}

.page-home {
    padding: 3rem;
    box-sizing: border-box;
}

.page-home .home-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}

.page-home .home-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-background-hover);
}

.page-home .home-logo img {
    height: 8rem;
    width: auto;
}

.page-home .home-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.page-home .home-editors {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0.75rem;
    justify-content: end;
}

.page-home .home-editor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--color-background-hover);
    border-radius: 0.5rem;
}

.page-home .home-editor img {
    height: 1.25rem;
}

.page-home .home-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-home .home-players {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-home .home-player {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background-color: var(--color-background-hover);
    border-radius: 0.75rem;
}

.page-home .home-player-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.page-home .home-player-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.page-home .home-player-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.page-home .home-player-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.page-home .home-player-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-home .home-player-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.75;
}

.page-home .home-player-flag {
    border-radius: 2px;
}

.page-home .home-player-points {
    font-size: 0.875rem;
    opacity: 0.75;
    font-family: 'Lexend Deca', sans-serif;
}

.page-home .home-player-description {
    font-size: 0.875rem;
    opacity: 0.75;
}

.page-home .home-player-links {
    display: flex;
    gap: 0.75rem;
}

.page-home .home-player-link {
    color: var(--color-primary);
    text-decoration: none;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 2px solid var(--color-primary);
}

.page-home .home-player-link:hover {
    background-color: var(--color-primary);
    color: var(--color-on-primary);
}

.page-home .home-player-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 20rem;
    flex-shrink: 0;
}

.page-home .home-player-hardest {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-home .home-player-hardest-name {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.875rem;
}

.page-home .home-player-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
}

.page-home .home-player-no-video {
    font-size: 0.875rem;
    opacity: 0.5;
    font-family: 'Lexend Deca', sans-serif;
}

.page-home .home-changes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-home .home-change {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--color-background-hover);
    border-radius: 0.5rem;
}

.page-home .home-change-date {
    font-size: 0.8rem;
    opacity: 0.5;
    font-family: 'Lexend Deca', sans-serif;
    white-space: nowrap;
}

.page-home .home-progress {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-home .home-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--color-background-hover);
    border-radius: 0.5rem;
}

.page-home .home-progress-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-home .home-player-name-row h3 {
    font-size: 2rem !important;
}
