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

body {
background: #000000;
color: #ffb3d9;
font-family: 'Fredericka the Great', serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 32px 20px;
}

.gate-wrap {
max-width: 720px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
text-align: center;
}

.gate-line {
font-size: 1.9rem;
line-height: 1.4;
margin: 0;
color: #ffb3d9;
}

.gate-hint {
color: #b5334a;
}

.gate-question {
font-size: 2.1rem;
margin-top: 10px;
}

.gate-choices {
display: flex;
flex-direction: column;
gap: 18px;
width: 100%;
max-width: 420px;
margin-top: 6px;
}

.gate-btn {
font-family: 'Fredericka the Great', serif;
font-size: 1.6rem;
color: #ffb3d9;
background: transparent;
border: 2px solid #ffb3d9;
padding: 14px 18px;
cursor: pointer;
text-decoration: none;
display: block;
width: 100%;
-webkit-tap-highlight-color: transparent;
}

.gate-btn:hover,
.gate-btn:focus-visible {
background: #ffb3d9;
color: #000000;
outline: none;
}

@media (max-width: 600px) {
.gate-line { font-size: 1.5rem; }
.gate-question { font-size: 1.7rem; }
.gate-btn { font-size: 1.3rem; }
}
