/* Estilos Globais */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #6209ad;
    --dark-color: #1a1a2e;
    --light-color: #f7f7f7;
    --text-color: #333;
    --text-light: #fff;
    --text-gray: #777;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn-primary,
.btn-secondary,
.btn-play {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-play {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    font-size: 1.1rem;
    padding: 15px 40px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover,
.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Header */
header {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 5px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.user-actions {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: var(--text-light);
    margin: 2px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    color: transparent;
    background: linear-gradient(45deg, var(--primary-color), #ff9f00);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Game Info Section */
.game-info {
    padding: 80px 0;
    background-color: var(--light-color);
}

.game-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

/* Game Description */
.game-description,
.game-strategy {
    margin-bottom: 80px;
}

.game-description h2,
.game-strategy h2,
.game-variations h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.description-content,
.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.description-text,
.strategy-text {
    font-size: 1.1rem;
}

.description-text p,
.strategy-text p {
    margin-bottom: 20px;
}

.description-text ol,
.strategy-text ul {
    margin: 20px 0 30px 20px;
}

.description-text li,
.strategy-text li {
    margin-bottom: 10px;
}

.strategy-text h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.description-image img,
.strategy-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Game Variations */
.variations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.variation-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.variation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.variation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.variation-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.variation-card p {
    padding: 0 20px 20px;
    color: var(--text-gray);
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f0f0f7;
}

.faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3b0764 100%);
    color: var(--text-light);
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bonus h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bonus p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.bonus ul {
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
}

.bonus li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bonus li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 160px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #b8b8b8;
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2a2a4a;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.responsible-gaming {
    margin-top: 20px;
}

/* Responsividade */
@media screen and (max-width: 992px) {
    .game-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .variations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .description-content,
    .strategy-content {
        grid-template-columns: 1fr;
    }
    
    .description-text,
    .strategy-text {
        order: 2;
    }
    
    .description-image,
    .strategy-image {
        order: 1;
    }
    
    .footer-column {
        flex: 0 0 45%;
    }
}

@media screen and (max-width: 576px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        transition: var(--transition);
        z-index: 100;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        padding: 15px 0;
        border-bottom: 1px solid #2a2a4a;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .game-features {
        grid-template-columns: 1fr;
    }
    
    .variations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}
