/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Header */
.site-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid #ff6b00;
    position: relative;
    padding: 15px 0;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area img {
    max-height: 80px;
    width: auto;
}

.primary-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.primary-nav .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.primary-nav .nav-menu a:hover,
.primary-nav .nav-menu a.active {
    color: #ff6b00;
}

.primary-nav .nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b00;
}

.btn-jogar {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-jogar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/imagens/hero-banner.webp') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
    margin-top: 20px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.7);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid #ff6b00;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 2rem;
    color: #ff6b00;
    margin: 40px 0 20px 0;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #ffa500;
    margin: 30px 0 15px 0;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin: 15px 0 15px 30px;
}

.content-section li {
    margin-bottom: 10px;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
}

.content-section table th,
.content-section table td {
    padding: 12px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    text-align: left;
}

.content-section table th {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    font-weight: 700;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.feature-card h3 {
    color: #ff6b00;
    margin-bottom: 15px;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 40px 20px 20px 20px;
    border-top: 3px solid #ff6b00;
    margin-top: 60px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #ff6b00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff6b00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-area {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .logo-area img {
        max-height: 60px;
    }
    
    .primary-nav {
        width: 100%;
    }
    
    .primary-nav .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .primary-nav .nav-menu li {
        width: 100%;
    }
    
    .primary-nav .nav-menu a {
        display: block;
        padding: 10px;
        background: rgba(255, 107, 0, 0.1);
        border-radius: 5px;
    }
    
    .cta-area {
        width: 100%;
        margin-top: 10px;
    }
    
    .btn-jogar {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section table {
        font-size: 0.9rem;
    }
    
    .content-section table th,
    .content-section table td {
        padding: 8px;
    }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h3 {
    color: #ff6b00;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-game {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4);
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.6);
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bonus-item {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 20px;
    border-radius: 8px;
}

.bonus-item h3 {
    color: #ff6b00;
    margin-bottom: 10px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.payment-method h3 {
    color: #ff6b00;
    margin-bottom: 10px;
}

.payment-note {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff6b00;
    padding: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    color: #ff6b00;
    margin-bottom: 10px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.review-card .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card .reviewer {
    color: #ff6b00;
    font-weight: 600;
    margin-top: 10px;
}

.review-card .date {
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Responsive for new elements */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
