/* ==========================================================================
   RED SKULL Guild — Estilos Consolidados
   Arquivos originais: reset.css + style.css + animations.css + ux-improvements.css + responsive.css
   ========================================================================== */

/* ========== RESET ========== */
/* Reset CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

p {
    margin: 0 0 1.5rem;
}

a {
    color: #c41212;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff3030;
}

ul,
ol {
    list-style: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* Preload class to prevent animations from running before page load */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* ========== ESTILOS PRINCIPAIS ========== */
/* Main Styles for RED SKULL Guild Website */

/* ===== Variables ===== */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #333333;
    --color-light-gray: #666666;
    --color-text: #e0e0e0;
    --color-red-primary: #c41212;
    --color-red-secondary: #8c0000;
    --color-red-bright: #ff3030;
    --color-gold: #d4af37;

    /* Shadows */
    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.7);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.9);

    /* Gradients */
    --gradient-dark: linear-gradient(to bottom, var(--color-black), var(--color-dark-gray));
    --gradient-red: linear-gradient(135deg, var(--color-red-secondary), var(--color-red-primary));
    --gradient-metal: linear-gradient(to bottom, #333333, #1a1a1a);

    /* Borders */
    --border-thin: 1px solid var(--color-red-primary);
    --border-medium: 2px solid var(--color-red-primary);
    --border-thick: 3px solid var(--color-red-primary);

    /* Fonts */
    --font-primary: 'Ubuntu Condensed', sans-serif;
    --font-title: 'Anton', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Global Styles ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 4.2rem;
    text-transform: uppercase;
    color: var(--color-red-primary);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(196, 18, 18, 0.4), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
    margin: 1rem auto 0;
}

section {
    padding: 8rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--color-dark-gray);
}

section:nth-child(even) {
    background-color: var(--color-black);
}

.view-more-button,
.cta-button,
.discord-button,
.donate-button,
.event-join {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-red);
    color: var(--color-text);
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--color-red-secondary);
    border-radius: 3px;
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-button::before,
.cta-button::before,
.discord-button::before,
.donate-button::before,
.event-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.view-more-button:hover::before,
.cta-button:hover::before,
.discord-button:hover::before,
.donate-button:hover::before,
.event-join:hover::before {
    left: 100%;
}

.view-more-button:hover,
.cta-button:hover,
.discord-button:hover,
.donate-button:hover,
.event-join:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.7);
    color: white;
}

.view-more-container {
    text-align: center;
    margin-top: 4rem;
}

.view-more-container a.view-more-button {
    color: var(--color-text);
    background: var(--gradient-red);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.skull-loader {
    text-align: center;
}

.skull-loader img {
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    animation: pulse 1.5s infinite alternate;
}

.loading-text {
    font-size: 1.8rem;
    color: var(--color-red-primary);
    letter-spacing: 2px;
    animation: fadeInOut 1.5s infinite alternate;
}

/* ===== Audio Control ===== */
#audio-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
}

#toggle-audio {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-red-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

#toggle-audio:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(196, 18, 18, 0.7);
}

.audio-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.audio-on {
    background-image: url('../images/audio-on.png');
}

.audio-off {
    background-image: url('../images/audio-off.png');
}

/* ===== Header ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid var(--color-red-secondary);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem;
}

.logo-container {
    flex: 0 0 auto;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all var(--transition-medium);
}

.logo:hover img {
    filter: drop-shadow(0 0 5px var(--color-red-primary));
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
    position: relative;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition-medium);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red-primary);
    transition: width var(--transition-medium);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-red-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.wiki-btn a {
    background: var(--gradient-red);
    padding: 0.8rem 1.5rem;
    border-radius: 3px;
    color: white;
}

.wiki-btn a:hover {
    box-shadow: 0 0 10px rgba(196, 18, 18, 0.7);
}

.wiki-btn a::after {
    display: none;
}

.menu-toggle {
    display: none;
}

/* ===== Menu Overlay (mobile) ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* ===== Hero Section ===== */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 0.7));
    z-index: -2;
}

.hero-content {
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.logo-animated {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-animated img {
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.main-title {
    font-family: var(--font-title);
    font-size: 7.2rem;
    text-transform: uppercase;
    color: var(--color-red-primary);
    letter-spacing: 5px;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(196, 18, 18, 0.5);
    position: relative;
    z-index: 2;
}

.slogan {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 2rem 0 3rem;
    text-shadow: var(--shadow-small);
    position: relative;
    z-index: 2;
    text-align: center;
    font-style: italic;
    width: 100%;
}

.cta-container {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.cta-button {
    font-size: 2rem;
    padding: 1.5rem 4rem;
    background: var(--gradient-red);
    color: var(--color-text);
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--color-red-secondary);
    border-radius: 3px;
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--color-red-primary);
    border-bottom: 3px solid var(--color-red-primary);
    transform: rotate(45deg);
}

/* ===== Initiation Section ===== */
#initiation {
    background-color: var(--color-dark-gray);
    padding: 6rem 0;
}

.mission-progress {
    margin-bottom: 4rem;
}

.progress-bar {
    height: 10px;
    background-color: var(--color-medium-gray);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    width: 25%;
    /* 1 of 4 steps */
    background: var(--gradient-red);
    border-radius: 5px;
    position: relative;
    transition: width 1s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progressShine 2s infinite;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-medium-gray);
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-light-gray);
    transition: all var(--transition-medium);
}

.step.active .step-icon {
    background-color: var(--color-red-primary);
    border-color: var(--color-red-bright);
    box-shadow: 0 0 10px rgba(196, 18, 18, 0.7);
}

.step-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-light-gray);
    transition: all var(--transition-medium);
}

.step.active .step-name {
    color: var(--color-red-primary);
}

.mission-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.mission-steps {
    text-align: left;
    counter-reset: mission-counter;
    margin: 2rem auto;
    max-width: 400px;
}

.mission-steps li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    counter-increment: mission-counter;
    color: var(--color-light-gray);
    transition: all var(--transition-medium);
}

.mission-steps li::before {
    content: counter(mission-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: var(--color-medium-gray);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all var(--transition-medium);
}

.mission-steps li.active {
    color: var(--color-text);
}

.mission-steps li.active::before {
    background-color: var(--color-red-primary);
}

/* ===== Highlights Section ===== */
#highlights {
    background-color: var(--color-black);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.highlight-card {
    background-color: var(--color-dark-gray);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.3);
}

.highlight-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-medium);
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));

}

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red-primary);
    margin-bottom: 1rem;
}

.highlight-content p {
    color: var(--color-text);
    margin-bottom: 0;
}

/* ===== Leaders Section ===== */
#leaders {
    background-color: var(--color-dark-gray);
}

.supreme-leader {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.supreme-leader .leader-card {
    max-width: 300px;
    /* Ajuste conforme necessário */
}

.generals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    justify-items: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsividade para a grid dos generais */
@media (max-width: 576px) {
    .generals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

.leader-card {
    text-align: center;
    transition: all var(--transition-medium);
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.3);
    border: 3px solid var(--color-red-secondary);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-medium);
}

.leader-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all var(--transition-medium);
}

.leader-card:hover .leader-hover {
    opacity: 1;
}

.leader-card:hover .leader-avatar img {
    transform: scale(1.1);
}

.leader-stats {
    width: 80%;
    text-align: left;
    /* Alinha o texto das estatísticas à esquerda */
}

