/* ============================================
   NEXORA LK - CUSTOM STYLES
   Estilos específicos para cada sección
   ============================================ */

/* ============================================
   PARTICLES CONTAINER
   ============================================ */
.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: var(--nexora-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 15s infinite linear;
    box-shadow: 0 0 10px var(--nexora-gold);
}

.particle:nth-child(odd) {
    background: var(--nexora-blue);
    box-shadow: 0 0 10px var(--nexora-blue);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ============================================
   HEADER
   ============================================ */
.nexora-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--nexora-transition-normal);
}

.nexora-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nexora-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nexora-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nexora-logo .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--nexora-font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nexora-gold);
    letter-spacing: 3px;
    text-shadow: var(--nexora-glow-gold);
    line-height: 1;
}

.logo-sub {
    font-family: var(--nexora-font-title);
    font-size: 0.9rem;
    color: var(--nexora-blue);
    letter-spacing: 5px;
    line-height: 1;
}

/* Navegación */
.nexora-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nexora-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nexora-menu li {
    position: relative;
}

.nexora-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-family: var(--nexora-font-title);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--nexora-border-radius);
    transition: var(--nexora-transition-normal);
}

.nexora-menu a:hover,
.nexora-menu .current-menu-item a {
    color: var(--nexora-gold);
    background: rgba(212, 175, 55, 0.1);
    text-shadow: var(--nexora-glow-gold);
}

.nexora-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nexora-gradient-gold);
    transition: var(--nexora-transition-normal);
    transform: translateX(-50%);
}

.nexora-menu a:hover::after,
.nexora-menu .current-menu-item a::after {
    width: 60%;
}

/* Header Actions */
.nexora-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--nexora-transition-normal);
}

.header-btn.discord-btn {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.header-btn.discord-btn:hover {
    background: #5865F2;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.header-btn.whatsapp-btn {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.5);
}

.header-btn.whatsapp-btn:hover {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.register-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--nexora-gold);
    border-radius: var(--nexora-border-radius);
    cursor: pointer;
    gap: 6px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--nexora-gold);
    transition: var(--nexora-transition-normal);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--nexora-black);
    border-left: 1px solid var(--nexora-gold);
    z-index: 1001;
    transition: var(--nexora-transition-slow);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--nexora-gray-light);
}

.mobile-logo {
    width: 60px;
    height: 60px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--nexora-gold);
    border-radius: 50%;
    color: var(--nexora-gold);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--nexora-transition-normal);
}

.mobile-menu-close:hover {
    background: var(--nexora-gold);
    color: var(--nexora-black);
}

.mobile-nav {
    padding: 20px;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li {
    margin-bottom: 5px;
}

.mobile-menu-list a {
    display: block;
    padding: 15px;
    color: #ffffff;
    font-family: var(--nexora-font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--nexora-border-radius);
    transition: var(--nexora-transition-normal);
}

.mobile-menu-list a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--nexora-gold);
}

.mobile-menu-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--nexora-transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.nexora-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 1) 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.3"/></svg>');
    background-size: cover, 100px 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.hero-logo-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.title-line.highlight {
    color: var(--nexora-gold);
    text-shadow: var(--nexora-glow-gold-strong);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--nexora-blue);
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--nexora-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--nexora-gold);
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.nexora-stats {
    background: var(--nexora-gradient-dark);
    position: relative;
}

.nexora-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--nexora-gradient-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gray-light);
    border-radius: var(--nexora-border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--nexora-transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--nexora-gradient-gold);
    transform: scaleX(0);
    transition: var(--nexora-transition-normal);
}

.stat-card:hover {
    border-color: var(--nexora-gold);
    box-shadow: var(--nexora-glow-gold);
    transform: translateY(-5px);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 3rem;
    color: var(--nexora-gold);
    margin-bottom: 20px;
    text-shadow: var(--nexora-glow-gold);
}

.stat-number {
    font-family: var(--nexora-font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: var(--nexora-gray-light);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--nexora-gradient-gold);
    border-radius: 2px;
    transition: width 1s ease;
}

/* Factions Stats */
.factions-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: var(--nexora-gray);
    border-radius: var(--nexora-border-radius);
    border: 1px solid var(--nexora-gray-light);
}

