@media screen and (max-width: 480px) {
    body {
        font-size: 10px;
    }

   #boot-container {
        font-size: 10px;
		border: 2px solid lime !important;
		left: 40% !important;
        width: 90vw !important; /* Csökkentett szélesség mobilon */
        min-width: 300px !important; /* A legkisebb megengedett szélesség */
        max-width: 396px !important; /* Ne legyen túl széles kisebb kijelzőkön */
		left: 50% !important;
    transform: translateX(-50%) !important;
	padding: 5px !important;
    }

    .cursor {
        width: 4px;
        height: 10px;
    }
}



body {
	background-color: black;
	color: lime;
	font-family: 'Courier New', monospace;
	font-size: 16px;
	white-space: pre;
	overflow: hidden;
	text-align: left;
	padding: 20px;
}
		
#boot-container {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    max-width: 700px; 
    min-width: 400px;
    height: 50vh;
    max-height: 500px;
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid lime;
    padding: 20px;
    overflow-y: auto;
    white-space: pre-wrap;
    text-align: left;
}

#skip-intro {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: lime;
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}

#skip-intro:hover {
    background-color: darkgreen;
    color: white;
}

.cursor {
	display: inline-block;
	width: 10px;
	height: 16px;
	background-color: lime;
	animation: blink 1s infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

.blink {
	animation: blinkText 1s infinite;
}

@keyframes blinkText {
	50% { opacity: 0; }
}

.mobile-button {
	display: none;
	margin-top: 20px;
	padding: 10px 20px;
	background-color: lime;
	color: black;
	font-size: 16px;
	border: none;
	cursor: pointer;
}
.mobile-button:hover {
	background-color: darkgreen;
}

/* A skip gomb (ha még nem fix) */

/* A belépő link – pont a gomb alatt, ugyanaz a “lime” monospace */
#enter-link{
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    color: lime;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}
#enter-link:hover{ text-decoration: underline; }