.stat {
    margin-bottom: 1rem;
    /* Espaçamento menor entre as estatísticas */
}

.stat-name {
    display: block;
    font-size: 1.3rem;
    /* Fonte um pouco menor para as estatísticas */
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.stat-bar {
    height: 6px;
    /* Barra de estatística mais fina */
    background-color: var(--color-medium-gray);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 3px;
    transition: width 1s ease;
}

.leader-info h3 {
    font-size: 2rem;
    /* Título um pouco menor */
    font-weight: 700;
    color: var(--color-red-primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.5rem;
    /* Título menor */
    color: var(--color-text);
    margin-bottom: 1rem;
    /* Espaço entre título e perfil */
}

.leader-profile {
    font-size: 1.4rem;
    /* Fonte menor para o perfil */
    color: var(--color-light-gray);
    margin-bottom: 0;
    font-style: italic;
    /* Estilo itálico para o perfil */
}

/* ===== Fury Meter Section ===== */
#fury-meter {
    background-color: var(--color-black);
    padding: 6rem 0;
}

.fury-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.fury-bar {
    height: 30px;
    background-color: var(--color-medium-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-red-secondary);
    position: relative;
}

.fury-fill {
    height: 100%;
    width: 42%;
    background: linear-gradient(90deg, var(--color-red-secondary), var(--color-red-primary), var(--color-red-bright));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: width 1s ease;
}

.fury-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px);
}

.fury-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: furyShine 2s infinite;
}

@keyframes furyShine {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes furyGrow {
    from { width: 0%; }
    to   { width: 42%; }
}

.fury-fill {
    animation: furyGrow 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fury-level {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    z-index: 2;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.fury-value {
    color: white;
}

.fury-description {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-text);
    margin: 0 auto;
    max-width: 800px;
    /* Ajuste conforme necessário para o melhor visual */
}

/* ===== Testimonials Section ===== */
#testimonials {
    background-color: var(--color-dark-gray);
    padding: 8rem 0;
    opacity: 0.7;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.testimonial-card {
    background-color: var(--color-black);
    border-radius: 5px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-red-secondary);
    position: relative;
    transition: all var(--transition-medium);
    text-align: center;
    width: 100%;
    display: none;
    animation: fadeIn 0.5s;
    position: relative;
    box-sizing: border-box;
}

.testimonial-card .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    gap: 18px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -60px;
    z-index: 2;
    pointer-events: auto;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 8rem;
    color: var(--color-red-primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
    margin: 0 auto;
    max-width: 6000px;
    /* Ajuste conforme necessário */
    line-height: 1.6;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: linear-gradient(135deg, #1e1e1e, #141414);
    border: 1px solid rgba(196, 18, 18, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition-medium);
}

.faq-item:has(.faq-answer.open),
.faq-item:hover {
    border-color: rgba(196, 18, 18, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-medium);
}

.faq-question:hover {
    background: rgba(196, 18, 18, 0.05);
}

.faq-question h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
    transition: color var(--transition-medium);
}

.faq-question:hover h3,
.faq-item:has(.faq-answer.open) .faq-question h3 {
    color: var(--color-red-primary);
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(196, 18, 18, 0.4);
    position: relative;
    transition: all var(--transition-medium);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-red-primary);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
}

.faq-item:has(.faq-answer.open) .faq-toggle {
    background: rgba(196, 18, 18, 0.15);
    border-color: var(--color-red-primary);
}

.faq-item:has(.faq-answer.open) .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2.5rem;
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 2.5rem 2rem;
}

.faq-answer p {
    font-size: 1.55rem;
    color: var(--color-light-gray);
    line-height: 1.8;
    border-left: 3px solid rgba(196, 18, 18, 0.4);
    padding-left: 1.5rem;
    margin: 0;
    max-width: none;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 2px solid var(--color-red-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-red-primary);
    margin-bottom: 0.3rem;

    text-align: left;

}

.author-info p {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-light-gray);
    margin-bottom: 0;

}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.prev-slide,
.next-slide {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-medium-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: var(--color-red-primary);
}

.prev-slide::before,
.next-slide::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    display: block;
}

.prev-slide::before {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.next-slide::before {
    transform: rotate(45deg);
    margin-right: 5px;
}

.slider-dots {
    display: flex;
    margin: 0 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-medium-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.dot.active {
    background-color: var(--color-red-primary);
    transform: scale(1.2);
}

/* ===== Upcoming Events Section ===== */
#upcoming-events {
    background-color: var(--color-black);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    display: flex;
    background-color: var(--color-dark-gray);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    border-left: 5px solid var(--color-red-primary);
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--color-red-primary);
    color: white;
    min-width: 100px;
    text-align: center;
}

.day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.month {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
    padding: 2rem;
}

.event-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red-primary);
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 1.4rem;
    color: var(--color-light-gray);
    margin-bottom: 1rem;
}

.event-description {
    color: var(--color-text);
    margin-bottom: 0;
}

.event-action {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.event-join {
    white-space: nowrap;
}

/* ===== Redes Sociais Section ===== */
.social-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

/* ===== Discord Section ===== */
#discord {
    background-color: var(--color-dark-gray);
    position: relative;
    overflow: hidden;
}

#discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/discord-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.discord-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.discord-info {
    flex: 0 0 50%;
    padding-right: 4rem;
}

.discord-info p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.discord-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.discord-stats .stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-red-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--color-light-gray);
}

.discord-button {
    font-size: 1.8rem;
}

.discord-widget {
    flex: 0 0 40%;
}

.discord-widget iframe {
    border-radius: 5px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-red-secondary);
}

/* ===== Footer ===== */
#main-footer {
    background-color: var(--color-black);
    border-top: 1px solid var(--color-red-secondary);
}

.footer-top {
    padding: 6rem 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-slogan {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-light-gray);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-medium-gray);
    transition: all var(--transition-medium);
}

.social-link:hover {
    background-color: var(--color-red-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(196, 18, 18, 0.5);
}

.social-icon {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

.youtube {
    background-image: url('/images/icones-rede-social/youtube-icon.png');

}

.twitch {
    background-image: url('/images/icones-rede-social/twitch-icon.png');

}

.discord {
    background-image: url('/images/icones-rede-social/discord-icon.png');

}

.facebook {
    background-image: url('/images/icones-rede-social/facebook-icon.png');

}

.whatsapp {
    background-image: url('/images/icones-rede-social/whatsapp-icon.png');

}

.instagram {
    background-image: url('/images/icones-rede-social/instagram-icon.png');

}

.tiktok {
    background-image: url('/images/icones-rede-social/tiktok-icon.png');

}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-red-primary);
    margin-bottom: 2rem;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--color-red-primary);
    margin-top: 1rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-light-gray);
    transition: all var(--transition-medium);
}

.footer-links a:hover {
    color: var(--color-red-primary);
    padding-left: 5px;
}

.contact-email {
    display: inline-block;
    color: var(--color-red-primary);
    margin-bottom: 2rem;
}

.donate-container {
    margin-top: 2rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--color-medium-gray);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright,
