* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: monospace;
    background-color: #1e1e1e;
    color: #f0f0f0;
}

.page-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top 2/3 of screen filled with repeating rows */
.hero {
    position: relative;
    flex: 2;
    background: #ff0000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-rows {
    position: absolute;
    width: 100%;
    height: 110%;
    display: grid;
    grid-template-rows: repeat(8, 1fr);
    z-index: 0;
    pointer-events: none;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Oswald", sans-serif;
    font-size: 12vw; /* Adjusts with width */
    height: 3vh; /* 8 rows of 12.5vh = 100vh */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    margin: -10px;
    letter-spacing: 1vw;
    text-transform: uppercase;
    line-height: 1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background: white;
    padding: 30px 40px;
    border-radius: 1px;
    box-shadow: 5px 5px cadetblue;
    max-width: 600px;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #000;
}

/* Bottom 1/3 with game links */
.games {
    flex: 1;
    display: flex;
    flex-direction: row;
    background: #2b2b2b;
}

.game-card {
    flex: 1;
    padding: 30px;
    border-top: 6px dashed #000;
    text-align: center;
    color: #f0f0f0;
}

.game-card:first-child {
    border-right: 6px dashed #fff;
}

.game-card h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.game-card a {
    color: #66ccff;
    text-decoration: none;
    display: inline-block;
    margin: 4px 0;
}

.game-card a:hover {
    color: #fff;
    text-decoration: underline;
}
