/* Variáveis de cores baseadas no logo */
:root {
    --primary-color: #2a3b4c; /* Azul escuro militar */
    --secondary-color: #d4af37; /* Dourado/amarelo */
    --accent-color: #7289da; /* Cor do Discord */
    --background-color: rgb(18, 26, 26);
    --card-background: rgba(42, 59, 76, 0.3);
    --text-color: #f5f5f5;
    --text-secondary: #a0a0a0;
    --status-online: #43b581;
    --status-offline: #f04747;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: url('images/background.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--secondary-color);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

header h1 {
    font-family: 'Saira Stencil One', cursive;
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Seções */
section {
    margin-bottom: 60px;
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--secondary-color);
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Status do Servidor */
.status-card {
    background-color: var(--card-background);
    border-radius: 6px;
    overflow: hidden;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row;
    gap: 15px;
}

.status-header h2 {
    margin-bottom: 0;
}

.status-header h2::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

#status-indicator {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    gap: 8px;
    margin-left: auto;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--status-offline);
    display: inline-block;
}

#status-indicator.online .status-dot {
    background-color: var(--status-online);
    box-shadow: 0 0 8px var(--status-online);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#status-indicator.online {
    background-color: rgba(67, 181, 129, 0.2);
    border: 1px solid var(--status-online);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#status-indicator.offline {
    background-color: rgba(240, 71, 71, 0.2);
    border: 1px solid var(--status-offline);
}

#status-indicator.online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

#status-indicator.offline {
    background-color: var(--status-offline);
}

.server-info {
    background-color: rgba(42, 59, 76, 0.3);
    border-radius: 6px;
    padding: 20px;
    text-align: left;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 35px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.join-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Sobre o Servidor */
.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Comunidade */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: rgba(42, 59, 76, 0.3);
    padding: 15px 25px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-link.discord {
    background-color: rgba(114, 137, 218, 0.2);
    border: 1px solid var(--accent-color);
}

.social-link.discord:hover {
    background-color: rgba(114, 137, 218, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

.server-info {
    padding: 15px;
}

.update-info {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    text-align: right;
    font-style: italic;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

/* Como Jogar */
.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.join-card {
    background-color: rgba(42, 59, 76, 0.3);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    margin-bottom: 15px;
}

.platform-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.join-card:hover .platform-svg {
    transform: scale(1.1);
}

.join-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.join-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid var(--secondary-color);
}