* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    background: var(--bg-dark);
}

body.loading {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(var(--bg-dark-rgb), 0.8) 100%);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-duel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    perspective: 1000px;
}

.preloader-logo {
    width: 180px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: all 0.5s ease;
}

.preloader-logo.ice {
    animation: fadeInScale 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards, floatingLogo 4s ease-in-out infinite 1.5s;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #e2c28a);
    animation: fillLoader 2.5s ease-in-out forwards;
}

.preloader-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

@keyframes fillLoader {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 5px;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(var(--bg-dark-rgb), 0.85);
    backdrop-filter: blur(10px); /* Reduzido de 20px para 10px */
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.12);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    will-change: padding, background;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 15px var(--primary-glow));
    transform: scale(1.05);
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--primary-glow);
    transition: all 0.3s ease;
}

.nav-logo:hover .brand-text {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow), 0 0 30px rgba(var(--primary-rgb), 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.btn-nav-panel {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 4px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-nav-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
    background: var(--primary-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.bg-fixed-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.bg-image,
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-image {
    background-size: cover;
    background-position: center;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) grayscale(0.1);
    transform: translateZ(0); /* Hardware Acceleration */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(var(--bg-dark-rgb), 0.4), rgba(var(--bg-dark-rgb), 0.8), var(--bg-dark));
    z-index: 1;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

section {
    padding: 120px 0;
    position: relative;
    background: rgba(var(--bg-dark-rgb), 0.85);
    backdrop-filter: blur(8px); /* Reduzido de 15px para 8px para melhor performance */
    z-index: 5;
    will-change: transform, opacity;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 15px var(--primary-glow);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-dim);
}

.section-combined {
    padding: 100px 0;
}

.info-main {
    max-width: 1000px;
    margin: 0 auto;
}

.info-nested-classes {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.08);
}

.subsection-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}


@media (min-width: 1200px) {
    .info-grid-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 60px;
    }

    .info-main,
    .info-classes {
        width: 100%;
        flex: none;
    }
}

.section-hero {
    min-height: 85vh;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 17, 21, 0.1) 0%, rgba(15, 17, 21, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}



.hero-title {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px var(--primary-glow));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 45px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
    background: rgba(var(--primary-rgb), 0.15);
    color: #fff;
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-discord {
    padding: 18px 45px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s ease;
    background: #5865F2;
    /* Solid Discord Color */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-discord i {
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--primary-glow);
    background: var(--primary-light);
    color: #000;
}

.btn-secondary:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865f2;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(var(--bg-dark-rgb), 0.85);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
    z-index: 11;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    margin: 10px auto 30px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-badge.online {
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.4);
}

.status-badge.offline {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.4);
}

.status-badge.online .status-dot {
    background: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

.status-badge.offline .status-dot {
    background: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
}

.status-badge.online .status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: statusPulse 2s infinite;
}

.server-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.4);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(var(--primary-rgb), 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.feature-content {
    text-align: left;
}

.feature-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-value {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.classes-description {
    text-align: center;
    color: rgba(255, 200, 150, 0.75);
    font-size: 13px;
    line-height: 1.7;
    max-width: 700px;
    margin: 10px auto 0;
    padding: 0 10px;
}

.classes-horizontal-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px auto 0;
    padding: 24px;
    max-width: 860px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.class-item-mini {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    width: 80px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.class-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.class-item-mini:hover .class-icon-wrapper {
    background: rgba(var(--primary-rgb), 0.25);
    border-color: var(--primary);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 22px var(--primary-glow);
    z-index: 10;
}

.class-name-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(255, 200, 150, 0.85);
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
    word-break: break-word;
    transition: color 0.3s ease;
}

.class-item-mini:hover .class-name-label {
    color: #fff;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.9);
}

.class-icon-mini {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    border-radius: 10px;
}

.class-item-mini:hover .class-icon-mini {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.8));
}

.class-hover-preview {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-rgb), 0.15);
    overflow: hidden;
    text-align: center;
}

.class-item-mini:hover .class-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.preview-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    z-index: 1;
}

.preview-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.class-item-mini:hover .preview-img {
    transform: scale(1.1) translateY(-5px);
}

