/* luckbet - Cassino Online Premium do Brasil */
/* Reset e 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-color: #0a0a0a;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    border-bottom: 2px solid #4169e1;
}

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

.logo-area .site-logo {
    height: 50px;
    width: auto;
}

.main-nav {
    flex: 1;
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-list a {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: #4169e1;
    color: #fff;
}

.header-cta .btn-primary {
    background: linear-gradient(135deg, #4169e1 0%, #1e90ff 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.4);
}

.header-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.6);
}

/* Main Content */
.main-content {
    min-height: 60vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    color: #4169e1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(65, 105, 225, 0.5);
}

.hero-section p {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.page-hero h1 {
    font-size: 2.5rem;
    color: #4169e1;
    margin-bottom: 1rem;
}

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

/* Sections */
.section-container,
.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.content-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

.content-section h2 {
    font-size: 2rem;
    color: #4169e1;
    margin: 2rem 0 1rem;
}

.content-section p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-image {
    width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.game-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

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

.game-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.5rem;
    color: #4169e1;
    margin-bottom: 0.5rem;
}

.game-info p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1rem;
    flex: 1;
}

.btn-game {
    background: linear-gradient(135deg, #4169e1 0%, #1e90ff 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.6);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #4169e1;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: #b0b0b0;
}

/* Live Casino Section */
.live-casino-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.live-casino-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.live-casino-content img {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.live-casino-text {
    flex: 1;
    min-width: 300px;
}

.live-casino-text h2 {
    font-size: 2rem;
    color: #4169e1;
    margin-bottom: 1rem;
}

.live-casino-text p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

.faq-section h2 {
    font-size: 2rem;
    color: #4169e1;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #4169e1;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #4169e1;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.reviews-section h2 {
    font-size: 2rem;
    color: #4169e1;
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h4 {
    font-size: 1.25rem;
    color: #4169e1;
}

.review-rating {
    color: #ffd700;
    font-size: 1.25rem;
}

.review-card p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

/* Author Section */
.author-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

.author-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.author-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4169e1;
}

.author-info h3 {
    font-size: 1.5rem;
    color: #4169e1;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Buttons */
.btn-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, #4169e1 0%, #1e90ff 100%);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(65, 105, 225, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.6);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid #4169e1;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    color: #4169e1;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #4169e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a3e;
    color: #808080;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        margin: 1rem 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .games-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .live-casino-content {
        flex-direction: column;
    }
}
