:root {
    --primary-color: #5865F2;
    --primary-dark: #4752c4;
    --accent-color: #99AAB5;
    --text-color: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #4752c4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1E2124;
    color: var(--text-color);
    line-height: 1.6;
}

/* Login Section */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1c1f 0%, #2C2F33 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1;
    font-family: 'Orbitron', sans-serif;
    color: #d09f00;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    max-width: 600px;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
}

.value-card p {
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.community-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.highlight span {
    color: var(--text-color);
    font-size: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 600px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-btn i,
.social-btn svg {
    font-size: 1.75rem;
    min-width: 1.75rem;
}

.social-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.social-btn strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.social-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.discord-btn {
    background: var(--gradient-primary);
    color: white;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.x-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.x-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Adicionar ao CSS existente */
.x-logo {
    width: 1.75rem;
    height: 1.75rem;
}

/* Adicionar após os estilos do hero-content */
.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

/* Atualizar media queries */
@media (max-width: 900px) {
    .value-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .value-cards {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-main {
        gap: 2rem;
    }

    .highlight {
        padding: 0.75rem 1rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
        text-align: center;
    }

    .social-btn span {
        align-items: center;
    }

    .hero-logo {
        width: 100px;
    }
} 