/* Variáveis de Cores */
:root {
    --primary-color: #d5ab80;    /* Azul */
    --secondary-color: #b5651c;  /* Roxo */
    --accent-color: #e77219;     /* Vermelho */
    --dark-bg: #0D1B2A;          /* Fundo escuro */
    /*--light-text: #dd925f;       /* Texto claro */
    --light-text: #ffdcc4;
    --dark-text: #212529;        /* Texto escuro */
    --gray-bg: #343A40;          /* Fundo cinza */
    --light-gray: #6C757D;       /* Cinza claro */
    --overlay-bg: rgba(13, 27, 42, 0.55); /* Fundo de sobreposição */
    --gradient-bg: linear-gradient(135deg, var(--dark-bg) 0%, #1A2634 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 3rem 0;
    position: relative;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cursor Personalizado */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.05s ease;
}


/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
}

.btn-primary:hover {
    background: #2a75f3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.6);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #ffdcc4;
    box-shadow: 0 5px 15px #f6882196;

}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #8f4b0c96;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(13, 27, 42, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    width: 80px;
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--accent-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

nav ul li a:hover:before,
nav ul li a.active:before {
    width: 100%;
}

nav ul li a.active {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Seção Hero */
.hero {
    padding-top: 25%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(45deg, rgba(13, 27, 42, 0.5), rgba(58, 134, 255, 0.1)),
        url('../img/logo.jpeg') no-repeat top center/cover;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    letter-spacing: 2px;
    position: relative;
}

.hero-header p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5rem;
    text-transform: uppercase;
    color: var(--light-text);
    text-shadow: 0 0 15px var(--primary-color);
    position: relative;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    letter-spacing: 2px;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito Parallax */
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('../img/logo.jpeg') repeat top center/cover;
    animation: parallax 60s ease-in-out infinite backwards;
    opacity: 0.2;
    pointer-events: none;
}

@keyframes parallax {
    from { transform: translateY(2%) translateX(2%); }
    to { transform: translateY(-2%) translateX(-2%); }
}

