/* =========================
   GLOBAL RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050b12;
    color: #e6f2ff;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: url("assets/bg.jpg") center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 10, 20, 0.85),
        rgba(5, 10, 20, 0.65),
        rgba(5, 10, 20, 0.9)
    );
    backdrop-filter: blur(6px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

/* =========================
   LOGO & TEXT
   ========================= */

.logo {
    max-width: 520px;
    width: 90%;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.7));
}

.subtitle {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: #cfe6ff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* =========================
   PIXEL FONT (TÍTULOS / BOTÕES)
   ========================= */

h1, h2, h3,
.btn {
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;

    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* tamanhos fixos (pixel-perfect) */
h2 { font-size: 22px; }
h3 { font-size: 18px; }

.btn {
    font-size: 14px;
}

/* =========================
   BUTTONS
   ========================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    position: relative;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #ffd36a, #c99b2f);
    color: #1a1304;
    box-shadow: 0 0 25px rgba(255,211,106,0.35);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(255,211,106,0.6);
}

.btn.secondary {
    border: 2px solid #6bb6ff;
    color: #cfe6ff;
    background: rgba(0,0,0,0.35);
}

.btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(107,182,255,0.15);
    box-shadow: 0 0 30px rgba(107,182,255,0.5);
}

.btn.large {
    font-size: 16px;
    padding: 18px 38px;
}

/* =========================
   SECTIONS
   ========================= */

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffd36a;
}

/* =========================
   FEATURES
   ========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 30px;
    backdrop-filter: blur(6px);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #9dd1ff;
}

/* =========================
   SCREENSHOTS
   ========================= */

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.screenshot {
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* imagens */
.shot-1 { background-image: url("assets/screenshots/screenshot1.jpg"); }
.shot-2 { background-image: url("assets/screenshots/screenshot2.jpg"); }
.shot-3 { background-image: url("assets/screenshots/screenshot3.jpg"); }

/* =========================
   FAQ
   ========================= */

.faq {
    max-width: 900px;
}

.faq-item {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: #9dd1ff;
}

/* =========================
   DOWNLOAD
   ========================= */

.download {
    text-align: center;
}

.download p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #cfe6ff;
}

.download-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.5);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #6bb6ff;
    text-decoration: none;
}

/* =========================
   SCROLL REVEAL
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =========================
   PARTICLES
   ========================= */

#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero,
section,
footer {
    position: relative;
    z-index: 1;
}

/* =========================
   FLOATING MENU (TOP)
   ========================= */

.floating-menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10,20,35,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    z-index: 999;
}

.pill {
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #cfe6ff;
    background: rgba(255,255,255,0.05);
    transition: all 0.25s ease;
}

.pill:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.pill.highlight {
    background: linear-gradient(135deg, #ffd36a, #c99b2f);
    color: #1a1304;
    box-shadow: 0 0 20px rgba(255,211,106,0.45);
}

.pill.discord {
    border: 1px solid #6bb6ff;
}

.pill.discord:hover {
    background: rgba(107,182,255,0.2);
    box-shadow: 0 0 25px rgba(107,182,255,0.5);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {
    .floating-menu {
        top: 12px;
        padding: 8px 10px;
        gap: 6px;
    }

    .pill {
        padding: 8px 12px;
        font-size: 12px;
    }
}


.feature-icon {
    font-size: 28px;
    color: #ffd36a;
    margin-bottom: 16px;
}

