/* Style do strony news/landing page */
.mythibia-landing {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    max-width: 1108px;
    margin: 0 auto;
}

.mythibia-landing img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.header-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(25, 25, 35, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.header-logo img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header-text {
    display: flex;
    flex-direction: column;
}

.mythibia-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 5px;
    padding-bottom: 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.launch-date {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
    text-align: left;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    width: 100%;
}

.action-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E9213D;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1;
    text-align: center;
}

.action-button:hover {
    background-color: #c01b32;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.action-button.discord {
    background-color: #5865F2;
}

.action-button.discord:hover {
    background-color: #4752c4;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin: 40px 0 30px;
    color: #fff;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E9213D;
    margin: 10px auto 0;
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background-color: rgba(25, 25, 35, 0.7);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 33, 61, 0.5);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-description {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.6;
}

.divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E9213D, transparent);
    margin: 40px 0;
}

.info-section {
    margin: 20px 0 40px;
    text-align: center;
}

.info-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-content {
    font-size: 16px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.rates-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

.rate-item {
    padding: 10px 20px;
    background-color: rgba(25, 25, 35, 0.7);
    border-radius: 6px;
    font-weight: 600;
}

.rate-item span {
    color: #fff;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #E9213D;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite alternate;
}

.cta-button:hover {
    background-color: #c01b32;
    transform: scale(1.05);
    color: #fff;
}

@keyframes pulse {
    from {
        box-shadow: 0 4px 15px rgba(233, 33, 61, 0.3);
    }
    to {
        box-shadow: 0 4px 25px rgba(233, 33, 61, 0.7);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px;
    }
    
    .header-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .header-text {
        align-items: center;
    }
    
    .mythibia-title {
        font-size: 30px;
        text-align: center;
    }
    
    .launch-date {
        font-size: 20px;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .action-button {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .rates-table {
        flex-direction: column;
        align-items: center;
    }
}
