:root {
    --bg-color: #0d0d20;
    --card-bg: rgba(15, 15, 35, 0.65);
    --card-border: rgba(233, 69, 96, 0.12);
    --primary: #e94560;
    --primary-light: #ff6b85;
    --primary-glow: rgba(233, 69, 96, 0.25);
    --accent: #f0c040;
    --accent-green: #4cdf90;
    --text-color: #e0e0ff;
    --text-muted: #8888aa;
    --success: #4cdf90;
    --navbar-bg: rgba(10, 10, 28, 0.9);
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb {
    background: rgba(233, 69, 96, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--navbar-height);
}

/* Fundo com video */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
}

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

.bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(13, 13, 32, 0.6) 0%, rgba(5, 5, 14, 0.9) 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(10, 10, 28, 0.97);
    border-bottom: 2px solid var(--primary);
}

.navbar-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    transition: transform 0.25s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.logo:hover img { transform: scale(1.05); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    vertical-align: middle;
    margin-right: 6px;
}

.mobile-link .nav-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.nav-link {
    color: #e0e0ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.8px;
}

.nav-link:hover,
.nav-link.active { color: var(--accent); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link-play { color: var(--primary) !important; }
.nav-link-play::after { background: var(--primary) !important; }
.nav-link-play:hover { color: var(--primary-light) !important; }

/* Hamburger */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 13px 11px;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.25s ease;
}

.hamburger-menu:hover,
.hamburger-menu.open {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--primary);
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: #e0e0ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-menu.open .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu Mobile Lateral */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 28, 0.98);
    border-left: 4px solid var(--primary);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu {
    background: transparent;
    border: none;
    color: #e0e0ff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    color: #e0e0ff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.25s ease;
}

.mobile-link:hover { color: var(--accent); }

.mobile-play {
    color: var(--primary) !important;
}

/* Wrapper do Conteúdo */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--navbar-height));
    padding-top: 20px;
    padding-bottom: 60px;
}

/* Card Principal */
.download-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-top: 6px solid var(--primary);
    border-radius: 20px;
    padding: 56px 40px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(233, 69, 96, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(233, 69, 96, 0.12);
}

/* Logo na Hero */
.hero-logo-title {
    margin-bottom: 24px;
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(233, 69, 96, 0.25));
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logo-pulse 4s ease-in-out infinite alternate;
}

.hero-logo:hover {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 15px 30px rgba(233, 69, 96, 0.5));
    animation-play-state: paused;
}

@keyframes logo-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 8px 16px rgba(233, 69, 96, 0.2));
    }
    100% {
        transform: scale(1.025);
        filter: drop-shadow(0 12px 28px rgba(233, 69, 96, 0.45));
    }
}

.description {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

/* Container de Ações da Hero */
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    width: 100%;
}

