/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Minimalistas Modernas */
    --primary-accent: #6366F1;
    --primary-accent-hover: #4F46E5;
    --secondary-accent: #8B5CF6;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --dark-bg: #0F0F23;
    --darker-bg: #0A0A1A;
    --light-bg: #1A1A2E;
    --card-bg: #16213E;
    --text-white: #FFFFFF;
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-dark: #1E293B;
    --gradient-primary: linear-gradient(135deg, #6366F1, #8B5CF6);
    --gradient-dark: linear-gradient(135deg, #0F0F23, #1A1A2E);
    --gradient-card: linear-gradient(135deg, #16213E, #0F0F23);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 0 30px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        rgba(99, 102, 241, 0.05) 100%);
    z-index: -1;
}

/* Estilos específicos para o site principal */
.site-nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0 10px;
    height: 100%;
    width: 100%;
    gap: 0;
}

.site-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.site-nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    height: 100%;
    position: relative;
    flex: 1;
    justify-content: space-between;
    margin: 0;
}

.site-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1rem;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    flex: 1;
    min-width: 120px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 0;
}

/* Menu centralizado para páginas independentes */
.pages-nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    height: 100%;
    position: relative;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.pages-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1rem;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    min-width: 120px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 0;
}

/* Efeitos de hover para páginas independentes */
.pages-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.pages-nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(139, 92, 246, 0.05)
    );
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scale(0.95);
}

.pages-nav-link:hover::before {
    left: 100%;
}

.pages-nav-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

.pages-nav-link:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: var(--gradient-primary);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pages-nav-link.active {
    color: var(--text-white);
    background: var(--gradient-primary);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.pages-nav-link.active::before {
    display: none;
}

.pages-nav-link.active::after {
    display: none;
}

.site-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 20px;
    flex-shrink: 0;
}

.site-account-btn {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-width: 140px;
    flex: 0 1 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Efeitos de reflexo modernos para o site principal */
.site-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.site-nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(139, 92, 246, 0.05)
    );
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scale(0.95);
}

.site-nav-link:hover::before {
    left: 100%;
}

.site-nav-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

.site-nav-link:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: var(--gradient-primary);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-nav-link.active {
    color: var(--text-white);
    background: var(--gradient-primary);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.site-nav-link.active::before {
    display: none;
}

.site-nav-link.active::after {
    display: none;
}

.site-account-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.5), 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.site-account-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scale(0.95);
}

.site-account-btn:hover::before {
    left: 100%;
}

.site-account-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.site-account-btn:hover {
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(99, 102, 241, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-accent-hover), var(--secondary-accent));
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Seletor de Idiomas */
.language-selector {
    position: relative;
    margin-right: 20px;
    z-index: 10000;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    justify-content: center;
}

.language-btn:hover {
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.5);
    transform: translateY(-1px);
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(128, 128, 128, 0.4);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 60px;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(128, 128, 128, 0.15);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 50px;
}

.language-option:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:hover {
    background: rgba(128, 128, 128, 0.15);
    transform: translateX(2px);
}

.language-option.active {
    background: rgba(218, 243, 55, 0.2);
    font-weight: 600;
    color: var(--text-dark);
}

/* Efeito de brilho sutil no header */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(128, 128, 128, 0.03), 
        rgba(160, 160, 160, 0.05), 
        rgba(128, 128, 128, 0.03), 
        transparent
    );
    animation: headerGlow 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes headerGlow {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 0.3;
    }
}

.navbar {
    padding: 0;
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    width: 100%;
    gap: 40px;
}

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


.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: none;
    position: relative;
    transition: var(--transition);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.1),
            0 0 5px rgba(128, 128, 128, 0.2);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.1),
            0 0 8px rgba(160, 160, 160, 0.3);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    height: 100%;
    position: relative;
    flex: 1;
    justify-content: flex-start;
    margin-left: 20px;
}

/* Efeito de brilho sutil no menu */
.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(128, 128, 128, 0.05), 
        rgba(160, 160, 160, 0.08), 
        rgba(128, 128, 128, 0.05), 
        transparent
    );
    animation: menuGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes menuGlow {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 0.5;
    }
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1rem;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    min-width: 120px;
    flex: 0 1 auto;
    margin: 0;
    border: 1px solid transparent;
}

/* Efeito de reflexo moderno */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

/* Efeito de fundo sutil */
.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(139, 92, 246, 0.05)
    );
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scale(0.95);
}


