* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

html,
body {
    min-height: 100%;
}

body {
    background: #171825 url('web/images/bg.png') no-repeat center center / cover fixed;
    color: #eef0ff;
}

/* ---------- Experience selector ---------- */
.selection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.selection .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    max-width: 1200px;
    width: 100%;
}

.nav-link {
    text-decoration: none;
    display: block;
    flex: 1 1 320px;
    max-width: 560px;
}

.column {
    position: relative;
    width: 100%;
    min-height: 380px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 2rem 2rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.column::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 14, 26, 0.45);
    transition: background 0.35s ease;
    pointer-events: none;
}

.column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.35);
}

.column:hover::before {
    background: rgba(12, 14, 26, 0.25);
}

/* Web card */
.row > .nav-link:nth-child(1) .column {
    background-image: url('web/images/bg1_0.png');
}

.row > .nav-link:nth-child(1) .column:hover {
    background-image: url('web/images/bg1_1.gif');
}

/* Game card */
.row > .nav-link:nth-child(2) .column {
    background-image: url('web/images/bg2_0.gif');
}

.row > .nav-link:nth-child(2) .column:hover {
    background-image: url('web/images/bg2_1.gif');
}

.title,
.subtitle {
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.title {
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #f3d07c;
    opacity: 0.95;
}

@media screen and (max-width: 900px) {
    .column {
        min-height: 300px;
    }

    .title {
        font-size: 2rem;
    }
}