.preview-content {
    position: relative;
    z-index: 5;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.preview-cta {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.class-hover-preview::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(var(--primary-rgb), 0.3) transparent transparent transparent;
}

.section-downloads {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
}

.text-center {
    text-align: center;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.download-card {
    display: flex;
    flex-direction: column;
    width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.dl-card-content {
    padding: 40px 30px;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.dl-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.download-card:hover .dl-icon {
    transform: scale(1.1);
}

.download-card.google {
    --dl-color: #4285F4;
}

.download-card.mega {
    --dl-color: #ff0000;
}

.download-card.mediafire {
    --dl-color: #0070f3;
}

.download-card.torrent {
    --dl-color: #34A853;
}

.download-card .dl-icon i {
    color: var(--dl-color, var(--primary));
    filter: drop-shadow(0 0 15px var(--dl-color, var(--primary)));
}

.dl-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.inline-classes-display {
    background: radial-gradient(circle at 30% 30%, rgba(var(--primary-rgb), 0.05), transparent),
        linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
    margin: 40px auto;
    padding: 0;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    width: 100%;
    max-width: 1200px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.three-col-layout {
    display: flex;
    flex-direction: row;
    min-height: 520px;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    gap: 0;
}

.modal-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mod-left,
.mod-right {
    flex: 1;
    max-width: 380px;
    background: linear-gradient(135deg, rgba(25, 20, 15, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    position: relative;
    z-index: 10;
    padding: 30px;
    border-right: 1px solid rgba(var(--primary-rgb), 0.15);
}

.mod-right {
    border-right: none;
    border-left: 1px solid rgba(var(--primary-rgb), 0.15);
}

.mod-center {
    flex: 1.5;
    position: relative;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
    z-index: 5;
}

.mod-center::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    opacity: 0.6;
    animation: aura-pulse 4s infinite alternate ease-in-out;
    z-index: -1;
}

.mod-center img {
    width: auto;
    max-width: 120%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
    animation: hero-float 6s infinite ease-in-out;
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    text-shadow: 0 0 10px var(--primary-glow);
}

.modal-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
}

.modal-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.modal-stats {
    width: 100%;
}

.stats-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 8px var(--primary-glow);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.stat-icon {
    display: none;
}

.stat-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.stat-bar-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    width: 100%;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--primary);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.6);
}

.info-item {
    padding: 0;
    border: none;
    background: transparent;
    transition: none;
    margin-bottom: 5px;
}

.info-item:hover {
    transform: none;
    border-color: transparent;
}

.info-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-item h4 i {
    display: none;
}

.info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.pros h4 {
    color: #2ecc71;
}

.cons h4 {
    color: #e74c3c;
}

.info-nested-classes {
    margin-bottom: 80px;
    text-align: center;
}

.subsection-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--primary-glow);
}

.classes-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.race-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.race-tab {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.race-tab:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: #fff;
    border-color: rgba(var(--primary-rgb), 0.5);
}

.race-tab.active {
    background: rgba(var(--primary-rgb), 0.15);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.class-sub-tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.class-tab {
    position: relative;
    background-color: rgba(25, 20, 15, 0.8);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.class-tab-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
}

.class-tab span {
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.class-tab:hover {
    color: #fff;
    border-color: rgba(var(--primary-rgb), 0.5);
    background-color: rgba(var(--primary-rgb), 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.class-tab:hover .class-tab-icon {
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.6));
}

.class-tab.active {
    background-color: rgba(var(--primary-rgb), 0.25);
    color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px var(--primary-glow), inset 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.class-tab.active .class-tab-icon {
    filter: drop-shadow(0 0 12px var(--primary-glow));
}

.class-tab.active span {
    text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.class-nav-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(var(--bg-dark-rgb), 0.7);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 40px;
    padding: 5px;
    margin-top: -20px;
    width: 260px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.class-nav-controls .nav-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.class-nav-controls .nav-arrow:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-glow);
}

.class-nav-controls .nav-label {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .three-col-layout {
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
        max-height: 80vh;
    }

    .mod-left,
    .mod-center,
    .mod-right {
        max-width: 100%;
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(255, 106, 0, 0.15);
        padding: 30px 20px;
    }

    .mod-right {
        border-bottom: none;
    }

    .mod-center img {
        max-height: 400px;
    }

    .modal-title {
        font-size: 2.2rem;
    }
}

.dl-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dl-action {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border-top: 1px solid var(--border-glass);
    transition: background 0.3s ease;
}

.download-card:hover .dl-action {
    background: var(--dl-color, var(--primary));
    color: #fff;
}

.main-footer {
    background: var(--bg-footer);
    padding: 80px 0;
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--primary);
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--primary-glow);
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes aura-pulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* =========================================
   EVENT CALENDAR SECTION (GRID VIEW)
========================================= */
.section-eventos {
    padding: 80px 0;
    position: relative;
    background: var(--bg-footer); /* Controlled by Config */
    z-index: 5;
}

.calendar-wrapper {
    width: 100%;
    margin: 30px auto 0;
    background: transparent;
    border-radius: 8px;
    padding: 15px 0;
}

.calendar-title-container {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
    padding-bottom: 8px;
    text-align: center;
}

.calendar-month-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 4px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 1 / 1;
    position: relative;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease;
}

.calendar-day.empty {
    background: transparent;
    border-color: transparent;
}

.calendar-day:not(.empty):hover {
    background: rgba(255, 255, 255, 0.15);
}

