/* Reset Básico e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #282c34; /* Um cinza escuro mais suave para o fundo geral */
    color: #ecf0f1;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased; /* Melhora renderização da fonte em alguns navegadores */
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== Header e Navbar ===== */
header {
    background-color: #1e2227; /* Um pouco mais escuro que o body para a navbar */
    padding: 10px 0; /* Mantido, podemos reduzir para 8px 0 se necessário mais espaço vertical */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-samy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { /* Contêiner geral para a logo (imagem + texto) que é um link */
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove sublinhado do link principal da logo */
}

.logo-image-wrapper { /* Contêiner que será o círculo para a imagem */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    background-color: #282c34;
}

.logo-img { /* A imagem em si */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.logo-area:hover .logo-img {
    transform: scale(1.1);
}

.logo-text { /* Texto "Samy Bot" */
    font-size: 2.1em;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-area:hover .logo-text {
    color: #E91E63;
}

/* ALTERAÇÕES APLICADAS AQUI PARA A NAVBAR */
.nav-links-samy {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* Garantir que os links não tentem quebrar linha */
}

.nav-links-samy li {
    margin-left: 18px; /* Reduzido (Antes era 20px) */
}

.nav-links-samy li a {
    color: #c8cdd3;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 3px; /* Reduzido padding horizontal (Antes 8px 4px) */
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.92em; /* Reduzido (Antes 0.95em) */
    white-space: nowrap; /* Força o texto do link a ficar em uma única linha */
}

.nav-links-samy li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E91E63;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.nav-links-samy li a:hover,
.nav-links-samy li a.active {
    color: #ffffff; /* Cor do texto para hover geral */
}

/* Melhorar o destaque do link ativo */
.nav-links-samy li a.active {
    color: #E91E63; /* Cor rosa para o texto do link ativo */
    font-weight: 600; /* Um pouco mais de destaque */
}

.nav-links-samy li a:hover::after,
.nav-links-samy li a.active::after {
    width: 100%;
}

.nav-cta { /* Botão "Adicionar ao Discord" na navbar */
    font-size: 0.88em; /* Reduzido (Antes 0.9em) */
    padding: 8px 16px; /* Padding ligeiramente ajustado (Antes 8px 18px) */
    /* margin-left: 15px; /* Descomente se precisar de mais espaço à esquerda do botão */
}
/* FIM DAS ALTERAÇÕES APLICADAS PARA A NAVBAR */


/* ===== Estilo base para botões ===== */
.btn {
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #E91E63;
    color: white;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
}

.btn-primary:hover {
    background-color: #d81356;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 18px rgba(233, 30, 99, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: #E91E63;
    border: 2px solid #E91E63;
}

.btn-secondary:hover {
    background-color: #E91E63;
    color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.25);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* ===== Hero Section (Banner) ===== */
.hero {
    position: relative;
    background-image: url('assets/samy-banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 39, 42, 0.75);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero h1 {
    font-size: 3.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    letter-spacing: 1.5px;
}

.hero h2 {
    font-size: 1.9em;
    font-weight: 400;
    margin-bottom: 25px;
    color: #e0e0e0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #dcdcdc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    margin: 10px 12px;
}

/* ===== Seção de Funcionalidades ===== */
.features {
    padding: 80px 0;
    background-color: #212529;
}

.features h2, .commands-section h2, .support-section h2, .donate-section h2,
.getting-started-section h2, .testimonials-section h2
{
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.features .container > h2::after,
.commands-section .container > h2::after,
.support-section .container > h2::after,
.donate-section .container > h2::after,
.getting-started-section .container > h2::after,
.testimonials-section .container > h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E91E63;
    margin: 15px auto 60px;
    border-radius: 2px;
}

.getting-started-section h2,
.testimonials-section h2,
.commands-section .container > h2
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: #282c34;
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    border-left-color: #E91E63;
}

.feature-icon {
    font-size: 3.2em;
    color: #E91E63;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.feature-card p {
    font-size: 1em;
    color: #bdc3c7;
}

/* ===== Seção de Primeiros Passos (index.html) ===== */
.getting-started-section {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 0px;
}

.step-card {
    background-color: #282c34;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E91E63;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.4);
}

.step-icon {
    font-size: 2.8em;
    color: #E91E63;
    margin-bottom: 20px;
    margin-top: 30px;
}

.step-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-card p {
    font-size: 0.95em;
    color: #bdc3c7;
    line-height: 1.6;
}
.step-card p a {
    color: #E91E63;
    font-weight: bold;
    text-decoration: none;
}
.step-card p a:hover {
    text-decoration: underline;
}


/* ===== Seção de Comandos (Preview na Index e Página de Comandos) ===== */
.commands-section {
    padding: 80px 0;
    background-color: #282c34;
}

.commands-section > .container > p:first-of-type {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 50px;
    color: #bdc3c7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.command-category {
    background-color: #1e2227;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 35px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.command-category h4 {
    font-size: 1.6em;
    color: #E91E63;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.command-category h4 i {
    font-size: 0.9em;
}

.command-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.command-list li code {
    background-color: #2c333a;
    color: #c8cdd3;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    cursor: help;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    position: relative;
}
.command-list li code:hover {
    background-color: #E91E63;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

#commands-preview .text-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== Seção de Testemunhos (index.html) ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: #212529;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 0px;
}

.testimonial-card {
    background-color: #282c34;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-top: 4px solid #E91E63;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #E91E63;
}

.testimonial-card p {
    font-size: 1.05em;
    color: #c8cdd3;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-card h4 {
    font-size: 1.1em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 0.85em;
    color: #888e94;
}

/* ===== Seção de Suporte ===== */
.support-section {
    padding: 80px 0;
    text-align: center;
}
.support-section .container > h2::after {
    content: ''; display: block; width: 80px; height: 4px;
    background-color: #E91E63; margin: 15px auto 60px; border-radius: 2px;
}

.support-section p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #bdc3c7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Seção de Doação ===== */
.donate-section {
    padding: 80px 0;
    text-align: center;
}
.donate-section .container > h2::after {
    content: ''; display: block; width: 80px; height: 4px;
    background-color: #E91E63; margin: 15px auto 60px; border-radius: 2px;
}

.donate-section h2 i {
    color: #E91E63;
}

.donate-section p {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: #bdc3c7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.donation-methods {
    margin-top: 30px;
}
.donation-methods p {
    font-size: 1.1em;
    margin-bottom: 12px;
}
.donation-methods code {
    background-color: #1e2227;
    padding: 6px 10px;
    border-radius: 5px;
    color: #f1c40f;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05em;
}
.donation-methods a {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dashed #3498db;
    transition: color 0.2s, border-bottom-color 0.2s;
}
.donation-methods a:hover {
    color: #5dade2;
    border-bottom-color: #5dade2;
}

/* Fundo alternado para seções */
.section-bg-alt {
    background-color: #212529;
}


/* ===== Footer ===== */
footer {
    background-color: #171a1d;
    color: #95a0ab;
    text-align: center;
    padding: 40px 0;
    font-size: 0.95em;
}
.footer-links {
    margin-bottom: 15px;
    font-size: 0.9em;
}
.footer-links a {
    color: #b0bac4;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #E91E63;
    text-decoration: underline;
}
.footer-copyright {
    margin-bottom: 10px;
}


/* ===== Botão de Menu Mobile ===== */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.9em;
    cursor: pointer;
    padding: 5px 8px;
    z-index: 1001;
}

/* ===== Estilos para Páginas Internas (Comandos, FAQ, Changelog) ===== */
.page-title-section {
    background-color: #1e2227;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid #E91E63;
    margin-bottom: 40px;
}

.page-title-section h1 {
    font-size: 3.2em;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.page-title-section p {
    font-size: 1.25em;
    color: #bdc3c7;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilos específicos para a PÁGINA DE COMANDOS DETALHADA */
.commands-page .commands-intro {
    font-size: 1.1em;
    color: #c8cdd3;
    margin-bottom: 50px;
    padding: 25px;
    background-color: #1e2227;
    border-radius: 8px;
    text-align: left;
    line-height: 1.8;
    border-left: 5px solid #E91E63;
}
.commands-page .commands-intro code,
.faq-answer code,
.changelog-details code
{
    background-color: #2c333a;
    color: #E91E63;
    padding: 3px 7px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
}

.commands-page .command-category {
    margin-bottom: 50px;
    padding: 30px;
}

.commands-page .command-category h4 {
    font-size: 1.9em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #2c333a;
    padding-bottom: 18px;
    margin-bottom: 25px;
}
.commands-page .command-category h4 .command-count {
    font-size: 0.7em;
    font-weight: 500;
    color: #888e94;
    background-color: #282c34;
    padding: 5px 10px;
    border-radius: 15px;
}

.commands-page .category-description {
    font-size: 1.05em;
    color: #bdc3c7;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.7;
}

.detailed-command-list {
    list-style: none;
    padding: 0;
    display: block;
}

.detailed-command-list li {
    background-color: #282c34;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 5px solid #2c333a;
    transition: border-left-color 0.3s ease, transform 0.2s ease;
}
.detailed-command-list li:hover {
    border-left-color: #E91E63;
    transform: translateX(5px);
}

.detailed-command-list li code {
    font-size: 1em;
    align-self: flex-start;
}

.command-description {
    font-size: 1em;
    color: #c8cdd3;
    line-height: 1.7;
    padding-left: 5px;
}
.command-description code {
    font-size: 0.9em;
    padding: 2px 6px;
}

/* ===== Estilos para a Página de FAQ ===== */
.faq-section {
    padding: 40px 0 80px;
    background-color: #282c34;
}

.faq-item {
    background-color: #1e2227;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-left: 5px solid transparent;
    transition: border-left-color 0.3s ease;
}
.faq-item details[open] {
    border-left-color: #E91E63;
}
.faq-item details[open] summary {
    color: #E91E63;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.25em;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    list-style: none;
    transition: color 0.3s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

details[open] > summary.faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0px 25px 25px;
    font-size: 1.05em;
    color: #bdc3c7;
    line-height: 1.8;
    border-top: 1px solid #2c333a;
    margin-top: 10px;
}
.faq-answer a {
    color: #E91E63;
    font-weight: 500;
    text-decoration: none;
}
.faq-answer a:hover {
    text-decoration: underline;
}

/* ===== Estilos para a Página de Changelog ===== */
.changelog-section {
    padding: 40px 0 80px;
    background-color: #282c34;
}

.changelog-entry {
    background-color: #1e2227;
    padding: 30px 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    border-left: 5px solid #3498db;
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid #2c333a;
    padding-bottom: 15px;
}

.changelog-version {
    font-size: 1.8em;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.changelog-version .icon-launched { color: #2ecc71; }

.changelog-date {
    font-size: 0.95em;
    color: #888e94;
    font-style: italic;
}

.changelog-details h4 {
    font-size: 1.25em;
    color: #E91E63;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.changelog-details h4:first-child {
    margin-top: 0;
}

.changelog-details ul {
    list-style: none;
    padding-left: 0;
    margin-left: 25px;
}

.changelog-details ul li {
    font-size: 1em;
    color: #bdc3c7;
    margin-bottom: 8px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.changelog-details ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E91E63;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9em;
}

.changelog-details .icon-added { color: #2ecc71; }
.changelog-details .icon-improved { color: #3498db; }
.changelog-details .icon-fixed { color: #f39c12; }


/* ===== Responsividade ===== */
/* ALTERAÇÕES APLICADAS AQUI NAS MEDIA QUERIES PARA NAVBAR */
@media (max-width: 1100px) {
    .nav-links-samy li {
        margin-left: 15px;
    }
    .nav-links-samy li a {
        font-size: 0.9em;
        padding: 8px 2px; /* Padding dos links da navbar */
    }
    .nav-cta {
        font-size: 0.85em;
        padding: 8px 14px;
    }
    .logo-text {
        font-size: 2em;
    }
    .logo-image-wrapper {
        width: 50px;
        height: 50px;
    }

    /* Outros ajustes para 1100px que já existiam */
    .hero h1 { font-size: 3.2em; }
    .hero h2 { font-size: 1.6em; }
    .features h2, .commands-section .container > h2,
    .support-section .container > h2, .donate-section .container > h2,
    .getting-started-section .container > h2, .testimonials-section .container > h2,
    .page-title-section h1 { font-size: 2.4em; }
    .page-title-section p { font-size: 1.2em; }
    .feature-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
    .commands-page .command-category h4 { font-size: 1.7em; }
}

@media (max-width: 992px) {
    .nav-links-samy li {
        margin-left: 12px; /* Reduzindo ainda mais */
    }
    .nav-links-samy li a {
        font-size: 0.88em; /* Reduzindo mais um pouco */
    }
    /* Se o .logo-text ainda estiver muito grande, pode adicionar aqui: */
    .logo-text { font-size: 1.9em; }
    .logo-image-wrapper { width: 48px; height: 48px; }

    /* Outros ajustes para 992px que já existiam */
    /* (Mantidos os que já estavam na sua última versão de CSS para este breakpoint) */
}


@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    header {
        padding: 8px 0;
    }
    .navbar-samy {
        position: relative;
    }

    .logo-image-wrapper {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    .logo-text {
        font-size: 1.8em;
    }

    .nav-links-samy {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1e2227;
        padding: 20px 0;
        box-shadow: 0 8px 10px rgba(0,0,0,0.3);
        border-top: 1px solid #282c34;
    }
    .nav-links-samy.active {
        display: flex;
    }
    .nav-links-samy li {
        margin: 12px 0; /* Reset da margem lateral para o menu mobile */
        width: 100%;
        text-align: center;
    }
    .nav-links-samy li a {
        padding: 10px 0;
        font-size: 1.1em; /* Fonte maior para links no menu mobile */
        white-space: normal; /* Permite quebra de linha no menu mobile se necessário */
    }
    .nav-links-samy .nav-cta {
        margin-top: 10px;
        padding: 12px 25px;
        width: auto;
        max-width: 220px;
        font-size: 1em;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero {
        min-height: 75vh;
        padding: 60px 0;
        background-attachment: scroll;
    }
    .hero h1 { font-size: 2.5em; }
    .hero h2 { font-size: 1.4em; }
    .hero p { font-size: 1.05em; margin-bottom: 30px; }

    .hero-buttons .btn {
        padding: 12px 22px;
        font-size: 1em;
        width: 80%;
        max-width: 300px;
        margin: 10px auto;
        display: block;
    }
    .hero-buttons .btn:last-child { margin-bottom: 0; }

    .features h2, .commands-section .container > h2,
    .support-section .container > h2, .donate-section .container > h2,
    .getting-started-section .container > h2, .testimonials-section .container > h2,
    .page-title-section h1
     {
        font-size: 2.1em;
        margin-bottom: 40px;
    }
    .features .container > h2::after,
    .commands-section .container > h2::after,
    .support-section .container > h2::after,
    .donate-section .container > h2::after,
    .getting-started-section .container > h2::after,
    .testimonials-section .container > h2::after {
        width: 60px;
        height: 3px;
        margin: 15px auto 40px;
    }
     .page-title-section p { font-size: 1.15em; }


    .command-category { padding: 20px; }
    .commands-page .command-category h4 { font-size: 1.6em; }
    .detailed-command-list li { flex-direction: column; }
    .detailed-command-list li code { min-width: auto; margin-right: 0; margin-bottom: 8px; }
    .command-list li code { padding: 7px 12px; font-size: 0.9em; }


    .feature-card { padding: 25px 20px; }
    .feature-card h3 { font-size: 1.4em; }
    .feature-icon { font-size: 2.8em; }

    .faq-question { font-size: 1.15em; padding: 18px 20px; }
    .faq-question::after { right: 20px; }
    .faq-answer { font-size: 1em; padding: 0 20px 20px; }

    .changelog-entry { padding: 25px 20px; }
    .changelog-version { font-size: 1.6em; }
    .changelog-details h4 { font-size: 1.15em; }
    .changelog-details ul li { font-size: 0.95em; }


    footer { padding: 30px 0; }
    footer p { font-size: 0.9em; }
    .footer-links { flex-direction: column; gap: 5px; }
    .footer-links a { margin: 0 5px;}
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.1em; }
    .hero h2 { font-size: 1.2em; }
    .hero p { font-size: 1em; }

    .features h2, .commands-section .container > h2,
    .support-section .container > h2, .donate-section .container > h2,
    .getting-started-section .container > h2, .testimonials-section .container > h2,
    .page-title-section h1
    {
        font-size: 1.9em;
    }
    .page-title-section p { font-size: 1.05em; }


    .logo-image-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    .logo-text {
        font-size: 1.65em;
    }
    header { padding: 8px 0; }

    .commands-page .command-category h4 { font-size: 1.4em; }
    .command-list li code { font-size: 0.85em; padding: 6px 10px; }
    .detailed-command-list li code { font-size: 0.9em; }
    .command-description { font-size: 0.9em; }

    .faq-question { font-size: 1.1em; }
    .faq-answer { font-size: 0.95em; }

    .changelog-version { font-size: 1.4em; }
    .changelog-details h4 { font-size: 1.1em; }
    .changelog-details ul li { font-size: 0.9em; }
}