.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 35px;
}

.headline {
    text-align: center;
    max-width: 600px;
}

.headline h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline p {
    font-size: 1rem;
    color: #8fa0dd;
    font-family: var(--font-body);
    font-weight: 300;
}

.game-modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 950px;
}

.game-card {
    background: rgba(25, 18, 48, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    background: rgba(35, 28, 64, 0.6);
    border-color: var(--border-active);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.game-card.selected {
    background: rgba(45, 33, 85, 0.65);
    border-color: var(--selected-color, var(--neon-blue));
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.15);
}

.game-card.selected::before {
    background: var(--selected-color, var(--neon-blue));
}

.game-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s;
}

.game-card:hover .game-card-icon {
    transform: scale(1.1);
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}

.game-card-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Player Selector Dial */
.setup-option-box {
    background: rgba(16, 12, 34, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}

.setup-option-title {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #93c5fd;
}

.player-selector-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.selector-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selector-btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.selector-btn.active {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: #07040f;
    box-shadow: var(--glow-blue);
}

@media(max-width: 900px) {
    .game-modes-grid {
        grid-template-columns: 1fr;
    }
}