/* Botões da Hero */
.btn-hero-action {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.btn-hero-action:active {
    transform: translateY(2px);
}

/* Windows Action Button (Blue) */
.btn-hero-windows {
    background-color: #0078d7;
    box-shadow: 0 4px 0 #005393, 0 8px 20px rgba(0, 120, 215, 0.35);
}
.btn-hero-windows:hover {
    transform: translateY(-2px);
    background-color: #1a8cf8;
    box-shadow: 0 6px 0 #005393, 0 12px 24px rgba(0, 120, 215, 0.55);
}
.btn-hero-windows:active {
    box-shadow: 0 0px 0 #005393, 0 4px 10px rgba(0, 120, 215, 0.15);
}

/* Android Action Button (Green) */
.btn-hero-android {
    background-color: #2ebd59;
    box-shadow: 0 4px 0 #1e7d3b, 0 8px 20px rgba(46, 189, 89, 0.35);
}
.btn-hero-android:hover {
    transform: translateY(-2px);
    background-color: #38d36b;
    box-shadow: 0 6px 0 #1e7d3b, 0 12px 24px rgba(46, 189, 89, 0.55);
}
.btn-hero-android:active {
    box-shadow: 0 0px 0 #1e7d3b, 0 4px 10px rgba(46, 189, 89, 0.15);
}

/* Play Action Button (Pink) */
.btn-hero-play {
    background-color: var(--primary);
    box-shadow: 0 4px 0 #a82d40, 0 8px 20px rgba(233, 69, 96, 0.35);
    animation: btnPlayShake 0.6s ease-in-out infinite;
}
.btn-hero-play:hover {
    transform: translateY(-2px);
    background-color: var(--primary-light);
    box-shadow: 0 6px 0 #a82d40, 0 12px 24px rgba(233, 69, 96, 0.55);
    animation: none;
}
.btn-hero-play:active {
    box-shadow: 0 0px 0 #a82d40, 0 4px 10px rgba(233, 69, 96, 0.15);
}

@keyframes btnPlayShake {
    0%, 100% { transform: translateX(0); }
    15%       { transform: translateX(-2px) rotate(-0.8deg); }
    30%       { transform: translateX(2px) rotate(0.8deg); }
    45%       { transform: translateX(-1px) rotate(-0.4deg); }
    60%       { transform: translateX(1px) rotate(0.4deg); }
    75%       { transform: translateX(-0.5px); }
    90%       { transform: translateX(0.5px); }
}

.meta-info {
    font-family: monospace;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contagem de contas dentro do pill de status ONLINE */
.conta-count {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #4cdf90;
    letter-spacing: 0.3px;
    padding-left: 6px;
    margin-left: 2px;
    border-left: 1px solid rgba(76, 223, 144, 0.25);
    text-shadow: 0 0 8px rgba(76, 223, 144, 0.35);
}
.conta-count:empty { display: none; }

/* Ícones de comunidade no navbar (gaveta expansível no hover) */
.social-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}
.social-nav-btn {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 8px;
    border-radius: 17px;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition: filter .2s ease;
}
.social-nav-btn:hover { filter: brightness(1.1); }
.social-nav-btn svg { width: 18px; height: 18px; fill: #ffffff; flex-shrink: 0; }
.social-nav-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: max-width .25s ease, margin-left .25s ease;
}
.social-nav-btn:hover .social-nav-label {
    max-width: 90px;
    margin-left: 7px;
}
.social-nav-btn.dc { background-color: #5865f2; }
.social-nav-btn.wa { background-color: #25D366; }

/* Links das comunidades (WhatsApp / Discord) */
.social-links {
    margin-top: 6px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-decoration: none;
    transition: transform .15s ease;
}
.social-btn svg { width: 20px; height: 20px; fill: #ffffff; flex-shrink: 0; }
.social-btn:hover { transform: translateY(-2px); }
.social-btn:active { transform: translateY(2px); }
.social-whatsapp { background-color: #25D366; box-shadow: 0 4px 0 #1a9e4b, 0 8px 18px rgba(37, 211, 102, .3); }
.social-discord  { background-color: #5865f2; box-shadow: 0 4px 0 #3d47b8, 0 8px 18px rgba(88, 101, 242, .3); }

.dot-sep {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

/* Títulos de Seção */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-color);
}

.section-title span { color: var(--primary); }

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 15px;
    margin-bottom: 56px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 69, 96, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55), 0 0 20px rgba(233, 69, 96, 0.1);
}

.feature-card:nth-child(1) { border-top: 4px solid var(--accent-green); }
.feature-card:nth-child(2) { border-top: 4px solid var(--accent); }
.feature-card:nth-child(3) { border-top: 4px solid var(--primary); }

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.25s ease;
}

.feature-card:hover .feature-icon-wrapper { transform: scale(1.1); }

.f-green {
    background: rgba(76, 223, 144, 0.1);
    color: var(--accent-green);
    border: 2px solid rgba(76, 223, 144, 0.2);
}

.f-gold {
    background: rgba(240, 192, 64, 0.1);
    color: var(--accent);
    border: 2px solid rgba(240, 192, 64, 0.2);
}

.f-purple {
    background: rgba(233, 69, 96, 0.1);
    color: var(--primary);
    border: 2px solid rgba(233, 69, 96, 0.2);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Como Jogar (Timeline) */
.timeline-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 24px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: calc(100% - 30px);
    background: rgba(233, 69, 96, 0.2);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
    position: absolute;
    left: -14px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.25s ease;
    box-shadow: 0 0 14px rgba(233, 69, 96, 0.5);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15);
    box-shadow: 0 0 22px rgba(233, 69, 96, 0.8);
}

.timeline-content {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-green);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:nth-child(2) .timeline-content { border-left-color: var(--accent); }
.timeline-item:nth-child(3) .timeline-content { border-left-color: var(--primary); }

.timeline-item:hover .timeline-content {
    border-color: rgba(233, 69, 96, 0.2);
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.timeline-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-color);
}

.timeline-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Changelog / Novidades */
.changelog-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.changelog-entry {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0 28px;
    position: relative;
    padding-bottom: 36px;
}

.changelog-entry::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: rgba(233, 69, 96, 0.15);
    transform: translateX(-1px);
}

.changelog-entry:last-child::before { display: none; }

.changelog-entry::after {
    content: '';
    position: absolute;
    left: 110px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.6);
    transform: translateX(-5px);
}

.changelog-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 6px;
    gap: 6px;
    padding-right: 4px;
}

.version-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(240, 192, 64, 0.1);
    border: 1.5px solid rgba(240, 192, 64, 0.3);
    border-radius: 6px;
    padding: 3px 9px;
    white-space: nowrap;
}

