html, body {
    height: 100%;
}

body {
    background-color: #121212e1;
    color: #e0e0e0;
}

header {
    background-color: #1f1f1f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 200px;
    height: auto;
}

.description-box {
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.game-column {
    transition: all 0.3s ease;
    border-radius: 30px;
}

.game-column.highlight {
    border-radius: 30px 30px 30px 30px;
}

.game-column.highlight .feature-checklist {
    background: #3a3a3a;
}

.game-section {
    display: flex;
    justify-content: center;
    text-align: center;
    background-size: cover;
    position: relative;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px 30px 0 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.game-section:hover::before {
    border-radius: 30px 30px 0 0;
    background: rgba(0, 0, 0, 0.8);
}

.game-info {
    z-index: 2;
    padding: 0px 10px;
    border-radius: 30px 30px 0 0;
}

.game-info h2 {
    font-weight: bold;
}

.game-logo {
    max-height: 120px;
    margin-bottom: 5px;
    margin-top: 10px;
    width: 100%;
    height: auto;
    padding: 0 10px;
    max-height: none;
}

.toontown-logo {
    margin-top: -70px;
    margin-bottom: -70px;
}

.pirates-logo {
    margin-top: 30px;
    margin-bottom: 20px;
}

#toontown {
    background-image: url('/cog-bust-weekend-large.jpg');
}

#pirates {
    background-image: url('/Jolly_Roger.webp');
}

.feature-checklist {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: background-color 0.3s ease;
}

.feature-checklist .list-group-item {
    background-color: transparent;
    border: none;
    padding: 1rem 0;
    margin-left: 10px;
    color: #e0e0e0;
}

.feature-checklist i {
    margin-right: 10px;
}

footer {
    background-color: #1f1f1f;
    margin-top: auto;
} 
