:root {
    --primary: #d62828;
    --secondary: #003049;
    --accent: #f77f00;
    --dark: #0a0e17;
    --darker: #070a12;
    --light: #f0f4ff;
    --gray: #8a9bb8;
    --success: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--darker) 0%, #0a1020 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oxanium', cursive;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER / NAV */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(7, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(214, 40, 40, 0.2);
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(7, 10, 18, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Oxanium', cursive;
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.logo-img {
    height: 65px; /* Aumentado o tamanho */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-text {
    font-size: 2rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    color: var(--light);
    text-decoration: none;
}

nav a:hover {
    color: var(--primary);
}

nav a.active {
    color: var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.server-ip {
    background: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Oxanium', monospace;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-ip:hover {
    background: rgba(214, 40, 40, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.2);
}

.server-ip i {
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* HERO SECTION */
.hero {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    opacity: 0.3;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.9) 0%, rgba(7, 10, 18, 0.7) 100%);
    z-index: -2;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(214, 40, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 127, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 48, 73, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    margin-bottom: 40px;
}

.hero-logo {
    height: 300px; /* Logo grande no hero */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.7));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    min-width: 200px;
}

.gamemodes-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.gamemode-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.gamemode-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.2);
}

.gamemode-tag.coming-soon {
    position: relative;
    color: var(--gray);
}

.gamemode-tag.coming-soon::after {
    content: "EM BREVE";
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* GAMEMODES SECTION */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.gamemodes {
    padding: 100px 0;
    background-color: rgba(10, 14, 23, 0.5);
}

.gamemodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gamemode-card {
    background: rgba(15, 20, 35, 0.7);
    border-radius: 15px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.gamemode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.gamemode-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 40, 40, 0.3);
    box-shadow: 0 15px 30px rgba(214, 40, 40, 0.2);
}

.gamemode-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.gamemode-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.gamemode-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.status {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(214, 40, 40, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status.in-development {
    background: rgba(247, 127, 0, 0.1);
    color: var(--accent);
}

/* NEXT SECTION */
.next {
    padding: 100px 0;
    position: relative;
}

.next-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 30%, rgba(0, 48, 73, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(214, 40, 40, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.next-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.next-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.next-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.next-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA SECTION */
.cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.5) 0%, rgba(7, 10, 18, 1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=30');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e63946);
    color: white;
    box-shadow: 0 5px 20px rgba(214, 40, 40, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* FOOTER */
footer {
    background-color: #050710;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(214, 40, 40, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Oxanium', cursive;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 50px; /* Tamanho aumentado no footer também */
    width: auto;
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-ip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Oxanium', monospace;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-ip:hover {
    background: rgba(214, 40, 40, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.2);
}

.footer-links h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(15, 20, 35, 0.7);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
}

.server-version {
    margin-top: 25px;
    color: var(--gray);
}

.player-count {
    margin-top: 10px;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(138, 155, 184, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .gamemodes-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        height: 120px;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(7, 10, 18, 0.98);
        padding: 30px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border-top: 1px solid rgba(214, 40, 40, 0.2);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-buttons .server-ip span {
        display: none;
    }
    
    .header-buttons .server-ip {
        padding: 10px 15px;
    }
    
    .hero {
        padding: 160px 0 80px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.7rem;
    }
    
    .hero-logo {
        height: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .gamemode-card {
        padding: 30px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-img {
        height: 40px;
    }
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}