* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background: #090d09;
    overflow-x: hidden;
}

/* Fundo fixo estilo Prism Launcher */
.background {
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(5, 10, 5, 0.72), rgba(5, 10, 5, 0.82)),
        url("ModlySiteFundo.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -1;
}

/* Header */
header {
    width: 100%;
    padding: 24px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    position: fixed;
    top: 0;

    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.15);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    height: 48px;
}

/* Navegação */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

nav a:hover {
    color: #7dff9b;
}

/* Hero */
.hero {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 68px;
    line-height: 1.05;

    margin-bottom: 24px;

    font-weight: 700;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.7);

    margin-bottom: 40px;
}

/* Botões */
.buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.primary-btn,
.secondary-btn {
    padding: 14px 28px;
    border-radius: 14px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.25s;
}

.primary-btn {
    background: #4dff88;
    color: black;

    box-shadow: 0 0 20px rgba(77,255,136,0.25);
}

.primary-btn:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(255,255,255,0.08);
    color: white;

    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.12);
}

/* Responsivo */
@media (max-width: 768px) {

    header {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Sections */
section {
    width: 100%;
    padding: 120px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.section-title p {
    color: rgba(255,255,255,0.65);
    font-size: 18px;
}

/* Features */
.feature-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;

    padding: 0 20px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    min-width: 0;
    border-radius: 22px;

    padding: 30px;

    backdrop-filter: blur(10px);

    transition: 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: rgba(77,255,136,0.25);

    box-shadow: 0 0 30px rgba(77,255,136,0.08);
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.feature-card p {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}


/* About */
.about-box {
    max-width: 1100px;

    margin: auto;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    padding: 50px;

    backdrop-filter: blur(10px);
}

.about-text h3 {
    font-size: 34px;

    margin-bottom: 22px;
}

.about-text p {
    color: rgba(255,255,255,0.72);

    line-height: 1.8;

    font-size: 18px;

    margin-bottom: 18px;
}

/* Development */
.status-box {
    max-width: 900px;
    margin: auto;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 40px;

    text-align: center;

    backdrop-filter: blur(10px);
}

.status-box p {
    font-size: 18px;
    line-height: 1.7;

    color: rgba(255,255,255,0.75);

    margin-bottom: 30px;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.badges span {
    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(77,255,136,0.1);

    border: 1px solid rgba(77,255,136,0.2);

    color: #7dff9b;

    font-size: 14px;
    font-weight: 600;
}

/* Showcase */
.showcase-box {
    max-width: 1100px;
    height: 500px;

    margin: auto;

    border-radius: 28px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    display: flex;
    justify-content: center;
    align-items: center;

    color: rgba(255,255,255,0.5);

    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    padding: 35px 20px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    border-top: 1px solid rgba(255,255,255,0.06);

    background: rgba(0,0,0,0.2);

    text-align: center;
}

.footer-logo {
    width: 180px;
    height: auto;

    margin-bottom: 2px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Roadmap */
.roadmap {
    max-width: 1100px;
    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;
}

.roadmap-item {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 28px;

    backdrop-filter: blur(10px);

    transition: 0.25s;
}

.roadmap-item:hover {
    transform: translateY(-4px);

    border-color: rgba(77,255,136,0.22);

    box-shadow: 0 0 30px rgba(77,255,136,0.08);
}

.roadmap-tag {
    display: inline-block;

    margin-bottom: 16px;
    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(77,255,136,0.12);

    border: 1px solid rgba(77,255,136,0.18);

    color: #7dff9b;

    font-size: 13px;
    font-weight: 600;
}

.roadmap-tag.future {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.8);
}

.roadmap-item h3 {
    margin-bottom: 16px;

    font-size: 26px;
}

.roadmap-item p {
    color: rgba(255,255,255,0.68);

    line-height: 1.6;

    margin-bottom: 18px;
}

.roadmap-item ul {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.roadmap-item li {
    color: rgba(255,255,255,0.78);

    position: relative;

    padding-left: 18px;
}

.roadmap-item li::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #7dff9b;

    position: absolute;

    left: 0;
    top: 9px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 22px;

    transition: 0.2s;
}

.footer-links a:hover {
    color: #7dff9b;
    transform: translateY(-2px);
}

footer p {
    color: rgba(255,255,255,0.55);
}

.disclaimer {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* Popup */
.social-popup {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.6);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;

    transition: 0.25s;

    z-index: 2000;
}

.social-popup.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    width: 90%;
    max-width: 500px;

    background: rgba(15,15,15,0.9);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 40px;

    text-align: center;

    backdrop-filter: blur(20px);

    position: relative;
}

.popup-content h2 {
    font-size: 34px;

    margin-bottom: 14px;
}

.popup-content p {
    color: rgba(255,255,255,0.7);

    line-height: 1.7;

    margin-bottom: 30px;
}

.popup-links {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

.popup-links a {
    padding: 16px;

    border-radius: 16px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.06);

    color: white;

    text-decoration: none;

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    transition: 0.2s;
}

.popup-links a:hover {
    border-color: rgba(77,255,136,0.25);

    background: rgba(77,255,136,0.08);
}

.close-popup {
    position: absolute;

    top: 18px;
    right: 18px;

    background: transparent;
    border: none;

    color: rgba(255,255,255,0.6);

    font-size: 28px;

    cursor: pointer;
}

/* 404 Page */
.notfound {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;

    position: relative;
    z-index: 2;
}

.notfound-logo {
    width: 100px;
    height: auto;

    margin-bottom: 24px;
}

.notfound h1 {
    font-size: 140px;

    line-height: 1;

    margin-bottom: 16px;

    color: white;
}

.notfound p {
    color: rgba(255,255,255,0.7);

    font-size: 20px;

    margin-bottom: 32px;
}

.back-home {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    border-radius: 14px;

    background: #1f7a45;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.2s;
}

.back-home:hover {
    background: #289c59;

    transform: translateY(-2px);
}