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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
}

/* Mobil nézet - görgetés engedélyezése */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
    }
}

/* ===== INTRO ANIMÁCIÓ ===== */
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.intro-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

#introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FŐ TARTALOM ===== */
.main-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
    padding: 2rem;
}

/* PC layout - horizontal elrendezés */
@media (min-width: 769px) {
    .main-content {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        gap: 3rem;
        padding: 3rem;
    }
}

.main-content.hidden {
    opacity: 0;
    display: none;
}

/* ===== LOGÓ ===== */
.logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInScale 1s ease-out;
}

.logo {
    max-width: 280px;
    width: 60vw;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
    animation: pulse 3s ease-in-out infinite;
}

/* PC layout - logó balra */
@media (min-width: 769px) {
    .logo-container {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .logo {
        max-width: 280px;
        width: 25vw;
    }
}

/* ===== SZÖVEGEK ===== */
.text-container {
    text-align: center;
    z-index: 10;
}

/* PC layout - szövegek jobbra */
@media (min-width: 769px) {
    .text-container {
        text-align: left;
        max-width: 600px;
        flex: 1;
    }
}

.title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    letter-spacing: 0.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: 0.7em;
    margin-top: 0.5rem;
}

/* PC méret - nagyobb címek */
@media (min-width: 769px) {
    .title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        letter-spacing: 0.4rem;
        margin-bottom: 0.8rem;
    }
    
    .title-sub {
        font-size: 0.65em;
    }
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 300;
    color: #FFFF00;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* PC méret - nagyobb alcím */
@media (min-width: 769px) {
    .subtitle {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
        letter-spacing: 0.25rem;
        margin-bottom: 2rem;
    }
}

/* ===== SOCIAL TEXT ===== */
.social-text {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* PC méret - nagyobb social szekció */
@media (min-width: 769px) {
    .social-text {
        margin-top: 2rem;
        padding: 1.5rem 2rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.follow-text,
.follow-text-en {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    margin: 0.3rem 0;
    color: #FFFF00;
    font-weight: 500;
}

/* PC méret - nagyobb szövegek */
@media (min-width: 769px) {
    .follow-text,
    .follow-text-en {
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin: 0.4rem 0;
    }
}

.follow-text-en {
    font-style: italic;
}

.tiktok-link {
    display: inline-block;
    margin-top: 0.7rem;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    color: #FFFF00;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 0, 80, 0.4);
}

/* PC méret - nagyobb gomb */
@media (min-width: 769px) {
    .tiktok-link {
        margin-top: 1rem;
        font-size: clamp(1.1rem, 2.2vw, 1.6rem);
        padding: 1rem 2.5rem;
    }
}

.tiktok-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 80, 0.6);
}

/* ===== ANIMÁCIÓK ===== */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(138, 43, 226, 1));
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== VILLÁM OVERLAY ===== */
.lightning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lightning-overlay.flash {
    background: rgba(255, 255, 255, 0.4);
    animation: lightningFlash 0.2s ease;
}

@keyframes lightningFlash {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
    
    .title {
        letter-spacing: 0.2rem;
    }
    
    .subtitle {
        letter-spacing: 0.1rem;
    }
    
    .social-text {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .social-text {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .tiktok-link {
        padding: 0.8rem 1.5rem;
    }
}
