:root {
    --accent-red: rgba(220, 40, 40, 0.85);
    --bg-main: #0b0b0b;
    --bg-card: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #9a9a9a;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #141414 0%, #0b0b0b 60%);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== HEADER ===== */
.top-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* ===== IDENTIDADE ===== */
.identity {
    display: flex;
    gap: 14px;
    align-items: center;
}

.logo {
    width: 38px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(220, 40, 40, 0.35));
}

.identity-text h1 {
    position: relative;
    font-size: 28px;
    letter-spacing: 2px;
    padding-bottom: 6px;
    background: linear-gradient(120deg,#fff,#aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.identity-text h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(220,40,40,0),
        rgba(220,40,40,1),
        rgba(220,40,40,0)
    );
    clip-path: inset(0 100% 0 0);
    animation: underline 3s ease-in-out infinite;
}

@keyframes underline {
    0% { clip-path: inset(0 100% 0 0); }
    40% { clip-path: inset(0 0 0 0); }
    70% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 0 100%); }
}

.identity-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== NAV ===== */
.nav-center {
    justify-self: center;
    display: flex;
    gap: 28px;
    padding: 10px 30px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
}

.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red);
}

/* ===== ICONS ===== */
.links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
    opacity: 0.7;
}

.icon:hover { opacity: 1; }

.icon.steam { background-image: url("icons/steam.svg"); }
.icon.discord { background-image: url("icons/discord.svg"); }

/* ===== CONTACT ===== */
.contact-wrapper {
    position: relative;
}

.contact-btn {
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-menu {
    position: absolute;
    top: 140%;
    right: 0;
    display: flex;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.contact-wrapper:hover .contact-menu {
    opacity: 1;
    pointer-events: auto;
}

.contact-icon {
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}

.contact-icon.email { background-image: url("icons/gmail.svg"); }
.contact-icon.steam { background-image: url("icons/steam.svg"); }

/* ===== HOME GALLERY ===== */
.gallery {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT + PRICE (BASE) ===== */
.about-container {
    display: flex;
    justify-content: center;
    margin: 200px 20px 120px;
}

.about-box {
    max-width: 900px;
    width: 100%;
    padding: 70px 60px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.015)
    );
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
}

/* LOGO SÓ QUANDO USAR */
.about-logo {
    width: 90px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(220,40,40,0.45));
}

/* TEXTOS */
.about-box h2 {
    font-size: 30px;
    margin-bottom: 26px;
}

.about-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 700px) {
    .about-box {
        padding: 50px 28px;
    }

    .about-box h2 {
        font-size: 24px;
    }

    .about-box p {
        font-size: 16px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 900px) {

    /* HEADER */
    .top-bar {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .identity {
        justify-content: center;
    }

    .nav-center {
        justify-self: center;
        padding: 10px 20px;
        gap: 22px;
    }

    .links {
        justify-content: center;
    }

    /* HOME GALLERY */
    .gallery {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 20px;
    }

    /* ABOUT + PRICE */
    .about-container {
        margin: 120px 16px 100px;
    }

    .about-box {
        padding: 46px 24px;
    }

    .about-logo {
        width: 72px;
        margin-bottom: 22px;
    }

    .about-box h2 {
        font-size: 24px;
    }

    .about-box p {
        font-size: 16px;
        line-height: 1.7;
    }
}