/* Estilos para a Landing Page do Muximba */
:root {
    --primary-color: #8b4513;
    --secondary-color: #d4af37;
    --accent-color: #c0392b;
    --text-color: #2c3e50;
    --light-text: #ecf0f1;
    --background-color: #1a1a1a;
    --border-color: #8b4513;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--light-text);
    background-image: url('images/01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.landing-container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    margin-top: 5%;
    box-shadow: 0 0 30px var(--shadow-color);
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 250px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

h1 {
    font-family: 'MedievalSharp', cursive;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow-color);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.enter-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    font-family: 'MedievalSharp', cursive;
    font-size: 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.enter-button:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.enter-button:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    z-index: -1;
}

.enter-button:hover:before {
    left: 100%;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.server-info {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.info-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'MedievalSharp', cursive;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.online {
    background-color: #2ecc71;
    box-shadow: 0 0 5px #2ecc71;
}

.offline {
    background-color: #e74c3c;
    box-shadow: 0 0 5px #e74c3c;
}

.footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--light-text);
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .landing-container {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 180px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .server-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Efeito de brilho no botão */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
}

.enter-button {
    animation: glow 2s infinite;
}