.disclaimer {
    font-size: 1.4rem;
    color: var(--color-light-gray);
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

/* ===== trofeus ===== */
.trophies {
    margin-top: 4rem;
}

.trophies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.trophy-card {
    background-color: var(--color-dark-gray);
    border: 1px solid var(--color-red-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.trophy-card:hover {
    transform: translateY(-5px);
}

.trophy-info {
    padding: 1.5rem;
}

.trophy-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.trophy-info p {
    font-size: 1.4rem;
    color: var(--color-light-gray);
}

/* ===== conquista ===== */
.achievements-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 1rem;
    color: var(--color-light-gray);
}

.gallery-date {
    font-size: 1.2rem;
    color: var(--color-gray);
}

/* ===== Hierarchy Section ===== */
#hierarchy {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.hierarchy-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e5e5e5;
}

.hierarchy-structure {
    max-width: 1200px;
    margin: 0 auto;
}

.hierarchy-level {
    margin-bottom: 4rem;
}

.level-title {
    font-size: 2.5rem;
    color: var(--color-red-primary);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Animação de entrada para os cards */
.hierarchy-level .member-card,
.knight-item {
    opacity: 0;
    transform: translateY(30px);
}

.hierarchy-level .member-card.show,
.knight-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fallback: mostrar cards após 3 segundos caso JavaScript falhe */
.hierarchy-level .member-card,
.knight-item {
    animation: fallbackShow 0.1s ease-out 3s forwards;
}

@keyframes fallbackShow {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hierarchy-level .member-card.animated,
.knight-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 24px 0 rgba(239, 68, 68, 0.18), 0 4px 16px 0 rgba(0, 0, 0, 0.18);
}

/* Efeito especial para o Líder Supremo */
.hierarchy-level.supreme .member-card {
    border: 2px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
    position: relative;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.hierarchy-level.supreme .member-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    z-index: -1;
}

/* Efeito de hover padronizado para todos os cards */
.hierarchy-level.supreme .member-card:hover,
.generals-grid .member-card:hover,
.knights-grid .knight-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--color-red-bright);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(239, 68, 68, 0.6);
    z-index: 10;
}

/* Brilho animado nos avatares */
.member-avatar img,
.knight-avatar img {
    box-shadow: 0 0 16px 0 var(--color-red-primary), 0 0 8px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    filter: brightness(1) saturate(1);
}

.member-avatar img:hover,
.knight-avatar img:hover {
    box-shadow: 0 0 32px 0 #fff200, 0 0 24px 0 var(--color-red-primary);
    filter: brightness(1.15) saturate(1.2);
    transform: scale(1.05);
}

/* Estilos para os cards dos membros */
.member-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-red-primary);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(239, 68, 68, 0.4);
}

.member-avatar {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.member-card:hover .member-avatar img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

.member-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-hover {
    opacity: 1;
}

.member-info {
    padding: 1.5rem;
}

.member-info h4 {
    font-size: 2.4rem;
    color: var(--color-red-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
}

.member-title {
    font-size: 1.8rem;
    color: #ff4d4d;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.member-desc {
    font-size: 1.3rem;
    color: #f3f3f3;
    line-height: 1.5;
}

/* Estilos para os membros elite */
.knights-description {
    margin-bottom: 3rem;
}

.knights-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.knight-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Hover removido para evitar conflitos - efeito controlado pela regra específica acima */

.knight-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-red-primary);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.knight-avatar:hover {
    border-color: var(--color-red-bright);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.7);
}

.knight-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knight-name {
    font-size: 1.3rem;
    color: var(--color-red-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
}

.knight-squad {
    font-size: 0.9rem;
    color: #e5e5e5;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Estilos para as estatísticas */
.member-stats {
    width: 80%;
    text-align: left;
}

.stat {
    margin-bottom: 1rem;
}

.stat-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.stat-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-red-secondary), var(--color-red-primary), var(--color-red-bright));
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: statShine 2s infinite;
}

@keyframes statShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Foco visível para acessibilidade */
.member-card:focus-within,
.knight-item:focus-within {
    outline: 3px solid var(--color-red-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 0, 60, 0.3);
}

/* ===== HUNTED PAGE STYLES ===== */

/* Warning Section */
#warning {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a0000, #330000);
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #2a0000, #400000);
    border: 2px solid #ff003c;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(255, 0, 60, 0.3);
    animation: pulse-warning 3s ease-in-out infinite;
}

.warning-icon {
    font-size: 10rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #ff003c;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.warning-content p {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse-warning {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 0, 60, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(255, 0, 60, 0.6);
    }
}

/* Responsividade para a seção de aviso */
@media (max-width: 768px) {
    .warning-box {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .warning-icon {
        font-size: 8rem;
        flex-shrink: 0;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .warning-content h3 {
        font-size: 3rem;
    }

    .warning-content p {
        font-size: 1.5rem;
    }
}

/* ===== Estilos da Página Hunted ===== */
.hunted-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 4rem 0;
    min-height: 70vh;
}

.hunted-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hunted-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #c41212;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hunted-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 18, 0.4);
    border-color: #ff3030;
}

.hunted-name {
    color: #ff3030;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 48, 48, 0.5);
}

.hunted-guild {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.hunted-reason {
    color: #e0e0e0;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
}

.warning-note {
    background: linear-gradient(135deg, #4a1010, #2a0808);
    border: 2px solid #ff3030;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.warning-note p {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    white-space: normal;
    max-width: 100%;
}

.warning-note strong {
    color: #ff3030;
}

/* Responsividade para a página Hunted */
@media (max-width: 768px) {
    .hunted-item {
        padding: 1rem;
    }

    .hunted-name {
        font-size: 2rem;
    }

    .hunted-guild {
        font-size: 1.5rem;
    }

    .hunted-reason {
        font-size: 1.5rem;
    }

    .warning-note {
        padding: 1rem;
        min-height: 60px;
    }

    .warning-note p {
        font-size: 2rem;
        white-space: normal;
    }
}

/* ===== Estilos da Página de Recrutamento ===== */
/* Seção de Requisitos */
#requirements {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 4rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #c41212;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: #ff3030;
    box-shadow: 0 8px 25px rgba(196, 18, 18, 0.4);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.requirement-card h3 {
    color: #ff3030;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.requirement-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Seção de Benefícios */
#benefits {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #666;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: #c41212;
    box-shadow: 0 6px 20px rgba(196, 18, 18, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.benefit-item p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== Melhorias do CTA de Recrutamento ===== */
.cta-subtitle {
    font-size: 1.1rem;
    color: #d4af37;
    margin: 1rem 0 2rem 0;
    font-weight: 600;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752c4, #3c45a3);
}

.discord-icon {
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 2rem;
}

.cta-note small {
    color: #999;
    font-style: italic;
}

/* ===== Melhorias do Carrossel de Depoimentos ===== */
#testimonials-full {
    background-color: var(--color-dark-gray);
    padding: 8rem 0;
}

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: auto;
    min-height: 300px;
    background: rgba(0, 0, 0, 0.2);
}

/* Barra de Progresso */
.carousel-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.carousel-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--color-red-secondary), var(--color-red-primary), var(--color-red-bright));
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(196, 18, 18, 0.5);
}

/* Fallback: se JavaScript falhar, mostrar o primeiro card como bloco normal */
.testimonials-carousel:not(.initialized) .testimonial-card:first-child {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
}

.testimonials-carousel:not(.initialized) .testimonial-card:not(:first-child) {
    display: none !important;
}

