
        body {
            background-color: #0d0d14;
            color: #fff;
                font-family: "Inter", sans-serif;
        }

        /* Navbar estilo Avalon */
        .navbar {
            position: fixed;
            width: 100%;
            top: 0px;
            left: 0;
            right: 0;
            transition: 0.3s;
            z-index: 1000;    
            background: #492c1bcc;
            border-bottom: solid 1px #ad820a;
                backdrop-filter: blur(10px); /* desfoque do fundo */
    -webkit-backdrop-filter: blur(10px); /* compatibilidade Safari */
        }
        /* Navbar escurecida */
        .navbar.scrolled {
            background-color: #492c1bcc; /* cor escura quando rolar */
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        .nav-link {
            color: #fff !important;
            font-weight: 600;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 75vh;
            background: url(../images/body.png) center / cover no-repeat;
            display: flex;
            align-items: stretch;
            justify-content: space-evenly;
            text-align: center;
            flex-direction: column;

        }
.hero-logo {
    max-width: 350px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease; /* suaviza a animação */
}

.hero-logo:hover {
    transform: scale(1.2); /* aumenta 20% */
}
        .hero-buttons .btn {
            margin: 0.5rem;
            font-weight: bold;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, #f1c40f, #d4af37);
            border: none;
            color: #000;
        }
        .btn-outline-custom {
            border: 2px solid #f1c40f;
            color: #f1c40f;
            background: transparent;
        }

        /* Discord & Online */
        .online-box {
            position: absolute;
            left: 2rem;
            background: rgba(0,0,0,0.7);
            border: 1px solid #d4af37;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            min-width: 150px;
        }
        .server-box {
            position: absolute;
            right: 2rem;
            background: rgba(0,0,0,0.7);
            border: 1px solid #d4af37;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            text-align: center;
            font-weight: bold;
        }

        /* Footer estilo simples */
        footer {
            background: #0d0d14;
            border-top: 1px solid #444;
            padding: 2rem 0;
        }
        footer a {
            color: #f1c40f;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        
        .drx-box {
    width: 270px;
    padding: 20px;
    background: linear-gradient(145deg, #1a0f05, #2b1607);
    border: 2px solid #ffb400;
    border-radius: 8px;
    box-shadow: 
        0 0 15px rgba(255, 140, 0, 0.6),
        inset 0 0 20px rgba(255, 120, 0, 0.4);
    color: #ffd778;
    font-weight: bold;
    text-align: center;
}

/* CONTAINER PRINCIPAL */
.simple {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    padding-bottom: 30px;
}

/* CAIXA PADRÃO */
.drx-box,
.drx-box-plus,
.drx-box-Buttons {
    background: linear-gradient(145deg, #14161c, #0e1015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 18px 25px;
    min-height: 85px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ONLINE BOX */
.drx-box {
    min-width: 180px;
    text-align: center;
}

.drx-box h1 {
    margin: 6px 0 0 0;
    font-size: 26px !important;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

/* INFO BOX */
.drx-box-plus {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
}

.Information {
    font-size: 14px;
    font-weight: 600;
    color: #c7cbd4;
    white-space: nowrap;
}

/* DOWNLOAD BOX */
.drx-box-Buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

/* BOTÕES */
.SocialIcon-GD,
.SocialIcon-MF,
.SocialIcon-Mega {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    color: #fff;
}

/* CORES */
.SocialIcon-GD { background: #1f8f4e; }
.SocialIcon-MF { background: #1b6ed1; }
.SocialIcon-Mega { background: #c82323; }

.SocialIcon-GD:hover,
.SocialIcon-MF:hover,
.SocialIcon-Mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}