#games{
    width: 60%;
    margin: auto auto 30px;
}

#games h2, #games h3, #games h4, #games h5, #games h6 {
    text-transform: none;
    cursor: unset;
}

#games h1, #games details summary.h1{
    font-size: 60px;
    cursor: unset;
}

#games h2, #games details summary.h2{
    color: #b44ad9;
    margin-bottom: 2px;
    text-transform: none;
}

#games a{
    font-size: 16px;
}

#games .link-spacer{
    margin: 0 6px;
    color: #fffc95;
}

#games p{
    line-height: 25px;
    margin-bottom: 7px;
}

#games .page-controls{
    display: flex;
    flex-direction: row;
    margin-top: 0.25rem;
}

#games .page-controls button{
    margin-left: 0.5rem;
}

/* Favorites Section Styles */
#favorites-section {
    margin-bottom: 0;
}

#favorites-section h2 {
    color: #b44ad9;
    margin-bottom: 1rem;
}

#favorites-list {
    margin-bottom: 0;
}

.favorites-divider {
    border: none;
    border-top: 1px solid #b44ad9;
    margin: 1rem 0;
    opacity: 0.7
}

/* Star Icon Styles */
.star-icon {
    display: inline-block;
    cursor: pointer;
    font-size: 0.8em;
    margin-left: 0.5rem;
    color: transparent;
    text-shadow: 0 0 0 #b44ad9;
    transition: all 0.2s ease;
    user-select: none;
}

.star-icon:hover {
    transform: scale(1.1);
    color: #ea166c;
    text-shadow: 0 0 0 #ea166c;
}

.star-icon.favorited {
    color: #ea166c;
    text-shadow: 0 0 0 #ea166c;
}

.star-icon.favorited:hover {
    color: #b44ad9;
    text-shadow: 0 0 0 #b44ad9;
}

/* Favorite Game Item Styles */
.favorite-game-item {
    transition: all 0.2s ease;
}

.favorite-game-item details {
    margin: 0;
}

.favorite-game-item details summary {
    cursor: pointer;
    font-weight: bold;
    color: #b44ad9;
    font-size: 0.9em;
}

.favorite-game-item .star-icon {
    color: #ea166c;
    text-shadow: 0 0 0 #ea166c;
}

.favorite-game-item .star-icon:hover {
    color: #b44ad9;
    text-shadow: 0 0 0 #b44ad9;
}
