* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- NAVEGAÇÃO (Logo em Texto Gradiente) --- */
.logo-space {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none; /* Tira o sublinhado do link */
}

/* O Gradiente animado, mas em tamanho menor para a Navbar */
.warzy-gradient-nav {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #ff1a1a, #800000, #ff4d4d, #ff1a1a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s linear infinite;
    
    /* Um brilho bem suave para destacar no fundo escuro */
    filter: drop-shadow(0px 0px 8px rgba(230, 57, 70, 0.4));
    transition: filter 0.3s;
}

.warzy-gradient-nav:hover {
    filter: drop-shadow(0px 0px 15px rgba(230, 57, 70, 0.8)); /* Brilha mais ao passar o mouse */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f0f11;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --vermelho-principal: #e63946;
    --vermelho-escuro: #a81c26;
    --fundo-card: #1c1c1f;
    --borda-card: #2c2c30;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(15, 15, 17, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--vermelho-escuro);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.logo-space {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--vermelho-principal);
    padding: 5px 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--vermelho-principal);
    background-color: rgba(255,255,255,0.05);
}

.nav-links a.nav-btn-store {
    background-color: var(--vermelho-escuro);
}
.nav-links a.nav-btn-store:hover {
    background-color: var(--vermelho-principal);
    color: #fff;
}

.nav-links a.nav-btn-discord {
    background-color: #5865F2;
}
.nav-links a.nav-btn-discord:hover {
    background-color: #7289da;
    color: #fff;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, #240a0c 0%, #0f0f11 70%);
}

.warzy-supreme {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff1a1a, #800000, #ff4d4d, #ff1a1a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s linear infinite;
    filter: drop-shadow(0px 0px 30px rgba(230, 57, 70, 0.5));
}

@keyframes gradient-shine {
    to { background-position: 200% center; }
}

.hero p.description {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 3rem;
    color: #ccc;
}