.day-number {
    position: absolute;
    top: 3px;
    right: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.calendar-day:hover .day-number {
    color: rgba(255, 255, 255, 0.9);
}

.day-name {
    position: absolute;
    bottom: 4px;
    left: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.25);
}

.calendar-day:hover .day-name {
    color: rgba(255, 255, 255, 0.6);
}

.day-events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.event-icon-container {
    position: relative;
    font-size: 1.6rem;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-icon-container:hover {
    transform: scale(1.2) translateY(-2px);
    color: var(--primary-light, #ccc);
}

/* ---- Hover Tooltip ---- */
.ev-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(10, 12, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 12px;
    white-space: nowrap;
    font-size: 0.75rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
    text-align: center;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.event-icon-container:hover .ev-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ev-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(10, 12, 20, 0.95);
}

.ev-tooltip-tipo {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light, #aaa);
    margin-bottom: 3px;
}

/* =========================================
   EVENT MODAL
========================================= */
.event-modal-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.event-modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.event-modal-content {
    background: var(--bg-modal);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(var(--primary-rgb), 0.1);
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.event-modal-overlay.active .event-modal-content {
    transform: translateY(0);
}

.event-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.2s;
}

.event-modal-close:hover {
    color: var(--primary-light);
}

.event-modal-header {
    margin-bottom: 20px;
    padding-right: 20px;
    /* Space for close button */
}

.evento-badge {
    /* Re-using or defining here for Modal if it was lost */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 15px;
}

.evento-badge.logue-e-ganhe {
    background: var(--badge-logue);
    color: var(--stat-light);
    border-color: rgba(var(--primary-rgb), 0.4);
}

.evento-badge.rate-up {
    background: var(--badge-rate);
    color: var(--stat-gold);
    border-color: rgba(var(--primary-rgb), 0.5);
}

.evento-badge.promoca {
    background: var(--badge-promo);
    color: var(--primary);
    border-color: var(--primary);
}

.event-modal-content .evento-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.event-modal-content .evento-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-dim);
    background: rgba(var(--bg-dark-rgb), 0.6);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.evento-dates span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.evento-dates i {
    color: var(--primary-light);
}

.event-modal-content .evento-desc {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-modal-content .evento-rewards {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.evento-rewards h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evento-rewards ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evento-rewards li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.evento-rewards .rec-name {
    color: #ddd;
    font-weight: 500;
}

.evento-rewards .rec-qtd {
    color: var(--primary-light);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-main-logo {
        max-width: 280px;
        filter: drop-shadow(0 0 20px var(--primary-glow));
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-logo {
        max-height: 120px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .section-combined {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 20px;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 0.85rem;
    }

    .btn-discord {
        background: #5865F2 !important;
        opacity: 1 !important;
        box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
    }
}

/* Global Countdown & Server Status Styles */
.countdown-container {
    background: rgba(var(--bg-dark-rgb), 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin: 15px auto 25px;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.launch-info {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.uptime-label {
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-top: 5px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.time-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    min-width: 90px;
    padding: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.time-block:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.05);
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, #FFFFFF 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.time-block small {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 8px;
    display: block;
    font-weight: 700;
}

/* Celebration State */
.launch-complete {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: rgba(var(--bg-dark-rgb), 0.95) !important;
}

.launch-complete .countdown-label {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 800;
}



.server-available {
    width: 100%;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    margin-top: 10px;
}

.server-available span {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    display: block;
    text-shadow: 0 0 10px var(--primary-glow);
}




@keyframes containerPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px var(--primary-glow);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 50px var(--primary-glow);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
    }

    to {
        text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow), 0 0 60px var(--primary-glow);
    }
}

@media (max-width: 768px) {
    .timer {
        gap: 12px;
        flex-wrap: wrap;
    }

    .time-block {
        min-width: 75px;
        padding: 12px;
    }

    .time-block span {
        font-size: 1.8rem;
    }

    .countdown-container {
        padding: 20px;
        margin: 20px 15px;
    }

    .server-features {
        grid-template-columns: 1fr;
    }

    .race-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .class-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .class-nav-controls {
        width: 100%;
        max-width: 300px;
    }

    .mod-center img {
        max-height: 400px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(var(--bg-dark-rgb), 0.98);
        padding: 40px 20px;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .subsection-title {
        font-size: 1.8rem;
    }

    .mod-left,
    .mod-right,
    .mod-center {
        padding: 15px;
    }

    .mod-center img {
        max-height: 300px;
    }
}

.footer-credits {
    text-align: center;
    padding: 5px 15px;
    margin: 20px auto 0;
    display: table;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-credits:hover {
    color: var(--primary-light);
}

.footer-credits i.fa-heart {
    color: #ff4d4d;
    margin: 0 3px;
    font-size: 0.65rem;
}

.footer-credits i.fa-discord {
    margin-left: 5px;
}

.footer-credits i.fa-discord {
    margin: 0 5px;
    color: #5865F2;
    filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.4));
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* =========================================
   DOWNLOAD PAGE UNIQUE STYLES
   ========================================= */

.page-download .section-page-header {
    padding: 150px 0 60px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.page-download-logo {
    max-width: 350px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.6));
    animation: floating 4s ease-in-out infinite;
}

.page-download .page-title {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-download .page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.section-download-content {
    padding: 30px 0 60px;
    position: relative;
    z-index: 10;
}

.download-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.download-card.flex-dl {
    background: linear-gradient(145deg, rgba(var(--bg-dark-rgb), 0.9), rgba(var(--bg-dark-rgb), 0.95));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(var(--primary-rgb), 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.download-card.flex-dl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.download-card.flex-dl:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(var(--primary-rgb), 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(var(--primary-rgb), 0.2);
    background: linear-gradient(145deg, rgba(var(--bg-dark-rgb), 0.95), rgba(var(--bg-dark-rgb), 0.98));
}

.download-card.flex-dl:hover::before {
    opacity: 1;
}

.download-card.flex-dl .dl-icon {
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    padding: 15px 0 5px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3));
    z-index: 2;
}

.download-card.flex-dl:hover .dl-icon {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(var(--primary-rgb), 0.6));
}

.download-card.flex-dl .dl-info {
    text-align: center;
    padding: 0 20px 25px;
    flex: 1;
    z-index: 2;
}

.download-card.flex-dl .dl-name {
    display: block;
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    margin-bottom: 2px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.download-card.flex-dl .dl-desc {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.download-card.flex-dl .dl-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    z-index: 2;
    color: var(--primary-light);
}

.download-card.flex-dl:hover .dl-action {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 -5px 20px rgba(var(--primary-rgb), 0.4);
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Discord CTA in Download Page */
.dl-discord-cta {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.discord-card {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-card>i {
    font-size: 3.5rem;
    color: #fff;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.discord-text {
    flex: 1;
}

.discord-text h3 {
    font-family: 'Cinzel', serif;
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.discord-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.btn-discord-large {
    background: #fff;
    color: #5865F2;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-discord-large:hover {
    background: #f6f6f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discord-nav {
    margin-left: 10px;
}

/* Requisitos de Sistema */
.req-table-container {
    background: rgba(var(--bg-dark-rgb), 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 1000px;
}

.req-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.req-table th {
    background: rgba(var(--primary-rgb), 0.2);
    padding: 15px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 2px solid var(--primary);
}

.req-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.req-table tr:last-child td {
    border-bottom: none;
}

.req-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.req-label {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-label i {
    width: 20px;
    text-align: center;
}

.req-alerts {
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.req-alert {
    background: rgba(var(--primary-rgb), 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.req-alert i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.req-alert p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.text-warning {
    color: var(--primary);
}

/* Drivers Grid */
.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.driver-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.driver-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.driver-card img {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.driver-card:hover img {
    opacity: 1;
}

.driver-card span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .req-table,
    .req-table tbody,
    .req-table tr,
    .req-table th,
    .req-table td {
        display: block;
    }

    .req-table thead {
        display: none;
    }

    .req-table td {
        padding: 10px 15px;
        position: relative;
    }

    .req-label {
        font-size: 1.1rem;
        margin-bottom: 5px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
    }

    .req-table tr td:first-child {
        border-top: none;
        padding-top: 10px;
    }

    .discord-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
}

/* =========================================
   INFO PAGE (DEDICATED)
   ========================================= */

.page-info .section-page-header {
    padding: 150px 0 60px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.page-info .page-title {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-info .page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.section-server-info-page {
    padding: 20px 0 100px;
    position: relative;
    z-index: 10;
}

.page-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Redesigning Feature Icons to look more like premium images */
.page-features-grid .feature-box {
    background: linear-gradient(145deg, rgba(var(--bg-dark-rgb), 0.9), rgba(var(--bg-dark-rgb), 0.95));
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(197, 160, 89, 0.02), 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-features-grid .feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: inset 0 0 30px rgba(var(--primary-rgb), 0.05), 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.page-features-grid .feature-icon {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.2), rgba(var(--bg-dark-rgb), 0.8));
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.8), 0 0 20px rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(var(--primary-rgb), 0.2);
    transition: all 0.4s ease;
}

.page-features-grid .feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.4), rgba(var(--bg-dark-rgb), 0.9));
    border-color: rgba(var(--primary-rgb), 0.8);
    color: #fff;
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 1), 0 0 30px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4), inset 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.page-features-grid .feature-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.page-features-grid .feature-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.page-features-grid .feature-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Cinzel', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
 
 .highlight {
     color: var(--primary);
 }