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

body {
    background-color: #262626;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Logó formázása és reszponzivitása */
.logo-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 550px;
    margin: 0 auto 20px auto;
}

.logo-text {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 400;
    letter-spacing: -1px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    line-height: 1.1;
    perspective: 1000px;
}

/* Betűanimáció: Blur-in + Enyhe 3D Rotáció + Nagyítás */
.letter {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.25) rotateY(-15deg) translateY(-8px);
    animation: revealLetter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cyan vonal elhelyezése és animációja (kiterjesztve teljesen az 'e' betű külső széléig) */
.svg-line-container {
    width: 100%;
    height: clamp(16px, 3.5vw, 32px);
    margin-top: -2.5%;
    overflow: visible;
}

.svg-line-container svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.curved-line {
    stroke-dasharray: 330;
    stroke-dashoffset: 330;
    animation: drawLine 2.2s ease-in-out forwards;
}

/* Alcím finomított beúszása */
.subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(12px, 2.5vw, 20px);
    font-weight: 300;
    color: #d1d1d1;
    letter-spacing: clamp(1px, 0.4vw, 3px);
    text-transform: uppercase;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(16px);
    animation: fadeInSubtitle 1.8s ease-out forwards;
    margin-top: clamp(15px, 3vw, 35px);
}

/* Keyframes */
@keyframes revealLetter {
    to {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1) rotateY(0deg) translateY(0);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInSubtitle {
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    .logo-wrapper {
        margin-bottom: 10px;
    }
}