.glitch {
    position: relative;
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch:after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }
    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }
    10% {
        clip: rect(48px, 9999px, 29px, 0);
    }
    15% {
        clip: rect(42px, 9999px, 73px, 0);
    }
    20% {
        clip: rect(63px, 9999px, 27px, 0);
    }
    25% {
        clip: rect(34px, 9999px, 55px, 0);
    }
    30% {
        clip: rect(86px, 9999px, 73px, 0);
    }
    35% {
        clip: rect(20px, 9999px, 20px, 0);
    }
    40% {
        clip: rect(26px, 9999px, 60px, 0);
    }
    45% {
        clip: rect(25px, 9999px, 66px, 0);
    }
    50% {
        clip: rect(57px, 9999px, 98px, 0);
    }
    55% {
        clip: rect(5px, 9999px, 46px, 0);
    }
    60% {
        clip: rect(82px, 9999px, 31px, 0);
    }
    65% {
        clip: rect(54px, 9999px, 27px, 0);
    }
    70% {
        clip: rect(28px, 9999px, 99px, 0);
    }
    75% {
        clip: rect(45px, 9999px, 69px, 0);
    }
    80% {
        clip: rect(23px, 9999px, 85px, 0);
    }
    85% {
        clip: rect(54px, 9999px, 84px, 0);
    }
    90% {
        clip: rect(45px, 9999px, 47px, 0);
    }
    95% {
        clip: rect(37px, 9999px, 20px, 0);
    }
    100% {
        clip: rect(4px, 9999px, 91px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    5% {
        clip: rect(52px, 9999px, 74px, 0);
    }
    10% {
        clip: rect(79px, 9999px, 85px, 0);
    }
    15% {
        clip: rect(75px, 9999px, 5px, 0);
    }
    20% {
        clip: rect(67px, 9999px, 61px, 0);
    }
    25% {
        clip: rect(14px, 9999px, 79px, 0);
    }
    30% {
        clip: rect(1px, 9999px, 66px, 0);
    }
    35% {
        clip: rect(86px, 9999px, 30px, 0);
    }
    40% {
        clip: rect(23px, 9999px, 98px, 0);
    }
    45% {
        clip: rect(85px, 9999px, 72px, 0);
    }
    50% {
        clip: rect(71px, 9999px, 75px, 0);
    }
    55% {
        clip: rect(2px, 9999px, 48px, 0);
    }
    60% {
        clip: rect(30px, 9999px, 16px, 0);
    }
    65% {
        clip: rect(59px, 9999px, 50px, 0);
    }
    70% {
        clip: rect(41px, 9999px, 62px, 0);
    }
    75% {
        clip: rect(2px, 9999px, 82px, 0);
    }
    80% {
        clip: rect(47px, 9999px, 73px, 0);
    }
    85% {
        clip: rect(3px, 9999px, 27px, 0);
    }
    90% {
        clip: rect(26px, 9999px, 55px, 0);
    }
    95% {
        clip: rect(42px, 9999px, 97px, 0);
    }
    100% {
        clip: rect(38px, 9999px, 49px, 0);
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    font-size: small;
    gap: 20px;
    margin-bottom: 2rem;
}



.stats {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    flex-wrap: wrap; /* Permite quebra de linha */
    gap: 30px;
    margin-top: 3rem;
    width: 100%;
}

/* .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 27, 42, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    min-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} */

/* Stats Animados */
.stat-item {
    perspective: 1000px;
}

.stat-item-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.stat-item:hover .stat-item-inner {
    transform: rotateY(180deg);
}

.stat-front,
.stat-back {
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-back {
    transform: rotateY(180deg);
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(58, 134, 255, 0.4);
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efeito para ícones */
.stat-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.stat-item:hover i {
    color: var(--accent-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        width: 80%;
        max-width: 180px;
    }
}
/* Seção Sobre */
.about {
    background: var(--gradient-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.section-header h2 span {
    color: var(--accent-color);
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    position: relative;
}

.separator:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--secondary-color);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.image-frame {
    position: relative;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-frame:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.3;
    z-index: 1;
}

.image-frame img {
    display: block;
    transition: all 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.equipment-list {
    margin-top: 1rem;
}

.equipment-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.equipment-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Seção Conteúdo */
.content {
    position: relative;
    display: flex;
    justify-content: space-evenly;}

.content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
}

.content .container {
    position: relative;
    z-index: 2;
}

.content-categories {
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tab-btn {
    padding: 10px 25px;
    background: var(--gray-bg);
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Melhoria nos Cards de Conteúdo */
.content-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.content-item:hover::before {
    left: 100%;
}

.content-thumbnail {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.content-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.content-item:hover .content-thumbnail img {
    transform: scale(1.1);
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.content-item:hover .content-overlay {
    opacity: 0;
    visibility: hidden;
    color: var(--accent-color);
}

.content-info {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.content-item:hover .content-info {
    transform: translateY(0);
}

.content-info h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.content-info p {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1rem;
}

.steam-games {
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4rem;
    border-radius: 50px;
    padding: 50px;
    border: 1px solid var(--primary-color);

}

.steam-games h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 3rem;
    text-transform: uppercase;
}
.steam-games h4 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}
.steam-games p {
    flex: auto;
    background: rgba(26, 38, 52, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    color:  var(--primary-color);
}

.steam-games p:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(26, 38, 52, 0.9);
}

.steam-games-list {	
    columns: 2;
    gap: 1.6rem;
}
.schedule {
    text-align: center;
    background: rgba(13, 27, 42, 0.7);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
}

.schedule h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.schedule-grid {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.6rem;
    flex-wrap: wrap;
}

.schedule-item {
    flex: auto;
    background: rgba(26, 38, 52, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(26, 38, 52, 0.9);
}

.schedule-item .day {
    display: grid;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.schedule-item .time {
    color: var(--light-text);
    margin-bottom: 10px;
}

.schedule-item .game {
    color: var(--accent-color);
    font-weight: 600;
}

/* Seção Comunidade */
.community {
    background: var(--gradient-bg);
}

.benefits {
    margin-bottom: 50px;
}

.benefits h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: rgba(26, 38, 52, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--light-text);
}

.benefit-item:nth-child(2) .benefit-icon {
    background: var(--secondary-color);
}

.benefit-item:nth-child(3) .benefit-icon {
    background: var(--accent-color);
}



.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.community-rules-header {
    text-align: center;
    margin-bottom: 50px;
}
.community-rules-header h3 {
    font-size: 3rem;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}
.community-rules {
    margin-bottom: 50px;
    columns: 2;
}

.community-rules h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.rules-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.rules-list p {
    background: rgba(26, 38, 52, 0.7);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rules-list li:hover {
    transform: translateX(10px);
    background: rgba(26, 38, 52, 0.9);
}

.rules-list li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.testimonials {
    position: relative;
}

.testimonials h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background: rgba(26, 38, 52, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin: 20px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonial-author .name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author .role {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-bg);
    border: none;
    color: var(--light-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-controls button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Seção Contato */
.contact {
    background: url('../img/contact-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.social-links {
    display: inline-flex;
    flex-direction: right;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.social-links li {
    margin-bottom: 15px;
}

.social-links a {
    display: flex;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a i {
    width: 40px;
    height: 40px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a.twitch i {
    color: #6441a5;
}

.social-links a.discord i {
    color: #7289da;
}

.social-links a.twitter i {
    color: #1da1f2;
}

.social-links a.instagram i {
    color: #e1306c;
}

.social-links a:hover {
    transform: translateX(10px);
}

.social-links a:hover i {
    background: var(--primary-color);
    color: var(--light-text);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}
.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    transition: all 0.3s ease;
    padding-left: 40px;
}
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(26, 38, 52, 0.7);
    border: 1px solid var(--gray-bg);
    border-radius: 5px;
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus ~ i,
.form-group textarea:focus ~ i {
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.2);
}
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.3);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s linear infinite;
    z-index: 9999;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dark Mode Toggle */
.theme-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-bg);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: var(--light-text);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
    background: var(--dark-bg);
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex: 1;
    min-width: 250px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-between;
}

.footer-logo h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter {
    flex: 1;
    min-width: 300px;
}

.footer-newsletter h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-newsletter form {
    display: flex;
    margin-top: 20px;
}

.footer-newsletter input {
    flex: 1;
    padding: 15px;
    background: rgba(26, 38, 52, 0.7);
    border: 1px solid var(--gray-bg);
    border-radius: 5px 0 0 5px;
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.footer-newsletter button {
    padding: 0 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #2a75f3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(108, 117, 125, 0.2);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Botão de Scroll para o Topo */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--dark-bg);
        padding: 20px;
        border-radius: 5px;
        margin-top: 20px;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefits-grid,
    .rules-list {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}