/* Estilos específicos para o carrossel - maior especificidade */
.testimonials-carousel .testimonial-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid rgba(196, 18, 18, 0.2);
    border-radius: 12px;
    padding: 3rem;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    z-index: 1;
    display: block;
    visibility: visible;
}

/* Fallback: primeiro card visível apenas antes da inicialização do JS */
.testimonials-carousel:not(.initialized) .testimonial-card:first-child {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    position: relative;
}

/* Card ativo */
.testimonials-carousel .testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    position: relative;
}

/* Estados de transição */
.testimonials-carousel .testimonial-card.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.testimonials-carousel .testimonial-card.next {
    opacity: 0;
    transform: translateX(100%);
}

/* Estilos para conteúdo dos depoimentos */
.testimonials-carousel .testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonials-carousel .testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(196, 18, 18, 0.3);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonials-carousel .testimonial-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonials-carousel .testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonials-carousel .testimonial-content strong {
    color: var(--color-red-primary);
    font-weight: 700;
}

/* Estilos para autor do depoimento */
.testimonials-carousel .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 18, 18, 0.2);
}

.testimonials-carousel .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-red-primary);
    box-shadow: 0 0 15px rgba(196, 18, 18, 0.3);
}

.testimonials-carousel .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonials-carousel .author-avatar:hover img {
    transform: scale(1.1);
}

.testimonials-carousel .author-info h3 {
    color: var(--color-red-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonials-carousel .author-info p {
    color: #999;
    font-size: 1.2rem;
    margin: 0;
    font-style: normal;
}

/* Hover effect para cards */
.testimonials-carousel .testimonial-card:hover {
    border-color: rgba(196, 18, 18, 0.4);
    box-shadow: 0 12px 40px rgba(196, 18, 18, 0.2);
}

/* Animação de entrada para o carrossel */
.carousel-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 0 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red-secondary), var(--color-red-primary));
    border: 2px solid rgba(196, 18, 18, 0.3);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 18, 18, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--color-red-primary), var(--color-red-bright));
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 18, 18, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Indicadores Visuais */
.carousel-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--color-red-primary);
    transform: scale(1.2);
}

/* Indicador de carregamento */
.carousel-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(196, 18, 18, 0.1);
    border-top: 4px solid var(--color-red-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estados de acessibilidade */
.testimonials-carousel[aria-live="polite"] .testimonial-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Focus styles para navegação por teclado */
.carousel-btn:focus,
.indicator:focus,
.carousel-toggle:focus {
    outline: 2px solid var(--color-red-primary);
    outline-offset: 2px;
}

.carousel-btn:focus {
    box-shadow: 0 6px 20px rgba(196, 18, 18, 0.5), 0 0 0 3px rgba(196, 18, 18, 0.3);
}


/* ===== About Page — História Sombria ===== */
.history-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.history-content {
    line-height: 2;
    font-size: 1.5rem;
    color: #e5e5e5;
    width: 100%;
    padding: 0 2rem;
}

.history-content p {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 5rem;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-red-primary), #991b1b);
}

.timeline-dot {
    position: absolute;
    left: -0.75rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--color-red-primary);
    border: 3px solid var(--color-red-primary);
    box-shadow: 0 0 10px rgba(196, 18, 18, 0.8);
}

.history-content h3 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--color-red-primary);
    display: flex;
    align-items: center;
}

.history-content h3 i {
    margin-right: 1rem;
    color: var(--color-red-primary);
    font-size: 2rem;
}

.highlight-box {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--color-red-primary);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
    width: 100%;
}

.highlight-box p,
.highlight-box ul li {
    font-size: 1.5rem;
    line-height: 2;
    color: #e5e5e5;
}

.quote {
    font-style: italic;
    color: #f0eaea;
    font-weight: 500;
    padding: 3rem;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    margin: 3rem 0;
    position: relative;
    font-size: 1.5rem;
    line-height: 2;
    display: block;
}

.quote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    left: 1rem;
    top: -1rem;
    color: var(--color-red-primary);
    opacity: 0.5;
}

.quote::after {
    content: '"';
    font-size: 5rem;
    position: absolute;
    right: 1.5rem;
    bottom: -1rem;
    color: var(--color-red-primary);
    opacity: 0.5;
}

/* ===== About Page — Dominação em Grind Hero (utilitários) ===== */
.bg-gray-100 {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.grid {
    display: grid;
    width: 100%;
    gap: 3rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.bg-white {
    background-color: #2a2a2a;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.1), 0 4px 6px -2px rgba(239, 68, 68, 0.05);
}

.text-center {
    text-align: center;
}

.text-red-600,
.text-red-900 {
    color: var(--color-red-primary);
}

.text-gray-600 {
    color: #e5e5e5;
    font-size: 1.4rem;
    margin-top: 1rem;
}

.text-gray-700 {
    color: #e5e5e5;
    font-size: 1.4rem;
    line-height: 2;
}

.text-2xl {
    font-size: 2.25rem;
}

.text-3xl {
    font-size: 2.75rem;
}

.text-4xl {
    font-size: 3.25rem;
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-8 {
    margin-bottom: 3rem;
}

.mb-12 {
    margin-bottom: 5rem;
}

.mr-4 {
    margin-right: 2rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.text-xl {
    font-size: 1.8rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Page — Nossos Valores ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #1e1e1e, #141414);
    border: 1px solid rgba(196, 18, 18, 0.2);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 18, 18, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(196, 18, 18, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(196, 18, 18, 0.1);
    border: 2px solid rgba(196, 18, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--transition-medium);
}

.value-icon i {
    font-size: 2.8rem;
    color: var(--color-red-primary);
}

.value-card:hover .value-icon {
    background: rgba(196, 18, 18, 0.2);
    border-color: var(--color-red-primary);
    box-shadow: 0 0 15px rgba(196, 18, 18, 0.4);
}

.value-card h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--color-red-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.value-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-light-gray);
    max-width: none;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== About Page — Código de Conduta ===== */
.conduct-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.conduct-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: linear-gradient(135deg, #1e1e1e, #141414);
    border: 1px solid rgba(196, 18, 18, 0.15);
    border-radius: 8px;
    padding: 2.5rem 3rem;
    transition: all var(--transition-medium);
}

.conduct-item:hover {
    border-color: rgba(196, 18, 18, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(196, 18, 18, 0.15);
    transform: translateX(5px);
}

.conduct-number {
    font-family: var(--font-title);
    font-size: 3.5rem;
    color: rgba(196, 18, 18, 0.3);
    line-height: 1;
    min-width: 50px;
    text-align: center;
    transition: color var(--transition-medium);
    user-select: none;
}

.conduct-item:hover .conduct-number {
    color: var(--color-red-primary);
    text-shadow: 0 0 10px rgba(196, 18, 18, 0.5);
}

.conduct-content h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.conduct-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-light-gray);
    margin: 0;
    max-width: none;
}

@media (max-width: 576px) {
    .conduct-item {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .conduct-number {
        font-size: 2.5rem;
    }
}

/* ===== About Page — Conquistas Notáveis ===== */
.achievement-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.achievement-card p {
    font-size: 1.4rem;
    line-height: 2;
}


/* ========== ANIMAÇÕES ========== */
/* Animations CSS for RED SKULL Guild Website */

/* Flame Effect */
.flame-effect {
    filter: drop-shadow(0 0 5px var(--color-red-primary));
    animation: flameFlicker 3s infinite alternate;
}

@keyframes flameFlicker {

    0%,
    100% {
        filter: drop-shadow(0 0 5px var(--color-red-primary));
    }

    25% {
        filter: drop-shadow(0 0 8px var(--color-red-bright));
    }

    50% {
        filter: drop-shadow(0 0 12px var(--color-red-primary));
    }

    75% {
        filter: drop-shadow(0 0 7px var(--color-red-secondary));
    }
}

/* Hover Flame Effects */
.nav-links a:hover,
.footer-links a:hover,
.social-link:hover {
    animation: textFlame 0.5s ease-in-out;
}

@keyframes textFlame {
    0% {
        text-shadow: 0 0 4px var(--color-red-primary);
    }

    50% {
        text-shadow: 0 0 10px var(--color-red-bright), 0 0 20px var(--color-red-primary);
    }

    100% {
        text-shadow: 0 0 4px var(--color-red-primary);
    }
}

/* Button Hover Effects */
.cta-button:hover,
.view-more-button:hover,
.discord-button:hover,
.donate-button:hover,
.event-join:hover {
    animation: buttonPulse 1s infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
    }

    50% {
        box-shadow: var(--shadow-large), 0 0 20px rgba(196, 18, 18, 0.8);
    }
}

/* Logo Animation */
.logo img {
    animation: logoGlow 4s infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 2px var(--color-red-secondary));
    }

    100% {
        filter: drop-shadow(0 0 8px var(--color-red-primary));
    }
}

/* Parallax Effects */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 0.5s ease-out;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Reveal for Grid Items */
.stagger-reveal>* {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.stagger-reveal>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-reveal>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-reveal>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-reveal>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-reveal>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-reveal.active>* {
    opacity: 1;
    transform: translateY(0);
}

/* Blood Drip Animation */
.blood-drip {
    position: relative;
    overflow: hidden;
}

.blood-drip::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background-color: var(--color-red-primary);
    animation: bloodDrip 3s infinite;
}

@keyframes bloodDrip {
    0% {
        height: 0;
        top: -10px;
    }

    50% {
        height: 30px;
        top: -10px;
    }

    100% {
        height: 0;
        top: 20px;
    }
}

/* Smoke Effect */
.smoke-effect {
    position: relative;
}

.smoke-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to top, rgba(51, 51, 51, 0.3), transparent);
    opacity: 0;
    animation: smokeRise 5s infinite;
}

