:root {
    --primary-color: #cc0000;
    --secondary-color: #f39c12;
    --text-color: #333;
    --background-color: #f4f4f4;
    --section-padding: 80px 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding-top: 80px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.hero {
    background: url('https://s.sprunkiincredibox.com/img/bg01.png') no-repeat center center/cover;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -80px;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hero-content {
    z-index: 2;
    position: relative;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}
section {
    padding: var(--section-padding);
}
section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}
.feature-grid, .step-grid, .mode-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.feature-item, .step-item, .mode-item, .testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover, .step-item:hover, .mode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.feature-icon, .step-number {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.about-sprunki, .sprunki-history {
    background-color: #f9f9f9;
}
.sprunki-history {
    background-color: var(--primary-color);
    color: white;
}
.tip-list {
    list-style-type: none;
    padding-left: 0;
}
.tip-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}
.tip-list li::before {
    content: "\f0eb";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}
.faq-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.faq-question::before {
    content: "\f059";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-color);
}
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    margin-top: 50px;
    width: 100%;
    position: relative;
    bottom: 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}
.copyright {
    font-size: 14px;
    opacity: 0.9;
}
.language-selector {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.language-selector a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
}
.language-selector a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
}
.language-selector a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 10px 20px;
    }
    
    .language-selector {
        justify-content: center;
        gap: 10px;
        margin-top: 5px;
    }

    .language-selector a {
        padding: 4px 8px;
        font-size: 13px;
    }
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 3vh;
    font-family: 'Roboto', sans-serif;
}

.logo a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;  
    overflow: hidden;     
    text-overflow: ellipsis; 
}

@media screen and (max-width: 768px) {
    .logo a {
        font-size: 18px;     
        letter-spacing: 1px;  
        max-width: 200px;     
    }
    nav {
        padding: 0 15px;      
    }
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 60%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s ease;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-links {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(204, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 0;
        clip-path: circle(0px at 95% 5%);
        -webkit-clip-path: circle(0px at 95% 5%);
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        pointer-events: none;
        z-index: 1000;
    }
    .nav-links.open {
        clip-path: circle(1500px at 95% 5%);
        -webkit-clip-path: circle(1500px at 95% 5%);
        pointer-events: all;
    }
    .nav-links li {
        opacity: 0;
        margin: 12px 0;
        width: 100%;
        text-align: center;
        transform: translateY(20px);
    }
    .nav-links li a {
        font-size: 24px;
        padding: 15px;
        display: block;
        width: 100%;
        font-weight: 500;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.95);
    }
    .nav-links li:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    .burger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 2000;
        cursor: pointer;
        padding: 10px;
        background: rgba(204, 0, 0, 0.9);
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .burger div {
        width: 22px;
        height: 2px;
        background-color: white;
        margin: 4px;
        transition: all 0.3s ease;
    }
    .toggle .line1 {
        transform: rotate(-45deg) translate(-4px, 5px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-4px, -5px);
    }
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .nav-links li.fade-in {
        animation: navLinkFade 0.5s ease forwards;
    }
}

.language-selector {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.language-selector span {
    margin-right: 10px;
}

.language-selector ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

.language-selector ul li {
    margin: 0 5px;
}

.language-selector ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.language-selector ul li a:hover,
.language-selector ul li a:focus {
    background-color: white;
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .language-selector {
        flex-direction: column;
    }

    .language-selector span {
        margin-bottom: 10px;
    }
}

/* Copie os estilos da página principal e adicione os seguintes */
.play-online {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0;
    text-align: center;
}
.play-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.play-button:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.related-games {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2em;
    margin: 0;
}

.game-card p {
    padding: 0 15px 15px;
    font-size: 0.9em;
    color: #666;
}   

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    section h2 {
        font-size: 2rem;
    }
}