.faction {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faction-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

.faction.alliance .faction-icon {
    background: rgba(0, 100, 255, 0.2);
    border: 2px solid #0064FF;
    color: #0064FF;
}

.faction.horde .faction-icon {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #FF0000;
    color: #FF0000;
}

.faction-info {
    display: flex;
    flex-direction: column;
}

.faction-name {
    font-family: var(--nexora-font-title);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faction.alliance .faction-name {
    color: #0064FF;
}

.faction.horde .faction-name {
    color: #FF0000;
}

.faction-count {
    font-family: var(--nexora-font-title);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.faction-vs {
    font-family: var(--nexora-font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--nexora-gold);
    text-shadow: var(--nexora-glow-gold);
}

/* ============================================
   SERVER INFO SECTION
   ============================================ */
.nexora-server-info {
    background: var(--nexora-black);
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gray-light);
    border-radius: var(--nexora-border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--nexora-transition-normal);
}

.info-card:hover {
    border-color: var(--nexora-blue);
    box-shadow: var(--nexora-glow-blue);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--nexora-blue);
    margin-bottom: 20px;
    text-shadow: var(--nexora-glow-blue);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #888888;
}

.info-value {
    font-family: var(--nexora-font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nexora-gold);
    margin: 0;
}

/* ============================================
   RATES SECTION
   ============================================ */
.nexora-rates {
    background: var(--nexora-gradient-dark);
}

.rates-container {
    max-width: 900px;
    margin: 0 auto;
}

.rates-table {
    font-size: 1.1rem;
}

.rates-table td:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rates-table td:first-child i {
    color: var(--nexora-blue);
    width: 25px;
    text-align: center;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.nexora-features {
    background: var(--nexora-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gray-light);
    border-radius: var(--nexora-border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--nexora-transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--nexora-gradient-gold);
    transform: scaleX(0);
    transition: var(--nexora-transition-normal);
}

.feature-card:hover {
    border-color: var(--nexora-gold);
    box-shadow: var(--nexora-glow-gold);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--nexora-gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--nexora-gold);
    transition: var(--nexora-transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--nexora-gold);
    color: var(--nexora-black);
    box-shadow: var(--nexora-glow-gold-strong);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #888888;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.nexora-security {
    background: var(--nexora-gradient-dark);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.security-card {
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gray-light);
    border-radius: var(--nexora-border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--nexora-transition-normal);
}

.security-card:hover {
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-5px);
}

.security-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25D366;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #25D366;
}

.status-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #25D366;
    color: var(--nexora-black);
    font-family: var(--nexora-font-title);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}

.security-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.security-card p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   CUSTOM CONTENT SECTION
   ============================================ */
.nexora-custom {
    background: var(--nexora-black);
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.custom-card {
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gray-light);
    border-radius: var(--nexora-border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--nexora-transition-normal);
}

.custom-card:hover {
    border-color: var(--nexora-blue);
    box-shadow: var(--nexora-glow-blue);
    transform: translateY(-5px);
}

.custom-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid var(--nexora-blue);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--nexora-blue);
    transition: var(--nexora-transition-normal);
}

.custom-card:hover .custom-icon {
    background: var(--nexora-blue);
    color: var(--nexora-black);
    box-shadow: var(--nexora-glow-blue-strong);
}

.custom-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.custom-card p {
    color: #888888;
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   TECHNICAL SPECS SECTION
   ============================================ */
.nexora-tech {
    background: var(--nexora-gradient-dark);
}

.tech-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.tech-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gray-light);
    border-radius: var(--nexora-border-radius);
    padding: 30px;
    transition: var(--nexora-transition-normal);
}

.tech-card:hover {
    border-color: var(--nexora-gold);
    transform: translateX(5px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--nexora-gold);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--nexora-gold);
    flex-shrink: 0;
}

.tech-content h3 {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 5px;
}

.tech-value {
    font-family: var(--nexora-font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nexora-gold);
    margin-bottom: 10px;
}

.tech-desc {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

/* Server Info Box */
.server-info-box {
    background: var(--nexora-gray);
    border: 1px solid var(--nexora-gold);
    border-radius: var(--nexora-border-radius);
    padding: 30px;
    text-align: center;
}

.server-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--nexora-gold);
}