@keyframes smokeRise {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-10px);
    }
}

/* Glitch Effect for Text */
.glitch-text {
    position: relative;
    animation: glitchText 3s infinite;
}

@keyframes glitchText {

    0%,
    100% {
        transform: translateX(0);
        text-shadow: -1px -1px 0 var(--color-red-secondary), 1px 1px 0 var(--color-red-bright);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
        text-shadow: 1px -1px 0 var(--color-red-secondary), -1px 1px 0 var(--color-red-bright);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
        text-shadow: -1px 1px 0 var(--color-red-secondary), 1px -1px 0 var(--color-red-bright);
    }
}

/* Heartbeat Animation */
.heartbeat {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Sword Slash Animation */
.sword-slash {
    position: relative;
    overflow: hidden;
}

.sword-slash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: swordSlash 2s infinite;
}

@keyframes swordSlash {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Floating Animation */
.floating {
    animation: floating 3s infinite ease-in-out;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Rotating Animation */
.rotating {
    animation: rotating 10s infinite linear;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Shake Animation */
.shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Fade Out Animation */
.fade-out {
    animation: fadeOut 1s ease-in-out;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Slide In From Left */
.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide In From Right */
.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide In From Top */
.slide-in-top {
    animation: slideInTop 0.5s ease-in-out;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide In From Bottom */
.slide-in-bottom {
    animation: slideInBottom 0.5s ease-in-out;
}

@keyframes slideInBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Zoom In Animation */
.zoom-in {
    animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Zoom Out Animation */
.zoom-out {
    animation: zoomOut 0.5s ease-in-out;
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0);
        opacity: 0;
    }
}

/* Typing Animation */
.typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--color-red-primary);
    animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--color-red-primary);
    }
}

/* Blur In Animation */
.blur-in {
    animation: blurIn 1s ease-in-out;
}

@keyframes blurIn {
    from {
        filter: blur(10px);
        opacity: 0;
    }

    to {
        filter: blur(0);
        opacity: 1;
    }
}

/* Blur Out Animation */
.blur-out {
    animation: blurOut 1s ease-in-out;
}

@keyframes blurOut {
    from {
        filter: blur(0);
        opacity: 1;
    }

    to {
        filter: blur(10px);
        opacity: 0;
    }
}

/* Flip Animation */
.flip {
    animation: flip 1s ease-in-out;
    transform-style: preserve-3d;
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }

    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}

