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

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a2e;
    color: #f0f0f0;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb700, #ff7b00);
    color: #1a1a2e;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 183, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ffb700;
    color: #ffb700;
}

.btn-outline:hover {
    background-color: rgba(255, 183, 0, 0.1);
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1em;
}

/* Header */
header {
    background-color: rgba(26, 26, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 183, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffb700;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    position: relative;
    padding: 5px 0;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffb700;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after, 
.main-nav ul li.active a::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.header-buttons .btn {
    margin-left: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #ffb700;
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9)), url('images/1.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.banner-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffb700;
}

.banner-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navegação do Cassino */
.casino-nav-container {
    background-color: rgba(26, 26, 46, 0.8);
    border-bottom: 1px solid rgba(255, 183, 0, 0.2);
    position: sticky;
    top: 70px;
    z-index: 900;
}

.casino-nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.casino-nav ul::-webkit-scrollbar {
    display: none;
}

.casino-nav ul li {
    flex: 0 0 auto;
    margin-right: 15px;
}

.casino-nav ul li a {
    padding: 8px 15px;
    border-radius: 20px;
    color: #f0f0f0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.casino-nav ul li.active a,
.casino-nav ul li a:hover {
    background-color: #ffb700;
    color: #1a1a2e;
}

/* Seções de Jogos */
.featured-games,
.popular-games,
.live-casino,
.table-games {
    padding: 50px 0;
}

.featured-games h2,
.popular-games h2,
.providers h2,
.live-casino h2,
.table-games h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #ffb700;
    text-align: center;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background-color: #242444;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay .btn {
    margin: 5px;
    padding: 8px 15px;
    min-width: 100px;
}

.btn-play {
    background: linear-gradient(135deg, #ffb700, #ff7b00);
    color: #1a1a2e;
}

.btn-demo {
    background: transparent;
    border: 1px solid #ffb700;
    color: #ffb700;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.provider {
    font-size: 0.9em;
    color: #aaa;
}

.section-footer {
    text-align: center;
    margin-top: 30px;
}

/* Provedores */
.providers {
    padding: 50px 0;
    background-color: #15152a;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.provider-card {
    background-color: #242444;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #2d2d5a;
}

.provider-logo {
    font-weight: bold;
    color: #f0f0f0;
}

/* Banner de Promoção */
.promo-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, #15152a, #242444);
}

.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-content {
    flex: 0 0 50%;
    padding-right: 30px;
}

.promo-content h2 {
    font-size: 2.2em;
    color: #ffb700;
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.promo-image {
    flex: 0 0 45%;
}

.promo-image img {
    width: 100%;
    border-radius: 10px;
}

/* Cassino Ao Vivo */
.live-banner {
    display: flex;
    align-items: center;
    background-color: #242444;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.live-banner-content {
    flex: 0 0 50%;
    padding: 40px;
}

.live-banner-content h3 {
    font-size: 1.8em;
    color: #ffb700;
    margin-bottom: 15px;
}

.live-banner-content p {
    margin-bottom: 25px;
}

.live-banner-image {
    flex: 0 0 50%;
    height: 300px;
}

.live-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.live-category {
    background-color: #242444;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 130px;
    transition: all 0.3s ease;
}

.live-category:hover {
    transform: translateY(-5px);
    background-color: #2d2d5a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.live-category h4 {
    font-size: 1em;
    color: #f0f0f0;
}

/* Rodapé */
footer {
    background-color: #15152a;
    padding: 60px 0 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 183, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ffb700;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffb700;
    margin-bottom: 15px;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #aaa;
}

.social-links a:hover {
    color: #ffb700;
}

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

.footer-col ul li a {
    color: #aaa;
}

.footer-col ul li a:hover {
    color: #ffb700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods span {
    color: #aaa;
}

.copyright {
    color: #aaa;
    font-size: 0.9em;
}

.copyright p {
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .promo-banner .container {
        flex-direction: column;
    }
    
    .promo-content {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .promo-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100% - 70px);
        background-color: #1a1a2e;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .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(7px, -7px);
    }
    
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-banner {
        flex-direction: column;
    }
    
    .live-banner-content {
        flex: 0 0 100%;
        order: 2;
    }
    
    .live-banner-image {
        flex: 0 0 100%;
        order: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .live-category {
        width: 80%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .banner-content h1 {
        font-size: 1.8em;
    }
}
