/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B0000;  /* Vermelho escuro soulslike */
    --secondary-color: #2C2C2C; /* Preto acinzentado */
    --accent-color: #C41E3A;   /* Vermelho sangue */
    --text-color: #F0F0F0;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 20%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER E NAVEGAÇÃO */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
    background-color: rgba(139, 0, 0, 0.1);
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

/* BOTÃO DISCORD FIXO */
.discord-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #5865F2;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.discord-fab:hover {
    background-color: #4752C4;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
}

.discord-fab i {
    font-size: 1.8rem;
}

/* BOTÕES GERAIS */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.95));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #F0F0F0, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #CCCCCC;
}

/* SEÇÕES GERAIS */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* SERVER INFO SECTION */
.server-info {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ip-container {
    background-color: rgba(139, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ip-display {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
    padding: 0.8rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    text-align: center;
    letter-spacing: 2px;
}

/* MODIFICAÇÕES */
.modifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mod-card {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.mod-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.mod-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.mod-card p {
    color: #CCCCCC;
    font-size: 0.95rem;
}

/* PÁGINA SOBRE */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style-type: none;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 1.8rem;
}

.feature-list li:before {
    content: '⚔️';
    position: absolute;
    left: 0;
}

/* PÁGINA COMO JOGAR */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* PÁGINA GALERIA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 250px;
    background-color: #1a1a1a;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* FOOTER */
.footer {
    background-color: #0A0A0A;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modifications-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .discord-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}