/* Swing Animation */
.swing {
    animation: swing 1s ease-in-out;
    transform-origin: top center;
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Tada Animation */
.tada {
    animation: tada 1s ease-in-out;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

/* Wobble Animation */
.wobble {
    animation: wobble 1s ease-in-out;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Jello Animation */
.jello {
    animation: jello 1s ease-in-out;
}

@keyframes jello {

    0%,
    11.1%,
    100% {
        transform: none;
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

/* Bounce Animation */
.bounce {
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Rubber Band Animation */
.rubber-band {
    animation: rubberBand 1s ease-in-out;
}

@keyframes rubberBand {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }

    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }

    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }

    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Flash Animation */
.flash {
    animation: flash 1s ease-in-out;
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Hinge Animation */
.hinge {
    animation: hinge 2s ease-in-out;
    transform-origin: top left;
}

@keyframes hinge {
    0% {
        transform: rotate(0);
    }

    20%,
    60% {
        transform: rotate(80deg);
    }

    40%,
    80% {
        transform: rotate(60deg);
        opacity: 1;
    }

    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

/* Roll In Animation */
.roll-in {
    animation: rollIn 1s ease-in-out;
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

/* Roll Out Animation */
.roll-out {
    animation: rollOut 1s ease-in-out;
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

/* Light Speed In Animation */
.light-speed-in {
    animation: lightSpeedIn 1s ease-out;
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

/* Light Speed Out Animation */
.light-speed-out {
    animation: lightSpeedOut 1s ease-in;
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(100%) skewX(30deg);
        opacity: 0;
    }
}

/* Rotate In Animation */
.rotate-in {
    animation: rotateIn 1s ease-in-out;
    transform-origin: center;
}

@keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

/* Rotate Out Animation */
.rotate-out {
    animation: rotateOut 1s ease-in-out;
    transform-origin: center;
}

@keyframes rotateOut {
    0% {
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform: rotate(200deg);
        opacity: 0;
    }
}

/* Rotate In Down Left Animation */
.rotate-in-down-left {
    animation: rotateInDownLeft 1s ease-in-out;
    transform-origin: left bottom;
}

@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

/* Rotate In Down Right Animation */
.rotate-in-down-right {
    animation: rotateInDownRight 1s ease-in-out;
    transform-origin: right bottom;
}

@keyframes rotateInDownRight {
    0% {
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

/* Rotate In Up Left Animation */
.rotate-in-up-left {
    animation: rotateInUpLeft 1s ease-in-out;
    transform-origin: left bottom;
}

@keyframes rotateInUpLeft {
    0% {
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

/* Rotate In Up Right Animation */
.rotate-in-up-right {
    animation: rotateInUpRight 1s ease-in-out;
    transform-origin: right bottom;
}

@keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

/* ===== Hierarchy Specific Animations ===== */

/* Enhanced card entrance animation */
@keyframes hierarchyCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(20deg);
    }

    50% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.95) rotateX(10deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Supreme leader special glow */
@keyframes supremeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), 0 0 60px rgba(255, 215, 0, 0.2);
    }
}

/* Avatar glow animation */
@keyframes avatarGlow {

    0%,
    100% {
        box-shadow: 0 0 16px var(--color-red-primary);
    }

    25% {
        box-shadow: 0 0 24px var(--color-red-bright), 0 0 32px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 32px #ffff00, 0 0 24px var(--color-red-primary);
    }

    75% {
        box-shadow: 0 0 28px var(--color-red-secondary), 0 0 40px rgba(255, 0, 0, 0.3);
    }
}

/* Title text glow */
@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Knight item hover animation */
@keyframes knightHover {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        transform: scale(1.03) translateY(-3px);
    }
}

/* Stat bar fill animation */
@keyframes statFill {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* Card border glow */
@keyframes cardBorderGlow {

    0%,
    100% {
        border-color: rgba(239, 68, 68, 0.2);
    }

    50% {
        border-color: rgba(239, 68, 68, 0.8);
    }
}

/* Hierarchy entrance stagger */
.hierarchy-level .member-card {
    animation: hierarchyCardEntrance 0.8s ease-out forwards;
}

.hierarchy-level.supreme .member-card {
    animation: hierarchyCardEntrance 0.8s ease-out forwards, supremeGlow 3s ease-in-out infinite;
}

.knight-item {
    animation: hierarchyCardEntrance 0.6s ease-out forwards;
}

.level-title {
    animation: titleGlow 4s ease-in-out infinite;
}

/* Enhanced hover states - Removido para evitar conflitos com transições suaves */

.stat-fill {
    animation: statFill 1.5s ease-out forwards;
}

/* Pulsing effect for important elements */
@keyframes pulseSubtle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

.knight-avatar {
    animation: pulseSubtle 2s ease-in-out infinite;
}

/* Floating effect for knight names */
@keyframes floatText {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.knight-name {
    animation: floatText 3s ease-in-out infinite;
}

/* ========== MELHORIAS DE UX ========== */
/* UX Improvements for RED SKULL Guild Website */

/* ===== Sticky Header ===== */
#main-header.sticky {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

/* ===== Tagline ===== */
.tagline-container {
    display: flex;
    align-items: center;
}

.logo-tagline {
    margin-left: 15px;
    border-left: 2px solid var(--color-red-primary);
    padding-left: 15px;
    line-height: 1.2;
}

.tagline-primary {
    font-weight: 700;
    color: var(--color-red-primary);
    font-size: 1.4rem;
    display: block;
}

.tagline-secondary {
    color: var(--color-text);
    font-size: 1.2rem;
}

/* ===== Improved Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;

}

h1 {
    font-size: 4.8rem;
    font-weight: 800;
}

h2 {
    font-size: 3.6rem;
    font-weight: 700;
}

h3 {
    font-size: 2.4rem;
    font-weight: 700;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 70ch;
}

.text-highlight {
    font-weight: 700;
    color: var(--color-red-primary);
}

/* ===== Enhanced Cards ===== */
.card {
    background-color: var(--color-dark-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    border: 1px solid rgba(196, 18, 18, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.3);
    border-color: rgba(196, 18, 18, 0.3);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(196, 18, 18, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(196, 18, 18, 0.1);
}

/* ===== Improved Buttons ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    border: 1px solid var(--color-red-secondary);
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.7);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-red-primary);
    border: 1px solid var(--color-red-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(196, 18, 18, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
}

/* ===== Improved Navigation ===== */
.nav-group {
    display: flex;
    align-items: center;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background-color: var(--color-red-secondary);
    margin: 0 15px;
}

/* ===== Animated Progress Bar ===== */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ===== Improved Form Elements ===== */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--color-medium-gray);
    border: 1px solid var(--color-light-gray);
    border-radius: 4px;
    color: var(--color-text);
    transition: all var(--transition-medium);
}

.form-control:focus {
    border-color: var(--color-red-primary);
    box-shadow: 0 0 0 3px rgba(196, 18, 18, 0.2);
    outline: none;
}

.form-feedback {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 1.2rem;
    color: var(--color-red-bright);
}

/* ===== Testimonial Improvements ===== */
/* Comentado para não interferir no carrossel */
/*
.testimonial-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-dark-gray);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    border: 1px solid rgba(196, 18, 18, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.3);
}
*/

.testimonial-content {
    position: relative;
    padding: 2rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 6rem;
    color: rgba(196, 18, 18, 0.2);
    font-family: serif;
    line-height: 1;
}

/* ===== Accessibility Improvements ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-red-primary);
    color: white;
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===== Micro-interactions ===== */
.hover-scale {
    transition: transform var(--transition-medium);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow var(--transition-medium);
}

.hover-glow:hover {
    box-shadow: 0 0 15px rgba(196, 18, 18, 0.5);
}

/* ===== Focus States ===== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(196, 18, 18, 0.5);
    outline-offset: 2px;
}

/* ===== Improved CTA ===== */
.cta-primary {
    background: var(--gradient-red);
    color: white;
    font-size: 1.8rem;
    padding: 1.5rem 4rem;
    border-radius: 4px;
    box-shadow: var(--shadow-medium), 0 0 15px rgba(196, 18, 18, 0.5);
    transition: all var(--transition-medium);
    display: inline-block;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: 1;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large), 0 0 20px rgba(196, 18, 18, 0.7);
}

/* ===== Social Proof ===== */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-value {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--color-red-primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.6rem;
    color: var(--color-text);
    text-transform: uppercase;
}

/* ===== Streamers Section Improvements ===== */
#streamers {
    background: var(--color-black);
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.streamer-card {
    background: rgba(30, 20, 30, 0.98);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 #ff003c22, 0 2px 8px 0 #0005;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(.23, 1.02, .32, 1), box-shadow 0.35s;
    border: 2px solid transparent;
    z-index: 1;
}

.streamer-card:hover {
    transform: scale(1.035) translateY(-6px) rotate(-1deg);
    box-shadow: 0 8px 40px 0 #ff003c44, 0 2px 16px 0 #0007;
    border-color: #ff0000;
}

.streamer-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.streamer-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 0 12px #ff003c55;
    background: #18141a;
}

.streamer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s, transform 0.3s;
}

.streamer-card:hover .streamer-avatar img {
    filter: brightness(1.13) drop-shadow(0 0 8px #ff003c88);
    transform: scale(1.09) rotate(-2deg);
}

.live-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: linear-gradient(90deg, #ff0000, #ff7b00);
    color: #fff;
    font-weight: bold;
    padding: 0.18em 0.8em;
    border-radius: 1em;
    font-size: 0.85em;
    box-shadow: 0 0 8px 2px #ff003c80;
    letter-spacing: 1px;
    animation: badgePulse 1.1s infinite alternate;
}

@keyframes badgePulse {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.4);
    }
}

.streamer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.streamer-card:hover .streamer-info h3 {
    color: #ff0000;
    text-shadow: 0 2px 8px #ff003c55;
    letter-spacing: 1px;
}

.streamer-role {
    font-size: 1.1rem;
    color: #ff7b00;
    font-weight: 500;
}

.stream-preview {
    position: relative;
    width: 100%;
    height: 180px;
    /* Reduzido de 180px para 140px */
    overflow: hidden;
    border-radius: 12px;
    margin: 1.2rem 0 0.7rem 0;
    /* Mais espaçamento acima e abaixo */
    box-shadow: 0 2px 16px #ff003c22;
    padding: 1rem;
    /* Espaço interno para afastar a imagem das bordas */
    background: #18141a;
}

.stream-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Para não cortar a imagem, dando mais respiro */
    border-radius: 8px;
    background: #18141a;
}

.stream-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.streamer-card:hover .stream-overlay {
    background: rgba(255, 0, 60, 0.18);
}

.play-button {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.streamer-card:hover .play-button {
    opacity: 1;
    pointer-events: auto;
}

.play-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(120deg, #ff0000 60%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 16px 2px #ff000080;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 7px;
}

.play-button:hover {
    box-shadow: 0 0 32px 8px #ff003cbb;
}

.stream-details {
    padding: 0 1.5rem 1.2rem 1.5rem;
}

.stream-details h4 {
    font-size: 1.9rem;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stream-details p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stream-meta {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #f0f0f0;
    font-weight: 700;
}

.viewers {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: 700;
}

.watch-button {
    display: block;
    width: 90%;
    max-width: 260px;
    margin: 1.2rem auto 1rem auto;
    padding: 0.9rem 0;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 1.1rem;
    background: var(--gradient-red);
    color: white;
    border: 1px solid var(--color-red-secondary);
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    text-decoration: none;
}

.watch-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.watch-button:hover::before {
    left: 100%;
}

.watch-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.7);
    color: white;
    background: var(--gradient-red);
}

/* Socials do streamer */
.streamer-socials {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 1.2rem;
    margin: 1.1rem 0 0.7rem 0;
}

.streamer-socials .social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #18141a;
    box-shadow: 0 0 8px #ff003c33;
    border: 2px solid #ff0000;
    transition: box-shadow 0.3s, border 0.3s;
}

.streamer-socials .social-link:hover {
    box-shadow: 0 0 16px #ff003c99;
    border: 2px solid #ff7b00;
}

/* ===== Social Media Section Improvements ===== */
#social-media {
    background: #19181b;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}

.social-card {
    background: rgba(30, 20, 30, 0.98);
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 #ff003c22, 0 2px 8px 0 #0005;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(.23, 1.02, .32, 1), box-shadow 0.35s, border 0.3s;
    border: 2px solid transparent;
    z-index: 1;
}

.social-card:hover {
    transform: scale(1.045) translateY(-6px) rotate(-1deg);
    box-shadow: 0 8px 32px 0 #ff003c44, 0 2px 16px 0 #0007;
    border-color: #ff0000;
}

.social-card .social-icon {
    width: 54px;
    height: 54px;
    margin: 1.5rem auto 1rem auto;
    border-radius: 50%;
    background: #18141a;
    box-shadow: 0 0 12px #ff003c55;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff0000;
    transition: box-shadow 0.3s, border 0.3s;
}

.social-card:hover .social-icon {
    box-shadow: 0 0 24px #ff003c99;
    border: 3px solid #ff7b00;
}

.social-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 0.2rem;
    text-align: center;
    letter-spacing: 1px;
}

.social-card p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
    text-align: center;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    color: #ff7b00;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.8;
}

.social-button {
    display: block;
    width: 80%;
    min-width: unset;
    max-width: 260px;
    margin: 1.2rem auto 1.2rem auto;
    padding: 0.8rem 0;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 1.1rem;
    background: var(--gradient-red);
    color: white;
    border: 1px solid var(--color-red-secondary);
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.social-button:hover::before {
    left: 100%;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.7);
    color: white;
    background: var(--gradient-red);
}

/* Efeito de brilho animado nos ícones das redes sociais */
.social-card .social-icon img {
    filter: drop-shadow(0 0 8px #ff003c88);
    transition: filter 0.3s;
}

.social-card:hover .social-icon img {
    filter: drop-shadow(0 0 16px #ff7b00cc) brightness(1.2);
}

@media (max-width: 700px) {
    .streamers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .streamer-card {
        border-radius: 12px;
    }

    .streamer-header,
    .stream-details {
        padding: 1rem;
    }

    .stream-preview {
        height: 90px;
        padding: 0.3rem;
    }

    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .social-card {
        border-radius: 10px;
    }
}

/* ========== RESPONSIVO ========== */
/* Responsive CSS for RED SKULL Guild Website */

/* Large Screens (1200px and below) */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .highlights-grid,
    .leaders-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .discord-container {
        flex-direction: column;
    }

    .discord-info {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .discord-widget {
        flex: 0 0 100%;
    }

    .discord-widget iframe {
        width: 100%;
    }
}

/* Medium Screens (992px and below) */
@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .main-title {
        font-size: 6rem;
    }

    .slogan {
        font-size: 2rem;
    }

    .highlights-grid,
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        width: 100%;
    }

    .day {
        font-size: 2.5rem;
        margin-right: 1rem;
    }

    .event-action {
        padding: 1rem 2rem 2rem;
    }
}

/* Small Screens (768px and below) */
@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .main-title {
        font-size: 5rem;
    }

    .slogan {
        font-size: 1.8rem;
    }

    /* --- Hamburger Button --- */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(196, 18, 18, 0.08);
        border: 1px solid rgba(196, 18, 18, 0.5);
        border-radius: 6px;
        position: relative;
        z-index: 1100;
        margin-left: auto;
        cursor: pointer;
        transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
        background: rgba(196, 18, 18, 0.2);
        border-color: var(--color-red-primary);
        box-shadow: 0 0 14px rgba(196, 18, 18, 0.45);
        outline: none;
    }

    /* --- Burger Icon Bars --- */
    .sword-icon {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--color-red-primary);
        position: relative;
        transition: background-color 0.3s ease;
    }

    .sword-icon::before,
    .sword-icon::after {
        content: '';
        position: absolute;
        left: 0;
        height: 2px;
        background-color: var(--color-red-primary);
        transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, width 0.3s ease;
    }

    .sword-icon::before {
        width: 22px;
        top: -7px;
    }

    .sword-icon::after {
        width: 14px;
        bottom: -7px;
    }

    /* --- X state when open --- */
    .menu-open .sword-icon {
        background-color: transparent;
    }

    .menu-open .sword-icon::before {
        width: 22px;
        top: 0;
        transform: rotate(45deg);
    }

    .menu-open .sword-icon::after {
        width: 22px;
        bottom: 0;
        transform: rotate(-45deg);
    }

    /* --- Slide-in Nav Panel --- */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 88vw);
        height: 100dvh;
        background: linear-gradient(160deg, #0e0e0e 0%, #180404 100%);
        border-left: 2px solid var(--color-red-primary);
        box-shadow: -6px 0 40px rgba(196, 18, 18, 0.3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .menu-open .nav-links {
        transform: translateX(0);
    }

    /* Panel header decoration */
    .nav-links::before {
        content: 'NAVEGAÇÃO';
        display: block;
        color: var(--color-red-primary);
        font-family: 'Anton', sans-serif;
        font-size: 1.1rem;
        letter-spacing: 5px;
        text-align: center;
        padding: 80px 2rem 1.4rem;
        border-bottom: 1px solid rgba(196, 18, 18, 0.25);
        margin-bottom: 0.5rem;
    }

    /* --- Nav Items --- */
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(196, 18, 18, 0.1);
        opacity: 0;
        transform: translateX(16px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .menu-open .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .menu-open .nav-links li:nth-child(1) {
        transition-delay: 0.08s;
    }

    .menu-open .nav-links li:nth-child(2) {
        transition-delay: 0.13s;
    }

    .menu-open .nav-links li:nth-child(3) {
        transition-delay: 0.18s;
    }

    .menu-open .nav-links li:nth-child(4) {
        transition-delay: 0.23s;
    }

    .menu-open .nav-links li:nth-child(5) {
        transition-delay: 0.28s;
    }

    .menu-open .nav-links li:nth-child(6) {
        transition-delay: 0.33s;
    }

    .menu-open .nav-links li:nth-child(7) {
        transition-delay: 0.38s;
    }

    .nav-links a {
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1.3rem 2.2rem;
        color: var(--color-text);
        background: transparent;
        border: none;
        border-left: 3px solid transparent;
        border-radius: 0;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.2s ease, border-left-color 0.2s ease, background 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-red-primary);
        border-left-color: var(--color-red-primary);
        background: rgba(196, 18, 18, 0.08);
        transform: none;
        box-shadow: none;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-group {
        flex-direction: column;
        width: 100%;
    }

    .nav-divider {
        width: 80%;
        height: 1px;
        margin: 0.5rem auto;
        background: rgba(196, 18, 18, 0.2);
        border: none;
    }


    .highlights-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leader-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .testimonials-slider {
        padding: 0 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-content p {
        font-size: 1.6rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title::after {
        margin: 1rem auto 0;
    }
}

/* Extra Small Screens (576px and below) */
@media screen and (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }

    .main-title {
        font-size: 4rem;
        letter-spacing: 2px;
    }

    .slogan {
        font-size: 1.6rem;
    }

    .cta-button {
        font-size: 1.6rem;
        padding: 1.2rem 3rem;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .progress-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 0 0 50%;
        margin-bottom: 2rem;
    }

    .testimonial-author {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .author-avatar {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .author-info {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .author-info h3,
    .author-info p {
        text-align: center !important;
        width: 100%;
    }

    .event-details h3 {
        font-size: 1.8rem;
    }

    .discord-stats {
        flex-direction: column;
    }

    .discord-stats .stat {
        margin-bottom: 2rem;
    }

    .nav-links {
        width: 100%;
    }
}

/* Height-based Media Queries */
@media screen and (max-height: 700px) {
    #hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .logo-animated img {
        width: 150px;
    }

    .main-title {
        font-size: 5rem;
    }

    .slogan {
        margin-bottom: 2rem;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
        color: black;
    }

    #main-header,
    #audio-control,
    #war-mode-toggle,
    .cta-container,
    .view-more-container,
    #main-footer,
    .scroll-indicator {
        display: none;
    }

    .container {
        max-width: 100%;
        width: 100%;
    }

    .section-title,
    .highlight-content h3,
    .leader-info h3,
    .event-details h3 {
        color: black;
    }

    .highlight-card,
    .leader-card,
    .event-card,
    .testimonial-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .highlight-image,
    .leader-avatar {
        border: 1px solid #ccc;
    }

    .progress-fill,
    .fury-fill,
    .stat-fill {
        background: #ccc;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* Desktop Screens (993px and above) */
@media screen and (min-width: 993px) {
    .header-container {
        justify-content: center;
        gap: 4rem;
    }

    .main-nav {
        flex: none;
        /* Remover flex-grow em desktop para não ocupar espaço extra */
        justify-content: center;
    }

    /*
    .nav-links {
         Ajustar espaçamento dos links se necessário 
    }
         */
}

.wiki-btn a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-red);
    color: var(--color-text);
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--color-red-secondary);
    border-radius: 3px;
    box-shadow: var(--shadow-medium), 0 0 10px rgba(196, 18, 18, 0.5);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.2rem;
}

.wiki-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.wiki-btn a:hover::before {
    left: 100%;
}

.wiki-btn a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large), 0 0 15px rgba(196, 18, 18, 0.7);
    color: white;
}

/* ===== Join Page — Hero CTA Group ===== */
.hero-cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-button--outline {
    background: transparent;
    border: 2px solid var(--color-red-primary);
    color: var(--color-text);
    box-shadow: none;
}

.cta-button--outline:hover {
    background: rgba(196, 18, 18, 0.15);
    box-shadow: 0 0 15px rgba(196, 18, 18, 0.4);
    color: white;
}

/* ===== Join Page — Stats Bar ===== */
#join-stats {
    background: var(--color-black);
    border-top: 1px solid rgba(196, 18, 18, 0.3);
    border-bottom: 1px solid rgba(196, 18, 18, 0.3);
    padding: 4rem 0;
}

.join-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.join-stat {
    padding: 1rem;
}

.join-stat-value {
    display: block;
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--color-red-primary);
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(196, 18, 18, 0.5);
}

