:root {
    --primary-color: #2563EB;
    --text-primary: #3B82F6;
    --text-secondary: #60A5FA;
    --text-highlight: #ffffff;
    --gradient-start: rgba(17,24,39,1);
    --gradient-middle: rgba(41,45,86,1);
    --gradient-end: rgba(36,42,73,1);
    --link-hover: #3B82F6;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-middle) 68%, var(--gradient-end) 100%);
    color: var(--text-secondary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.95);
    opacity: 0.75;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #1D4ED8, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--text-highlight);
}


.support-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-highlight) !important;
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/principal-paradise.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    background: linear-gradient(45deg, #2563EB, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.release-date {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-button, .trailer-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #1d4fd8c2;
    color: var(--text-highlight);
    border-radius: 6px;
}

.trailer-button {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-secondary);
    border-radius: 8px;
}

.cta-button:hover, .trailer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

.trailer-button:hover {
    color: var(--text-highlight);
    border-color: var(--text-highlight);
}

/* Featured Games Section */
#featured-games {
    padding: 5rem 5%;
    background: #020024;
background: linear-gradient(2deg,rgba(2, 0, 36, 1) 25%, rgba(40, 12, 110, 1) 89%, rgba(16, 5, 71, 1) 100%);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.game-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 9px;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.3);
    border: 2px solid #1d4fd8b9;
}

.game-card.featured {
    grid-column: span 2;
    height: 600px;
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(17,24,39,0.95));
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.game-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--text-highlight);
}

.game-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
    color: var(--text-secondary);
}

.game-link {
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.game-link:hover {
    color: var(--text-highlight);
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

/* Newswire Section */
#newswire {
    padding: 5rem 5%;
    background: #020024;
background: linear-gradient(178deg,rgba(2, 0, 36, 1) 25%, rgba(9, 9, 121, 1) 89%, rgba(16, 5, 71, 1) 100%);
}

#newswire h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-highlight);
    text-shadow: 0 0 15px rgba(37,99,235,0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(17,24,39,0.7);
    overflow: hidden;
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 9px;
}

.news-image {
    height: 200px;
    background-image: url(../images/paradise2.png);
    background-size: cover;
    background-position: center;
}

.news-image2 {
    height: 200px;
    background-image: url(../images/haven.png);
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--text-highlight);
}

.news-card p {
    color: var(--text-secondary);
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.read-more:hover {
    color: var(--text-highlight);
}

/* Footer */
footer {
    background: var(--gradient-start);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--text-highlight);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-column a:hover {
    color: var(--text-highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(37,99,235,0.2);
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Media Queries para Responsividade */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        gap: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button, .trailer-button {
        width: 100%;
        text-align: center;
    }

    .game-card.featured {
        grid-column: span 1;
        height: 500px;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .release-date {
        font-size: 1.2rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }
}