.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: var(--gradient-primary);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link.active {
    color: var(--text-white);
    background: var(--gradient-primary);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link.active::before {
    display: none;
}

.nav-link.active::after {
    display: none;
}


.nav-actions {
    display: flex;
    align-items: center;
    min-width: 120px;
    justify-content: flex-end;
    margin-left: auto;
}

.account-panel-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2, #1565C0);
    background-size: 200% 200%;
    color: var(--text-white);
    padding: 0 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(33, 150, 243, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-width: 200px;
    flex: 1 1 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Animação pulsante */
@keyframes pulseGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 
            0 8px 25px rgba(33, 150, 243, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 
            0 12px 35px rgba(33, 150, 243, 0.6),
            0 6px 18px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

/* Efeito de reflexo brilhante */
.account-panel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.7), 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

/* Efeito de fundo com gradiente animado */
.account-panel-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.05),
        rgba(33, 150, 243, 0.1)
    );
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(0.9);
    border-radius: 6px;
}

.account-panel-btn:hover::before {
    left: 100%;
}

.account-panel-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.account-panel-btn:hover {
    color: var(--text-white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(33, 150, 243, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #42A5F5, #2196F3, #1976D2);
    background-size: 200% 200%;
    border-color: rgba(255, 255, 255, 0.5);
    animation-play-state: paused;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Efeito de clique */
.account-panel-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(33, 150, 243, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    background-image: url('../images/backgroundwarg1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.8) 0%, 
        rgba(26, 26, 46, 0.6) 50%, 
        rgba(15, 15, 35, 0.9) 100%);
    z-index: 1;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 2;
}

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


.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-main-logo {
    height: 400px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.8));
    transition: var(--transition);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.hero-main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.9));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.8));
    }
    100% {
        filter: drop-shadow(0 12px 40px rgba(99, 102, 241, 0.6));
    }
}

.hero-subtitle {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.play-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2, #1565C0);
    background-size: 200% 200%;
    color: var(--text-white);
    padding: 25px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 12px 30px rgba(33, 150, 243, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulseGlowCTA 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlowCTA {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 
            0 12px 30px rgba(33, 150, 243, 0.4),
            0 6px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 
            0 18px 45px rgba(33, 150, 243, 0.6),
            0 8px 20px rgba(0, 0, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.03);
    }
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: var(--transition);
    border-radius: 12px;
    z-index: -1;
}

.play-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(25, 118, 210, 0.3));
    border-radius: 14px;
    opacity: 0;
    transition: var(--transition);
    z-index: -2;
}

.play-btn:hover::before {
    opacity: 1;
}

.play-btn:hover::after {
    opacity: 1;
}