.connection-info {
    display: flex;
    justify-content: center;
}

.connection-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--nexora-black);
    padding: 15px 25px;
    border-radius: var(--nexora-border-radius);
    border: 1px solid var(--nexora-gray-light);
}

.connection-label {
    font-family: var(--nexora-font-title);
    color: var(--nexora-blue);
    font-size: 0.9rem;
}

.connection-value {
    font-family: 'Courier New', monospace;
    color: var(--nexora-gold);
    font-size: 1rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--nexora-gold);
    color: var(--nexora-gold);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--nexora-transition-normal);
}

.copy-btn:hover {
    background: var(--nexora-gold);
    color: var(--nexora-black);
}

/* ============================================
   CTA SECTION
   ============================================ */
.nexora-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.nexora-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--nexora-gradient-gold);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: var(--nexora-glow-gold);
}

.cta-content p {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.nexora-footer {
    background: var(--nexora-black);
    border-top: 1px solid var(--nexora-gray-light);
}

.nexora-footer-top {
    padding: 80px 0 50px;
}

.nexora-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Footer About */
.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-family: var(--nexora-font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nexora-gold);
    letter-spacing: 2px;
    line-height: 1;
}

.footer-logo-sub {
    font-family: var(--nexora-font-title);
    font-size: 1rem;
    color: var(--nexora-blue);
    letter-spacing: 3px;
    line-height: 1;
}

.footer-description {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--nexora-transition-normal);
}

.social-link.discord {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.social-link.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.5);
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    border: 1px solid rgba(255, 0, 0, 0.5);
}

.social-link.twitch {
    background: rgba(145, 70, 255, 0.2);
    color: #9146FF;
    border: 1px solid rgba(145, 70, 255, 0.5);
}

.social-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Footer Links */
.footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column-title i {
    color: var(--nexora-gold);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888888;
    font-size: 0.95rem;
    transition: var(--nexora-transition-normal);
}

.footer-menu a i {
    color: var(--nexora-gold);
    font-size: 0.8rem;
}

.footer-menu a:hover {
    color: var(--nexora-gold);
    padding-left: 5px;
}

/* Server Info List */
.server-info-list {
    list-style: none;
}

.server-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--nexora-gray-light);
}

.info-label {
    color: #888888;
    font-size: 0.9rem;
}

.info-value {
    color: var(--nexora-gold);
    font-family: var(--nexora-font-title);
    font-size: 0.9rem;
}

/* Server Status Widget */
.server-status-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--nexora-gray-dark);
    border-radius: var(--nexora-border-radius);
}

.status-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.status-icon.online {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    animation: pulse 2s infinite;
}

.status-icon:not(.online) {
    background: rgba(212, 175, 55, 0.2);
    color: var(--nexora-gold);
}

.status-info {
    display: flex;
    flex-direction: column;
}

.status-label {
    color: #888888;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-value {
    font-family: var(--nexora-font-title);
    color: #ffffff;
    font-size: 1.1rem;
}

.status-value.online {
    color: #25D366;
}

/* Footer Bottom */
.nexora-footer-bottom {
    background: var(--nexora-gray-dark);
    padding: 25px 0;
    border-top: 1px solid var(--nexora-gray-light);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #888888;
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: var(--nexora-gold);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    margin-top: 5px !important;
    opacity: 0.7;
}

.footer-credits {
    color: #888888;
    font-size: 0.9rem;
}

.footer-credits i {
    color: #FF0000;
}

.footer-credits strong {
    color: var(--nexora-gold);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--nexora-gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--nexora-black);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--nexora-transition-normal);
    z-index: 999;
    box-shadow: var(--nexora-glow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--nexora-glow-gold-strong);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .nexora-header-actions .register-btn {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nexora-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nexora-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .server-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factions-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .faction-vs {
        transform: rotate(90deg);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .features-grid,
    .custom-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .server-info-grid {
        grid-template-columns: 1fr;
    }
    
    .nexora-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-logo-img {
        width: 180px;
        height: 180px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .nexora-section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nexora-header-inner {
        padding: 15px;
    }
    
    .nexora-logo .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .connection-item {
        flex-direction: column;
        gap: 10px;
    }
}
