body {
    font-family: 'Roboto', sans-serif;
    background-color: #0f0f0f; /* Teljesen sötét, keretmentes háttér */
    color: #ffffff;
    margin: 0;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 550px;
    text-align: center;
}

h1 {
    color: #007bff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-text {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

#instruction {
    font-size: 22px;
    margin-bottom: 30px;
    color: #007bff;
}

/* Gombok - Csak itt marad keret */
.step { display: none; }
.step.active { display: block; animation: fadeIn 0.5s ease; }

.btn-group { display: flex; flex-direction: column; gap: 15px; }

.btn {
    padding: 22px;
    border: 1px solid #333; /* Finom keret csak a gomb körül */
    border-radius: 12px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    border-color: #007bff;
    background-color: #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
}

.btn-main {
    border-color: #007bff;
    background-color: #007bff;
    font-size: 24px;
    padding: 30px;
}

/* Információs rész - Doboz nélkül */
.info-section {
    margin-top: 60px;
    text-align: center;
}

.info-block h3 {
    color: #007bff;
    font-size: 24px;
}

.info-block p {
    color: #aaa;
    line-height: 1.6;
    max-width: 450px;
    margin: 10px auto;
}

.legal-note {
    font-size: 13px;
    color: #666 !important;
}

/* Lábléc */
footer {
    margin-top: 50px;
    padding-top: 20px;
}

.warning { color: #ff4d4d; font-weight: bold; margin-bottom: 10px; }
.copyright { color: #444; font-size: 13px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobil optimalizálás */
@media (max-width: 480px) {
    h1 { font-size: 32px; }
    .btn { padding: 18px; font-size: 16px; }
}

/* Modern pörgő animáció */
.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 123, 255, 0.1);
    border-top: 3px solid #007bff; /* Neon kék */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#search-status {
    color: #888;
    font-size: 16px;
    letter-spacing: 1px;
}