/* Alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #030712;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Hangulatos háttérvilágítás */
.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseBg 4s infinite alternate;
}

/* Fő tároló */
.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Felső szöveg elrendezése */
.header-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 162, 255, 0.2);
    padding-bottom: 15px;
}

.left-text {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.right-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: #00a2ff;
    text-shadow: 0 0 15px rgba(0, 162, 255, 0.6);
    letter-spacing: 2px;
}

/* Középső Logó Tároló és Csillogás */
.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 162, 255, 0.25);
    animation: float 6s ease-in-out infinite;
    overflow: hidden; /* A csillogás levágásához */
}

.main-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
}

/* Csillogó effekt ami átvonul a képen */
.logo-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    animation: shimmer 3.5s infinite ease-in-out;
    z-index: 4;
}

/* Alsó "Hamarosan" rész */
.coming-soon {
    margin-top: 40px;
    text-align: center;
}

.pulse-text {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #ffffff;
    animation: textPulse 2s infinite alternate;
}

.energy-bar {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00a2ff, transparent);
    margin: 10px auto 0 auto;
    position: relative;
    overflow: hidden;
}

/* Animációk */

/* Lebegés */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Átvonuló csillogás */
@keyframes shimmer {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

/* Háttér lüktetése */
@keyframes pulseBg {
    0% { opacity: 0.6; width: 500px; height: 500px; }
    100% { opacity: 1; width: 650px; height: 650px; }
}

/* Szöveg lüktetése */
@keyframes textPulse {
    0% { opacity: 0.5; text-shadow: 0 0 5px rgba(255,255,255,0.1); }
    100% { opacity: 1; text-shadow: 0 0 15px rgba(0, 162, 255, 0.8); }
}

/* Reszponzív nézet mobilra */
@media (max-width: 600px) {
    .header-text {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .left-text { font-size: 1.8rem; }
    .right-text { font-size: 1.2rem; }
    .main-logo { max-width: 300px; }
}