:root {
    --bg-deep: #07070d;
    --bg-dark: #0c0c18;
    --bg-card: rgba(18, 18, 30, 0.85);
    --bg-card-solid: #12121e;

    --neon: #00ff88;
    --neon-glow: rgba(0, 255, 136, 0.25);
    --orange: #ff6b35;
    --gold: #ffd700;

    --text: #f0f0f5;
    --text-dim: #8888a0;
    --text-muted: #555570;

    --glass: rgba(7, 7, 13, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-glow: rgba(0, 255, 136, 0.15);

    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.08);

    --radius: 20px;
    --radius-sm: 12px;

    --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

.site-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.site-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(7, 7, 13, 0.65);
    z-index: -1;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 3px; }

::selection { background: var(--neon); color: var(--bg-deep); }

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

/* ============================
   UTILITIES
   ============================ */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--neon);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 680px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.4rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--glass-border-glow);
}

.btn-outline:hover {
    border-color: var(--neon);
    background: rgba(0, 255, 136, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon), #00cc6a);
    color: var(--bg-deep);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.35);
}

.btn-pulse {
    animation: pulseBtn 2.5s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 60px rgba(0, 255, 136, 0.45), 0 0 90px rgba(0, 255, 136, 0.15); }
}

.sobre, .downloads, .novidades, .mods-free, .video-tutorial, .galeria, .parceiros, .contato {
    border-bottom: 1px solid var(--glass-border);
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.glass-glow {
    border-color: var(--glass-border-glow);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* ============================
   HEADER
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(7, 7, 13, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.4rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 900;
    font-size: 1.15rem;
}

.logo img {
    height: 30px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.15));
}