.version-date {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

.changelog-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.changelog-card:hover {
    transform: translateX(4px);
    border-left-color: var(--accent);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.changelog-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cl-tag {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 4px;
    padding: 2px 7px;
    flex-shrink: 0;
}

.cl-tag-new     { background: rgba(76, 223, 144, 0.15); color: var(--accent-green); border: 1px solid rgba(76, 223, 144, 0.3); }
.cl-tag-melhoria{ background: rgba(240, 192, 64, 0.12); color: var(--accent);       border: 1px solid rgba(240, 192, 64, 0.3); }
.cl-tag-fix     { background: rgba(233, 69, 96, 0.12);  color: var(--primary);      border: 1px solid rgba(233, 69, 96, 0.3); }
.cl-tag-launch  { background: rgba(144, 144, 255, 0.12);color: #9090ff;             border: 1px solid rgba(144, 144, 255, 0.3); }

.changelog-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.changelog-items li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.changelog-items li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 11px;
    top: 1px;
}

.changelog-items li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Rodapé */
footer {
    border-top: 4px solid var(--primary);
    padding: 50px 24px;
    background: rgba(8, 8, 20, 0.95);
    color: #fff;
    text-align: center;
}

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

footer p { font-size: 12.5px; color: #8888aa; line-height: 1.6; }

.footer-sub {
    margin-top: 10px;
    font-size: 11px !important;
    color: #555577 !important;
}

/* Responsividade */
@media (max-width: 768px) {
    :root { --navbar-height: 70px; }

    .nav-links { display: none; }
    .hamburger-menu { display: flex; }

    .section { padding: 50px 0; }

    .hero-section {
        min-height: auto;
        padding-top: 30px;
    }

    .download-card {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-container { padding-left: 15px; }

    .section-title { font-size: 26px; }

    /* Changelog mobile — estilo App Store / Google Play */
    .changelog-entry {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 0;
        padding-bottom: 0;
    }

    /* Remove linha vertical e ponto decorativo no mobile */
    .changelog-entry::before,
    .changelog-entry::after {
        display: none;
    }

    .changelog-meta {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 8px;
    }

    .version-badge {
        font-size: 11px;
        padding: 2px 7px;
    }

    .version-date {
        font-size: 11px;
    }

    /* Card mobile: sem borda pesada, background quase transparente */
    .changelog-card {
        padding: 12px 14px;
        border-left: none;
        border-top: 2px solid var(--primary);
        border-radius: 10px;
        background: rgba(15, 15, 35, 0.5);
        box-shadow: none;
    }

    .changelog-card:hover {
        transform: none;
        border-left: none;
        border-top: 2px solid var(--accent);
    }

    /* Título — estilo App Store (13px semibold, Inter) */
    .changelog-title {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        gap: 6px;
        line-height: 1.4;
    }

    .cl-tag {
        font-size: 8.5px;
        font-weight: 600;
        padding: 2px 6px;
    }

    /* Itens — estilo Google Play / App Store (12px regular, Inter) */
    .changelog-items {
        gap: 5px;
    }

    .changelog-items li {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.55;
        padding-left: 14px;
        color: #9999bb;
    }

    .changelog-items li::before {
        font-size: 9px;
        top: 2px;
    }

    .changelog-items li strong {
        font-weight: 600;
        color: #d0d0ee;
    }

    .version-badge {
        font-size: 11px;
        font-weight: 600;
    }

    .version-date {
        font-size: 10px;
    }

    /* Lista com separador simples entre entradas */
    .changelog-list {
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

}

/* Server Status Badge */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    user-select: none;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.server-status.online {
    color: #4cdf90;
    border-color: rgba(76, 223, 144, 0.2);
    background: rgba(76, 223, 144, 0.06);
    box-shadow: 0 0 10px rgba(76, 223, 144, 0.1);
}

.server-status.offline {
    color: #e94560;
    border-color: rgba(233, 69, 96, 0.2);
    background: rgba(233, 69, 96, 0.06);
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.1);
}

.server-status.checking {
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--text-muted);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.server-status.online .status-dot {
    background-color: #4cdf90;
    box-shadow: 0 0 8px #4cdf90;
}

.server-status.online .status-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid #4cdf90;
    animation: status-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.server-status.offline .status-dot {
    background-color: #e94560;
    box-shadow: 0 0 8px #e94560;
}

.server-status.checking .status-dot {
    background-color: var(--text-muted);
    animation: status-blink 1s ease-in-out infinite alternate;
}

@keyframes status-ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes status-blink {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Limit mobile header size */
@media (max-width: 480px) {
    .server-status {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .navbar-container .server-status .status-text,
    .navbar-container .server-status .conta-count {
        display: none; /* Only show the dot in the sticky nav on tiny mobile screens to avoid overlap */
    }
    
    .navbar-container .server-status {
        padding: 4px;
        border-radius: 50%;
        width: 17px;
        height: 17px;
        justify-content: center;
    }
}