.hero-quick-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-quick {
    padding: 12px 25px;
    background: var(--fundo-card);
    border: 1px solid var(--borda-card);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-quick i {
    color: var(--vermelho-principal);
}

.btn-quick:hover {
    transform: translateY(-5px);
    border-color: var(--vermelho-principal);
    background: #25252a;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.2);
}

.systems-container {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #fff;
    border-bottom: 3px solid var(--vermelho-principal);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.system-showcase {
    background-color: var(--fundo-card);
    border: 1px solid var(--borda-card);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 4px solid var(--vermelho-principal);
    scroll-margin-top: 100px; 
}

.system-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.system-intro h3 {
    font-size: 2.5rem;
    color: var(--vermelho-principal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.system-intro p {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-stacked {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item-large {
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-item-large:hover {
    transform: translateY(-8px);
    border-color: #666;
}

.feature-item-large img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 2px solid #222;
}

.feature-item-large h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--vermelho-escuro);
    padding-bottom: 8px;
}

.feature-item-large p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
    }
    .nav-links a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    .warzy-supreme {
        font-size: 4rem;
    }
    .system-showcase {
        padding: 1.5rem;
    }
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.eco-card {
    background-color: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.eco-card:hover {
    transform: translateY(-5px);
    border-color: #555;
    background-color: rgba(0,0,0,0.6);
}

.eco-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s linear infinite;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.1));
}

.eco-money { background-image: linear-gradient(90deg, #1b5e20, #4caf50, #1b5e20); }
.eco-cash { background-image: linear-gradient(90deg, #f57f17, #ffd54f, #f57f17); }
.eco-polen { background-image: linear-gradient(90deg, #fbc02d, #fff59d, #fbc02d); }
.eco-gemas { background-image: linear-gradient(90deg, #6a1b9a, #ce93d8, #6a1b9a); }
.eco-mythril { background-image: linear-gradient(90deg, #006064, #4dd0e1, #006064); }
.eco-mana { background-image: linear-gradient(90deg, #c2185b, #f48fb1, #c2185b); }

.eco-desc {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

.eco-cmds {
    background-color: #151518;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--vermelho-principal);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.eco-cmds span {
    font-size: 0.9rem;
    color: #aaa;
}

.eco-cmds strong {
    color: #fff;
}
.ench-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ench-card {
    background-color: rgba(0,0,0,0.3);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.ench-card:hover {
    transform: translateY(-4px);
    background-color: rgba(0,0,0,0.7);
    border-color: #666;
}

.ench-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s linear infinite;
}

.ench-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

.color-a { background-image: linear-gradient(90deg, #55FF55, #aaffaa, #55FF55); filter: drop-shadow(0 0 5px rgba(85,255,85,0.4)); } /* &a - Verde Claro */
.color-b { background-image: linear-gradient(90deg, #55FFFF, #aaffff, #55FFFF); filter: drop-shadow(0 0 5px rgba(85,255,255,0.4)); } /* &b - Aqua */
.color-c { background-image: linear-gradient(90deg, #FF5555, #ffaaaa, #FF5555); filter: drop-shadow(0 0 5px rgba(255,85,85,0.4)); } /* &c - Vermelho Claro */
.color-d { background-image: linear-gradient(90deg, #FF55FF, #ffaaff, #FF55FF); filter: drop-shadow(0 0 5px rgba(255,85,255,0.4)); } /* &d - Rosa/Roxo Claro */
.color-e { background-image: linear-gradient(90deg, #FFFF55, #ffffaa, #FFFF55); filter: drop-shadow(0 0 5px rgba(255,255,85,0.4)); } /* &e - Amarelo */
.color-2 { background-image: linear-gradient(90deg, #00AA00, #55ff55, #00AA00); filter: drop-shadow(0 0 5px rgba(0,170,0,0.4)); } /* &2 - Verde Escuro */
.color-3 { background-image: linear-gradient(90deg, #00AAAA, #55ffff, #00AAAA); filter: drop-shadow(0 0 5px rgba(0,170,170,0.4)); } /* &3 - Ciano Escuro */
.color-4 { background-image: linear-gradient(90deg, #AA0000, #ff5555, #AA0000); filter: drop-shadow(0 0 5px rgba(170,0,0,0.4)); } /* &4 - Vermelho Escuro */
.color-5 { background-image: linear-gradient(90deg, #AA00AA, #ff55ff, #AA00AA); filter: drop-shadow(0 0 5px rgba(170,0,170,0.4)); } /* &5 - Roxo Escuro */
.color-6 { background-image: linear-gradient(90deg, #FFAA00, #ffff55, #FFAA00); filter: drop-shadow(0 0 5px rgba(255,170,0,0.4)); } /* &6 - Laranja/Dourado */
.color-9 { background-image: linear-gradient(90deg, #5555FF, #aaaaff, #5555FF); filter: drop-shadow(0 0 5px rgba(85,85,255,0.4)); } /* &9 - Azul Claro */

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.vip-card {
    background-color: rgba(0,0,0,0.4);
    border: 1px solid #333;
    border-top-width: 5px;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.vip-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s linear infinite;
}

.vip-tag {
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.vip-perks h5 {
    font-size: 0.95rem;
    color: var(--vermelho-principal);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.vip-perks ul {
    list-style: none;
}

.vip-perks li {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-perks li i {
    color: #777;
    width: 16px;
    text-align: center;
}

.vip-perks li strong {
    color: #fff;
}

.site-footer {
    background-color: #121214;
    border-top: 2px solid var(--vermelho-escuro);
    padding: 2rem 5% 4rem 5%;
    margin-top: 6rem;
    position: relative;
}

.back-to-top {
    text-align: center;
    margin-top: -3.5rem;
    margin-bottom: 3rem;
}

.btn-top {
    background-color: var(--vermelho-principal);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: background-color 0.3s, transform 0.3s;
}

.btn-top:hover {
    background-color: var(--vermelho-escuro);
    transform: translateY(-5px);
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap; 
}

.footer-logo img {
    height: 70px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 5px rgba(255, 235, 59, 0.2));
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-text {
    text-align: left;
    border-left: 2px solid #333;
    padding-left: 3rem;
}

.footer-text p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.dev-credit {
    font-size: 0.95rem !important;
    color: #888 !important;
}

.dev-credit a {
    color: #aaa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.dev-credit a:hover {
    color: var(--vermelho-principal);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-text {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
    }
}