.logo img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.35));
    transform: scale(1.04);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-menu a.active {
    color: var(--neon);
    background: rgba(0, 255, 136, 0.06);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

#hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

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

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(7, 7, 13, 0.8) 0%,
        rgba(7, 7, 13, 0.4) 40%,
        rgba(7, 7, 13, 0.3) 60%,
        rgba(7, 7, 13, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 92%;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero-content h1 .line1 {
    display: block;
    color: var(--text);
}

.hero-content h1 .line2 {
    display: block;
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   SOBRE
   ============================ */
.sobre {
    background: rgba(7, 7, 13, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sobre .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-left {
    padding-right: 20px;
}

.sobre-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--glass-border-glow);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4px;
}

.stat-card .label {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================
   DOWNLOADS
   ============================ */
.downloads {
    background: rgba(7, 7, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.downloads .container {
    text-align: center;
}

.download-card-wrap {
    max-width: 640px;
    margin: 50px auto 0;
    position: relative;
}

.download-card-wrap::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px;
    right: -3px; bottom: -3px;
    background: linear-gradient(135deg, var(--neon), transparent, var(--gold), transparent);
    border-radius: calc(var(--radius) + 3px);
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
    background-size: 300% 300%;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; opacity: 0.6; }
    50% { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.6; }
}

.download-card {
    background: var(--bg-card-solid);
    border-radius: var(--radius);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.version-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.download-card p {
    color: var(--text-dim);
    margin: 1.5rem 0 0;
    line-height: 1.7;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.download-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.download-features i {
    color: var(--neon);
}

/* ============================
   NOVIDADES (timeline)
   ============================ */
.novidades {
    background: rgba(7, 7, 13, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.novidades .container {
    text-align: center;
}

.news-timeline {
    display: grid;
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.news-timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    padding: 30px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.news-timeline-item:hover {
    border-color: var(--glass-border-glow);
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.news-timeline-item .date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 70px;
    padding: 12px 8px;
    background: rgba(0, 255, 136, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.news-timeline-item .date-badge .day {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon);
    line-height: 1.2;
}

.news-timeline-item .date-badge .month {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-timeline-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ============================
   MODS FREE
   ============================ */
.mods-free {
    background: rgba(7, 7, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.mods-free .container {
    text-align: center;
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.mod-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    display: block;
}

.mod-card:hover {
    border-color: var(--glass-border-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mod-card .mod-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: rgba(0, 255, 136, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon);
    transition: var(--transition);
}

.mod-card:hover .mod-icon {
    background: rgba(0, 255, 136, 0.12);
    transform: scale(1.1) rotate(-5deg);
}

.mod-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.mod-card span {
    font-size: 0.8rem;
    color: var(--neon);
    font-weight: 600;
}

/* ============================
   VIDEO
   ============================ */
.video-tutorial {
    background: rgba(7, 7, 13, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.video-tutorial .container {
    text-align: center;
}

.video-frame {
    max-width: 850px;
    margin: 50px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border-glow);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.06);
}

.video-frame > div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ============================
   GALERIA
   ============================ */
.galeria {
    background: rgba(7, 7, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.galeria .container {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 11;
}

.gallery-item:nth-child(2) {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(7, 7, 13, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item .gallery-overlay i {
    font-size: 2rem;
    color: var(--text);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    background: rgba(7, 7, 13, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 92%;
    max-height: 90%;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
    animation: lightboxIn 0.35s ease;
    object-fit: contain;
}

@keyframes lightboxIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 25px; right: 30px;
    color: var(--text);
    font-size: 2.8rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    background: none;
    border: none;
    line-height: 1;
    z-index: 10;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon);
    color: var(--neon);
    transform: scale(1.05);
}

/* ============================
   PARCEIROS
   ============================ */
.parceiros {
    background: rgba(7, 7, 13, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.parceiros .container {
    text-align: center;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 50px;
    align-items: center;
    margin-top: 50px;
}

.partner-item {
    text-decoration: none;
}

.partner-item img {
    max-width: 130px;
    height: auto;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.5;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.12);
}

/* ============================
   CONTATO
   ============================ */
.contato {
    background: rgba(7, 7, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.contato .container {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--glass-border-glow);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-item .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: rgba(0, 255, 136, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--neon);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(0, 255, 136, 0.12);
    transform: scale(1.1);
}

.contact-item a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    word-break: break-all;
}

.contact-item:hover a { color: var(--neon); }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding: 70px 0 50px;
    text-align: left;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    max-width: 320px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--neon);
    border-color: var(--neon);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.12);
}

.footer h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom span {
    color: var(--neon);
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border-glow);
    color: var(--neon);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    box-shadow: var(--shadow-card);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#back-to-top:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-70px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(70px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 0.8s ease; }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 992px) {
    .sobre .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mods-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(2) { grid-row: auto; aspect-ratio: 16/11; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(7, 7, 13, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: 100%;
        height: 100vh;
        transition: left 0.4s ease;
        padding: 100px 20px 40px;
        gap: 0.3rem;
        justify-content: flex-start;
        align-items: center;
    }

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

    .nav-menu a {
        font-size: 1.15rem;
        padding: 0.9rem 1.5rem;
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .sobre-right { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 22px 16px; }
    .stat-card .number { font-size: 1.6rem; }

    .mods-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .contact-grid { grid-template-columns: 1fr; max-width: 400px; }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-brand-desc { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-links { align-items: center; }

    .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

    .container { padding: 70px 0; }

    .news-timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .news-timeline-item .date-badge {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .mods-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .sobre-right { grid-template-columns: 1fr; }
    .download-card { padding: 35px 20px; }
    .download-features { gap: 15px; flex-direction: column; align-items: center; }
}

/* ============================
   ADMIN
   ============================ */
.admin-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-dark));
}

.login-box {
    background: var(--bg-card-solid);
    padding: 45px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border-glow);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    width: 90%;
    max-width: 400px;
}

.login-box h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-box input {
    width: 100%;
    padding: 14px 18px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.login-box input:focus {
    outline: none;
    border-color: var(--neon);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.login-box button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--neon), #00cc6a);
    color: var(--bg-deep);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.login-box button:hover {
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.error { color: #ff4444; margin-bottom: 15px; }

.admin-panel { background: var(--bg-deep); min-height: 100vh; }

.admin-header {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--glass-border-glow);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-logout {
    color: var(--text-dim);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 9px 20px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-logout:hover {
    background: rgba(255, 68, 68, 0.12);
    border-color: #ff4444;
    color: #ff4444;
}

.admin-main {
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-card-solid);
    padding: 45px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.admin-form h2 {
    margin-top: 45px;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-form h2:first-of-type { margin-top: 0; }
.admin-form h2::after { display: none; }

.admin-form label {
    display: block;
    margin: 22px 0 8px;
    font-weight: 600;
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.admin-form input, .admin-form textarea {
    width: 100%;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.admin-form input:focus, .admin-form textarea:focus {
    outline: none;
    border-color: var(--neon);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.admin-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-save {
    background: linear-gradient(135deg, var(--neon), #00cc6a);
    color: var(--bg-deep);
    border: none;
    padding: 16px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-top: 45px;
    width: 100%;
    transition: var(--transition);
}

.btn-save:hover {
    box-shadow: 0 0 45px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.news-group {
    border-left: 3px solid var(--glass-border-glow);
    padding-left: 24px;
    margin: 35px 0;
}

.news-group h3 {
    color: var(--neon);
    margin: 28px 0 16px;
    font-size: 1.15rem;
}

.admin-form input[type="file"] {
    background: transparent;
    padding: 10px 0;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.success-msg {
    background: rgba(0, 255, 136, 0.08);
    color: var(--neon);
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    font-weight: 600;
}

.error-msg {
    background: rgba(255, 68, 68, 0.08);
    color: #ff4444;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
    font-weight: 600;
}
