/* Stiluri CSS comune pentru ambele pagini */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    background: url('images/lucid_loading.png') no-repeat center center fixed;
    background-size: cover;
}

/* Logo-ul Discord */
header {
    position: fixed;
    top: 20px;
    left: 20px;
}

.logo {
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}

/* Suprapunere semi-transparentă */
.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px; /* pentru a lăsa spațiu sus */
}

/* Conținut */
.content {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin: 0;
}

p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Lista fondatorilor */
.founders {
    margin: 20px 0;
}

.founder {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.role {
    font-style: italic;
    color: #ccc;
}

/* Butoane */
.button {
    margin-top: 20px;
}

.button a {
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    transition: 0.3s;
}

.button a:hover {
    background-color: #0056b3;
}

/* Nova Market animație */
.nova-market {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
