@import url(default.css); 

h2 {

    margin-top: 0;
    border-bottom: 1px solid var(--subline);
    padding-bottom: 8px;
    font-size: 4em;

}


.main-content {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;

}

.title-container {

    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--subline);
    padding-bottom: 0px;
    width: 100%;
    font-size: 2em;
    p {
        margin-top: 0;
        font-size: 0.75em;
        color: var(--text-secondary);}
}

/* Game Library Section */

.game-library {

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.game-cards {

    display: grid;
    /* Force 10 boxes per row */
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 20px;
    width: 100%;

}

.game-box {

    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
    max-width: 160px;
    box-sizing: border-box;
    margin: 0 auto;


    img {
        width: 100%;
        height: auto;
        max-height: 120px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 10px;
    }

}



/* End of Game Library Section */



.interests-icon {

    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 150px;
    height: 100%;
    z-index: 2;
    
}

.interests-icon-scvh {

    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    height: 100%;
    z-index: 2;
    
}

footer {

  border-top: 1px solid var(--border);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.9em;
  width: 100%;
  margin: 15px 0;
  padding: 10px 20px;
  box-sizing: border-box;

}