.play-btn:hover {
    color: var(--text-white);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(33, 150, 243, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #42A5F5, #2196F3, #1976D2);
    background-size: 200% 200%;
    border-color: rgba(255, 255, 255, 0.5);
    animation-play-state: paused;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.play-btn:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(33, 150, 243, 0.5),
        0 7px 18px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.play-btn .play-icon {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.play-btn:hover .play-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.watch-btn {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.watch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: var(--border-radius-lg);
}

.watch-btn:hover::before {
    opacity: 1;
}

.watch-btn:hover {
    color: var(--text-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.1);
}

.watch-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.server-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.server-stats {
    display: flex;
    gap: 2.5rem;
    background: var(--gradient-card);
    padding: 2rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: 2rem;
    background: var(--gradient-card);
    padding: 3rem 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    position: relative;
    min-width: 80px;
}

.countdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.countdown-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(22, 33, 62, 0.8);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(218, 243, 55, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 243, 55, 0.3);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-icon svg {
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

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

.feature-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(218, 243, 55, 0.1);
    border: 1px solid rgba(218, 243, 55, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #DDAF37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.feature-item:hover .feature-badge {
    background: rgba(218, 243, 55, 0.2);
    border-color: rgba(218, 243, 55, 0.5);
    transform: scale(1.05);
}

/* Classes Section */
.classes-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.classes-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.classes-text {
    flex: 1;
}

.classes-wolf-image {
    flex: 0 0 auto;
    position: relative;
}

.wolf-side-image {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
    animation: wolfFloat 6s ease-in-out infinite;
}

.wolf-side-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

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

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Responsividade para a imagem do lobo */
@media (max-width: 768px) {
    .classes-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .wolf-side-image {
        max-width: 300px;
    }
}

.class-item {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.class-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.class-video {
    height: 200px;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.youtube-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
    pointer-events: none;
    overflow: hidden;
    position: relative;
}

/* Overlay para esconder informações do YouTube */
.class-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--darker-bg);
    z-index: 10;
    border-radius: var(--border-radius);
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

/* Remove o overlay quando o vídeo carrega */
.class-video.loaded::after {
    opacity: 0;
    visibility: hidden;
}

.class-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.class-video:hover .class-image {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(218, 243, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.video-overlay:hover {
    background: var(--gradient-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.class-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gold);
    margin: 1.5rem 1.5rem 1rem;
}

.class-item p {
    color: var(--text-muted);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Adventure Section */
.adventure-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.adventure-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.adventure-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(22, 33, 62, 0.8);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.adventure-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(218, 243, 55, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.adventure-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 243, 55, 0.3);
}

.adventure-item:hover::before {
    opacity: 1;
}

.adventure-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.adventure-icon svg {
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.adventure-item:hover .adventure-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

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

.adventure-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.adventure-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.adventure-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(218, 243, 55, 0.1);
    border: 1px solid rgba(218, 243, 55, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #DDAF37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.adventure-item:hover .adventure-badge {
    background: rgba(218, 243, 55, 0.2);
    border-color: rgba(218, 243, 55, 0.5);
    transform: scale(1.05);
}



/* Stages Section */
.stages-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.stages-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stage-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(22, 33, 62, 0.8);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(218, 243, 55, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 243, 55, 0.3);
}

.stage-item:hover::before {
    opacity: 1;
}

.stage-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.stage-icon svg {
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stage-item:hover .stage-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

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

.stage-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.stage-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.stage-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(218, 243, 55, 0.1);
    border: 1px solid rgba(218, 243, 55, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #DDAF37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.stage-item:hover .stage-badge {
    background: rgba(218, 243, 55, 0.2);
    border-color: rgba(218, 243, 55, 0.5);
    transform: scale(1.05);
}

/* Responsive Design for Stages */
@media (max-width: 768px) {
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stages-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .stage-item {
        padding: 1.5rem;
    }
    
    .stage-number {
        font-size: 1.25rem;
    }
    
    .stage-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stages-title {
        font-size: 1.75rem;
    }
    
    .stage-item {
        padding: 1.25rem;
    }
}

/* Ranking Section */
.ranking-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.ranking-container {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(218, 243, 55, 0.2);
}

.ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(218, 243, 55, 0.3);
    color: var(--text-muted);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-color: var(--text-gold);
}

.ranking-table {
    display: none;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(218, 243, 55, 0.1);
}

.ranking-table.active {
    display: block;
}

.ranking-header {
    display: grid;
    grid-template-columns: 60px 1fr 80px 120px 100px 80px;
    gap: 1rem;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    align-items: center;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.ranking-body {
    background: transparent;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    min-height: 400px;
    max-height: none;
    overflow-y: visible;
}

.ranking-row {
    display: grid !important;
    grid-template-columns: 60px 1fr 80px 120px 100px;
    gap: 1rem;
    align-items: center;
    padding: 15px 20px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--text-white);
    font-size: 1rem;
}

.ranking-row:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2) !important;
}

/* Layouts específicos para cada tipo de ranking */

/* LEVEL RANKING - 5 colunas: Posição, Nome, Nível, Classe, Status */
#level-ranking .ranking-header,
#level-ranking .ranking-row {
    grid-template-columns: 60px 1fr 80px 120px 100px;
}

/* PVP RANKING - 5 colunas: Posição, Nome, Nível, Abates, Status */
#pvp-ranking .ranking-header,
#pvp-ranking .ranking-row {
    grid-template-columns: 60px 1fr 80px 100px 100px;
}

/* COMBAT RANKING - 6 colunas: Posição, Nome, Nível, Combat Power, Classe, Status */
#combat-ranking .ranking-header,
#combat-ranking .ranking-row {
    grid-template-columns: 60px 1fr 80px 120px 120px 100px;
}

/* CLAN RANKING - 4 colunas: Posição, Nome do Clã, Nível, Membros */
#clan-ranking .ranking-header,
#clan-ranking .ranking-row {
    grid-template-columns: 60px 1fr 80px 100px;
}

/* ADENA RANKING - 5 colunas: Posição, Nome, Nível, Adena, Status */
#adena-ranking .ranking-header,
#adena-ranking .ranking-row {
    grid-template-columns: 60px 1fr 80px 120px 100px;
}

