/* ======================================= */
/* STILURI GENERALE LANDING PAGE */
/* ======================================= */

body {
    font-family: 'Russo One', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #000000; /* FUNDAL NEGRU */
    color: white; 
    line-height: 1.6;
    height: 100vh;
    overflow: hidden; 
    
    /* 💥 PROPRIETĂȚI ADĂUGATE: DEZACTIVEAZĂ SELECTAREA TEXTULUI */
    -webkit-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
}

/* Containerul principal care centrează conținutul */
.landing-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1; 
}

/* Stil pentru LOGO */
.main-logo {
    max-width: 150px; 
    height: auto; 
    margin-bottom: 20px; 
    /* Culoarea de umbră este păstrată din codul tău nou (galben/auriu) */
    filter: drop-shadow(0 0 10px rgba(230, 208, 36, 0.109)); 
}

/* TITLUL RUSSO.RO */
.main-title {
    font-family: 'Russo One', sans-serif;
    font-size: 8vw; 
    color: #e6d024; /* Culoare titlu (Galben) */
    text-shadow: 0 0 20px rgba(230, 208, 36, 0.7); /* Umbră neon (Galben) */
    margin-bottom: 40px;
    letter-spacing: 5px;
    line-height: 1;
}

/* BUTONUL DISCORD STILIZAT */
.discord-button {
    text-decoration: none; 
    background-color: #a4941c; /* Fundal buton (Auriu închis) */
    color: white;
    padding: 15px 40px;
    border: 3px solid #a4941c;
    border-radius: 50px; 
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(230, 208, 36, 0.4); /* Umbră (Galben) */
    transition: all 0.3s ease-in-out;
}

.discord-button:hover {
    background-color: #7c7016; /* Fundal hover (Auriu și mai închis) */
    border-color: #7c7016;
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(215, 194, 33, 0.6); /* Umbră hover (Galben) */
}

/* FOOTER */
footer {
    width: 100%;
    background-color: transparent;
    color: #444; 
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
    position: absolute; 
    bottom: 0;
}

/* ======================================= */
/* STILURI INTRO ȘI RESPONSIVITATE */
/* ======================================= */

/* Stiluri intro */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
    overflow: hidden;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main-content.hidden {
    opacity: 0;
    display: none;
}

.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Media Query pentru Mobil */
@media (max-width: 600px) {
    .main-logo {
        max-width: 200px;
    }
    
    .main-title {
        font-size: 12vw; 
    }

    .discord-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
}