* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #ccc;
    line-height: 1.5;
}

.header-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: url('Imagens/OutraLogo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.header-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    pointer-events: none;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.header-content h1 {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-content p {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.header-links {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.header-links a:hover {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

section.Titulo {
    margin: 5rem 0 1.5rem;
    padding: 0 2rem;
}

section.Titulo h1 {
    font-size: 2rem;
    color: #fff;
    border-left: 3px solid #e74c3c;
    padding-left: 1rem;
    font-weight: 600;
}

.WendigosOutside,
.HauntedMind,
.LusoTerror {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.WendigosOutside img,
.HauntedMind img,
.LusoTerror img {
    width: 100%;
    height: auto;
    border: 1px solid #222;
}

.WendigosOutside .info,
.HauntedMind .info .LusoTerror .info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.WendigosOutside .info p,
.HauntedMind .info p,
.LusoTerror .info p {
    margin: 0;
    font-size: 0.9375rem;
    color: #aaa;
    line-height: 1.6;
}

.WendigosOutside .info p strong,
.HauntedMind .info p strong,
.LusoTerror .info p strong {
    color: #ddd;
    font-weight: 600;
}

.price-tag {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #1f1f1f;
}

.price-tag p {
    font-size: 0.875rem;
    color: #888;
    margin: 0.25rem 0;
}

.price-tag p strong {
    color: #e74c3c;
    font-weight: 500;
}

.game-link {
    margin-top: 1rem;
}

a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #c0392b;
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid #1f1f1f;
    font-size: 0.75rem;
    color: #555;
}

footer p {
    margin: 0.25rem 0;
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #1a1a1a;
    color: #888;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    border: 1px solid #2a2a2a;
    font-family: monospace;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2a2a2a;
    color: #e74c3c;
    border-color: #e74c3c;
}

.page-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: #050505;
    border-bottom: 1px solid #1f1f1f;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1rem;
    color: #888;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #0f0f0f;
    border-left: 2px solid #e74c3c;
}

.faq-question {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-question span {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: monospace;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.faq-answer {
    padding-left: 1.75rem;
}

.faq-answer p {
    color: #aaa;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: #e74c3c;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.news-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    transition: border-color 0.2s ease;
}

.news-item:hover {
    border-color: #2a2a2a;
}

.news-item.featured {
    background: #121212;
    border-left: 3px solid #e74c3c;
    border-top: 1px solid #2a2a2a;
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding-right: 1rem;
    border-right: 1px solid #2a2a2a;
    text-align: center;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.news-date .month {
    font-size: 0.75rem;
    color: #e74c3c;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0.25rem 0;
}

.news-date .year {
    font-size: 0.7rem;
    color: #666;
}

.news-content {
    flex: 1;
}

.news-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.news-content h2 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.news-content p {
    font-size: 0.9375rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #e74c3c;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #c0392b;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    margin-top: 1rem;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    background: #0f0f0f;
    color: #aaa;
    text-decoration: none;
    font-size: 0.875rem;
    border: 1px solid #1f1f1f;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #2a2a2a;
}

.pagination a.active {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.pagination a.next {
    min-width: 80px;
}

.pagination a.next {
    min-width: 80px;
}

.games-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.game-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    max-width: 900px;
    margin: 0 auto;
}

.game-card:hover {
    border-color: #2a2a2a;
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-status.released {
    background: #1a5c2e;
    color: #fff;
}

.game-status.coming-soon {
    background: #5c3a1a;
    color: #fff;
}

.game-info {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.game-info h2 {
    font-size: 1.75rem;
    color: #fff;
    font-weight: 600;
}

.game-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-price {
    background: #e74c3c;
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.game-genre {
    color: #aaa;
    font-size: 0.875rem;
    border: 1px solid #2a2a2a;
    padding: 0.2rem 0.6rem;
}

.game-year {
    color: #aaa;
    font-size: 0.875rem;
    border: 1px solid #2a2a2a;
    padding: 0.2rem 0.6rem;
}

.game-description {
    color: #aaa;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.game-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.game-features span {
    color: #888;
    font-size: 0.8rem;
    border-left: 1px solid #2a2a2a;
    padding-left: 0.75rem;
}

.game-features span:first-child {
    border-left: none;
    padding-left: 0;
}

.game-links {
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-steam {
    background: #1a1a2e;
    color: #fff;
    border: 1px solid #2a2a4e;
}

.btn-steam:hover {
    background: #2a2a4e;
    border-color: #3a3a6e;
}

.btn-itch {
    background: #2e1a1a;
    color: #fff;
    border: 1px solid #4e2a2a;
}

.btn-itch:hover {
    background: #4e2a2a;
    border-color: #6e3a3a;
}
.game-card, .news-item, .faq-item, .WendigosOutside, .HauntedMind {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 800px) {

    .WendigosOutside,
    .HauntedMind {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .header-hero {
        height: 70vh;
        min-height: 500px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .header-links {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .header-links a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .game-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .game-info {
        padding: 1.5rem;
    }

    .game-image {
        max-height: 300px;
    }

    .games-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .game-info h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 700px) {
    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .faq-container {
        padding: 2rem 1rem;
    }

    .faq-category h2 {
        font-size: 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.9375rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    .faq-item {
        padding: 0.875rem;
    }

    .news-container {
        padding: 2rem 1rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .news-date {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
        padding-right: 0;
        padding-bottom: 0.5rem;
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
        justify-content: flex-start;
    }

    .news-date .day {
        font-size: 1.25rem;
    }

    .news-date .month {
        font-size: 0.7rem;
    }

    .news-date .year {
        font-size: 0.65rem;
    }

    .news-content h2 {
        font-size: 1.2rem;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    section.Titulo {
        margin: 3rem 0 1rem;
        padding: 0 1rem;
    }

    section.Titulo h1 {
        font-size: 1.5rem;
    }

    .WendigosOutside,
    .HauntedMind {
        padding: 0 1rem;
        margin: 0 auto 3rem;
    }

    .header-hero {
        height: 60vh;
        min-height: 400px;
    }

    .header-content h1 {
        font-size: 1.75rem;
    }

    .header-links {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .header-links a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .game-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .game-features span {
        border-left: none;
        padding-left: 0;
    }

    .game-meta {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header-hero {
        height: 50vh;
        min-height: 350px;
    }

    .header-links {
        gap: 0.75rem;
    }

    .faq-question {
        flex-direction: column;
        gap: 0.25rem;
    }

    .faq-answer {
        padding-left: 0;
    }

    .news-content h2 {
        font-size: 1rem;
    }

    .news-content p {
        font-size: 0.875rem;
    }

    .pagination a {
        min-width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .pagination a.next {
        min-width: 70px;
    }
}