.join-stat-label {
    display: block;
    font-size: 1.4rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .join-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .join-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .join-stat-value {
        font-size: 3rem;
    }
}

/* ===== Join Page — Como Entrar Steps ===== */
#how-to-join {
    background: var(--color-dark-gray);
}

.join-section-subtitle {
    text-align: center;
    color: var(--color-light-gray);
    font-size: 1.7rem;
    margin-bottom: 5rem;
    margin-top: -2rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.join-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.join-step {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1e1e1e, #141414);
    border: 1px solid rgba(196, 18, 18, 0.2);
    border-radius: 8px;
    transition: all var(--transition-medium);
    position: relative;
}

.join-step:hover {
    border-color: rgba(196, 18, 18, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(196, 18, 18, 0.15);
}

.join-step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(196, 18, 18, 0.4), rgba(196, 18, 18, 0.8), rgba(196, 18, 18, 0.4));
    flex-shrink: 0;
    margin-top: 5rem;
    position: relative;
}

.join-step-connector::after {
    content: '▶';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-red-primary);
    font-size: 1.2rem;
}

.join-step-number {
    font-family: var(--font-title);
    font-size: 5rem;
    color: rgba(196, 18, 18, 0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color var(--transition-medium);
}

.join-step:hover .join-step-number {
    color: var(--color-red-primary);
    text-shadow: 0 0 20px rgba(196, 18, 18, 0.5);
}

.join-step-content h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.join-step-content p {
    font-size: 1.5rem;
    color: var(--color-light-gray);
    line-height: 1.7;
    max-width: none;
    margin-bottom: 1.5rem;
}

.join-step-link {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-red-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
}

.join-step-link:hover {
    color: var(--color-red-bright);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .join-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .join-step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(196, 18, 18, 0.4), rgba(196, 18, 18, 0.8));
    }

    .join-step-connector::after {
        content: '▼';
        right: 50%;
        top: auto;
        bottom: -12px;
        transform: translateX(50%);
    }
}

/* ===== Join Page — Section subtitle ===== */
#requirements .join-section-subtitle,
#benefits .join-section-subtitle {
    margin-bottom: 1rem;
    margin-top: -3rem;
}