.ranking-row:nth-child(1) {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

.ranking-row:nth-child(2) {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    font-weight: 500;
}

.ranking-row:nth-child(3) {
    background: rgba(205, 127, 50, 0.08);
    border-color: rgba(205, 127, 50, 0.2);
    font-weight: 500;
}

/* Estilos específicos para elementos das linhas de ranking */
.ranking-row .rank {
    font-weight: 700;
    font-size: 1.1rem;
    color: #6366f1;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ranking-row .player-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ranking-row .level {
    font-weight: 600;
    color: #10b981;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ranking-row .class {
    font-weight: 500;
    color: #f59e0b;
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 0.9rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ranking-row .clan {
    font-weight: 500;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ranking-row .clan.offline {
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ranking-row .clan.online {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Estilos específicos para elementos de ranking */

/* Combat Power */
.ranking-row .combat-power {
    font-weight: 600;
    color: #8b5cf6;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Kills (PvP) */
.ranking-row .kills {
    font-weight: 600;
    color: #dc2626;
    text-align: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Members (Clan) */
.ranking-row .members {
    font-weight: 600;
    color: #059669;
    text-align: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(5, 150, 105, 0.1));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(5, 150, 105, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Adena */
.ranking-row .adena {
    font-weight: 600;
    color: #f59e0b;
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Final CTA Section */
.final-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #161e3e 0%, #1a2447 50%, #1e2a50 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.final-cta-section .section-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(218, 243, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition);
}

.footer-logo-image:hover {
    filter: brightness(1.3) drop-shadow(0 4px 8px rgba(218, 243, 55, 0.3));
    transform: scale(1.05);
}

.footer-section p,
.footer-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--text-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 243, 55, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Botão Flutuante para Topo */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(33, 150, 243, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(33, 150, 243, 0.6),
        0 6px 18px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #42A5F5, #2196F3);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(33, 150, 243, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.scroll-icon {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.scroll-to-top:hover .scroll-icon {
    transform: translateY(-2px);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-radius: 0;
        gap: 1rem;
        display: flex;
        height: auto;
        border-top: 1px solid rgba(99, 102, 241, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        margin: 0 1rem;
        border-radius: var(--border-radius);
        height: 50px;
        padding: 12px 20px;
        background: transparent;
        color: var(--text-primary);
        border: 1px solid transparent;
    }
    
    .nav-link:hover {
        background: var(--gradient-primary);
        color: var(--text-white);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-main-logo {
        height: 300px;
        max-width: 900px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .play-btn,
    .watch-btn {
        padding: 20px 35px;
        font-size: 1.1rem;
        min-width: 200px;
    }
    
    .final-cta-section .section-title {
        font-size: 2.5rem;
    }
    
    .final-cta-section .section-description {
        font-size: 1.1rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-icon {
        width: 20px;
        height: 20px;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2.5rem 3rem;
        margin-top: 2rem;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .countdown-item:not(:last-child)::after {
        display: none;
    }

    .account-panel-btn {
        height: 50px;
        padding: 12px 20px;
        margin: 0 1rem;
        border-radius: var(--border-radius);
        background: var(--gradient-primary);
        color: var(--text-white);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .language-selector {
        margin-right: 10px;
    }
    
    .language-btn {
        min-width: 50px;
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .language-dropdown {
        width: 50px;
        z-index: 10001;
    }
    
    .server-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .server-stats {
        justify-content: center;
    }
    
    .countdown {
        justify-content: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .classes-grid,
    .adventure-features,
    .all-features-grid,
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
    
    .ranking-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .ranking-header,
    .ranking-row {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-main-logo {
        height: 250px;
        max-width: 750px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .ranking-header,
    .ranking-row {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem;
    }
    
    .uptime-counter {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2.5rem 3rem;
        margin-top: 1.5rem;
    }
    
    .uptime-value {
        font-size: 3rem;
    }
    
    .uptime-label {
        font-size: 0.9rem;
    }
    
    .uptime-item:not(:last-child)::after {
        display: none;
    }
    
    .live-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .server-live-badge {
        padding: 12px 30px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .live-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .server-live-badge {
        padding: 10px 20px;
        gap: 6px;
    }
    
    .live-icon {
        width: 10px;
        height: 10px;
    }
    
    .uptime-counter {
        gap: 1rem;
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .uptime-value {
        font-size: 2.5rem;
    }
    
    .uptime-label {
        font-size: 0.8rem;
    }
}

/* Server Live Badge and Uptime Counter */
.server-live-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.3));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 16px 40px;
    border: 2px solid rgba(16, 185, 129, 0.5);
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    animation: serverLivePulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.server-live-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes serverLivePulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(16, 185, 129, 0.3),
            0 4px 16px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(16, 185, 129, 0.5),
            0 6px 20px rgba(0, 0, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(16, 185, 129, 0.8);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.live-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 
        0 0 10px rgba(16, 185, 129, 0.8),
        0 0 20px rgba(16, 185, 129, 0.5),
        0 0 30px rgba(16, 185, 129, 0.3);
    animation: liveIconPulse 1.5s ease-in-out infinite;
}

@keyframes liveIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.live-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.uptime-counter {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.6), rgba(26, 26, 46, 0.8));
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    justify-content: center;
    margin-top: 2rem;
}

.uptime-item {
    text-align: center;
    position: relative;
    min-width: 80px;
}

.uptime-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.uptime-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.uptime-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
 
 / *   M o d a l   d e   D o w n l o a d   * / 
 
 