/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0a0a14;
    color: #e4e4f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
    background: #9B59B6;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7B2FBE;
}

/* ===== PARTICULAS MAGICAS ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #9B59B6;
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1.5);
    }
}

/* ===== UTILITY ===== */
.gradient-text {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-purple {
    background: linear-gradient(135deg, #9B59B6, #7B2FBE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: scale(1);
}

.btn-primary {
    background: linear-gradient(135deg, #9B59B6, #7B2FBE);
    color: #fff;
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(123, 47, 190, 0.5);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}
.btn-discord:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(88, 101, 242, 0.5);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.pulse-delay {
    animation: pulse 2s ease-in-out 0.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating {
    animation: floatY 3s ease-in-out infinite;
}

.floating-delay {
    animation: floatY 3s ease-in-out 1.5s infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    background: rgba(123, 47, 190, 0.15);
    color: #9B59B6;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    animation: slideInDown 0.8s ease both;
}

.section-tag i {
    margin-right: 6px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    animation: slideInUp 0.8s ease 0.2s both;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    animation: slideInUp 0.8s ease 0.4s both;
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== NAVBAR - MENOR E MAIS ELEGANTE ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.95);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.logo-badge {
    background: linear-gradient(135deg, #9B59B6, #7B2FBE);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a i {
    font-size: 0.75rem;
}

.nav-links a span {
    font-size: 0.75rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #9B59B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(155, 89, 182, 0.12);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at 50% 30%, #1a0a2e, #0a0a14 70%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(123, 47, 190, 0.08), transparent 60%);
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #9B59B6;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #2ECC71;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #9B59B6;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: #2ECC71;
    bottom: 20%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, -10px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(155, 89, 182, 0.2);
    color: #9B59B6;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.hero-badge i {
    margin-right: 6px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.2s both;
    color: #fff;
}

.hero-title .gradient-text {
    font-size: 5rem;
}

.hero-title .gradient-purple {
    font-size: 5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-label i {
    margin-right: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== ANÚNCIOS / GUERRA DE CLÃS ===== */
.anuncio-guerra {
    margin-bottom: 30px;
}

.guerra-texto-superior {
    text-align: center;
    padding: 40px 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(155, 89, 182, 0.1);
    border-bottom: none;
}

.guerra-tag {
    display: inline-block;
    background: rgba(231, 76, 60, 0.2);
    color: #E74C3C;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.guerra-texto-superior h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #F1C40F, #F39C12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guerra-descricao {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.guerra-detalhes-superior {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.guerra-detalhes-superior span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guerra-detalhes-superior span i {
    color: #E74C3C;
}

.guerra-premiacao {
    background: rgba(241, 196, 15, 0.05);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: inline-block;
}

.premio-titulo {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #F1C40F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.premio-titulo i {
    margin-right: 6px;
}

.premio-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.premio-items span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.premio-items span i {
    color: #F1C40F;
}

.guerra-como-participar {
    margin-bottom: 16px;
}

.guerra-como-participar span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
}

.guerra-como-participar span i {
    color: #9B59B6;
}

.guerra-como-participar code {
    background: rgba(155, 89, 182, 0.2);
    padding: 2px 12px;
    border-radius: 4px;
    font-family: monospace;
    color: #9B59B6;
    font-weight: 600;
}

.guerra-countdown-superior {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 10px 28px;
    display: inline-block;
    margin-bottom: 18px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.guerra-countdown-superior span {
    font-size: 2rem;
    font-weight: 800;
    color: #F1C40F;
    font-family: monospace;
    letter-spacing: 2px;
}

.guerra-imagem-inferior {
    width: 100%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    border: 1px solid rgba(155, 89, 182, 0.1);
    border-top: none;
}

.guerra-imagem-inferior img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}

/* ===== SOBRE O SERVIDOR ===== */
.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.sobre-text:hover {
    border-color: rgba(155, 89, 182, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.01);
}

.sobre-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sobre-text p:last-child {
    margin-bottom: 0;
}

.sobre-text strong {
    color: #fff;
}

.sobre-destaque {
    background: rgba(155, 89, 182, 0.1);
    border-left: 4px solid #9B59B6;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sobre-destaque i {
    font-size: 1.5rem;
    color: #9B59B6;
}

.sobre-destaque span {
    font-size: 1.1rem;
    color: #fff;
}

/* ===== INFORMAÇÕES ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(155, 89, 182, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #9B59B6;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.ip-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 8px 0;
}

.ip-box code {
    font-family: monospace;
    font-size: 0.95rem;
    color: #9B59B6;
    flex: 1;
}

.copy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.copy-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.info-detail {
    font-size: 0.9rem;
    margin: 4px 0;
    color: rgba(255, 255, 255, 0.7);
}

.badge {
    display: inline-block;
    background: rgba(123, 47, 190, 0.15);
    color: #9B59B6;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.warning-box {
    background: rgba(255, 200, 0, 0.08);
    border-left: 3px solid #9B59B6;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.warning-box i {
    margin-right: 8px;
    color: #F1C40F;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.info-list li:hover {
    padding-left: 8px;
    color: #fff;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    margin-right: 8px;
    width: 20px;
}

/* ===== ATUALIZAÇÕES ===== */
.updates-list {
    max-width: 800px;
    margin: 0 auto;
}

.update-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.update-item:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.update-date {
    flex-shrink: 0;
    min-width: 120px;
    font-weight: 700;
    color: #9B59B6;
}

.update-date i {
    margin-right: 6px;
}

.update-content h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.update-content h3 i {
    margin-right: 8px;
}

.update-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ===== STAFF ===== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.staff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.staff-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(155, 89, 182, 0.4);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.staff-skin {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(155, 89, 182, 0.3);
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.staff-skin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.staff-card:hover .staff-skin {
    border-color: #9B59B6;
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.3);
}

.skin-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, rgba(155, 89, 182, 0.15), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.staff-card:hover .skin-glow {
    opacity: 1;
}

.staff-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 4px;
    color: #fff;
}

.staff-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9B59B6;
    margin: 4px 0 8px;
}

.staff-role i {
    margin-right: 4px;
}

.staff-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    min-height: 40px;
}

.staff-social {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.staff-social a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.staff-social a:hover {
    color: #5865F2;
    transform: scale(1.3) rotate(360deg);
}

/* ===== REGRAS ===== */
.rules-container {
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: flex-start;
}

.rule-item:hover {
    padding-left: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.rule-number {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #9B59B6;
    width: 48px;
}

.rule-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.rule-text h4 i {
    margin-right: 8px;
}

.rule-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.rule-text a {
    color: #9B59B6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rule-text a:hover {
    color: #7B2FBE;
}

/* ===== NOVIDADES ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(155, 89, 182, 0.3);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #9B59B6;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.news-tag i {
    margin-right: 4px;
}

.news-body {
    padding: 20px;
}

.news-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.news-body h3 i {
    margin-right: 6px;
}

.news-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.news-date {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.news-date i {
    margin-right: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 6px;
}

.footer-links a:hover {
    color: #9B59B6;
    transform: translateY(-2px);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-copy i {
    margin: 0 4px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(12px);
        padding: 16px;
        border-radius: 12px;
        position: absolute;
        top: 60px;
        right: 16px;
        left: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        gap: 2px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title .gradient-text,
    .hero-title .gradient-purple {
        font-size: 3.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .update-item {
        flex-direction: column;
        gap: 4px;
    }

    .update-date {
        min-width: auto;
    }

    .rule-item {
        flex-direction: column;
        gap: 4px;
    }

    .rule-number {
        width: auto;
    }

    .footer-links {
        gap: 12px;
    }

    .sobre-text {
        padding: 24px;
    }

    .shape {
        display: none;
    }

    .guerra-texto-superior h2 {
        font-size: 2.5rem;
    }
    
    .guerra-descricao {
        font-size: 1rem;
    }
    
    .guerra-detalhes-superior {
        gap: 10px;
    }
    
    .guerra-detalhes-superior span {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .premio-items {
        gap: 12px;
    }
    
    .premio-items span {
        font-size: 0.8rem;
    }
    
    .guerra-como-participar span {
        font-size: 0.85rem;
        padding: 4px 14px;
    }
    
    .guerra-countdown-superior span {
        font-size: 1.4rem;
    }
    
    .guerra-imagem-inferior img {
        height: 350px;
    }
    
    .guerra-texto-superior {
        padding: 30px 16px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title .gradient-text,
    .hero-title .gradient-purple {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .sobre-text {
        padding: 16px;
    }

    .sobre-text p {
        font-size: 0.95rem;
    }

    .guerra-texto-superior h2 {
        font-size: 1.8rem;
    }
    
    .guerra-descricao {
        font-size: 0.85rem;
    }
    
    .guerra-detalhes-superior span {
        font-size: 0.7rem;
        padding: 3px 8px;
        gap: 4px;
    }
    
    .premio-items {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .premio-items span {
        font-size: 0.75rem;
    }
    
    .guerra-como-participar span {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .guerra-countdown-superior span {
        font-size: 1rem;
    }
    
    .guerra-imagem-inferior img {
        height: 250px;
    }
    
    .guerra-texto-superior {
        padding: 20px 12px 16px;
    }
}
