/* MGM Bet Casino - Estilos Globais 2025 */

:root {
    --primary-color: #1a3c6e;
    --secondary-color: #d4af37;
    --accent-color: #c9a961;
    --dark-bg: #0f1923;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

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

/* Header e Navegação */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5a9e 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--dark-bg);
    padding: 10px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.site-title {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

nav a:hover {
    background-color: rgba(255,255,255,0.15);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3c6e 0%, #2a5a9e 50%, #1a3c6e 100%);
    color: var(--text-light);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" fill-opacity="0.05" d="M0,0 L1200,0 L1200,60 Q600,120 0,60 Z"/></svg>');
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

/* Seções de Conteúdo */
section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Cards de Jogos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.game-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.game-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #2a5a9e);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-link:hover {
    background: linear-gradient(135deg, #2a5a9e, var(--primary-color));
    transform: translateX(5px);
}

/* Imagens de Conteúdo */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Listas */
ul, ol {
    margin: 20px 0 20px 30px;
}

li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

th, td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: linear-gradient(135deg, var(--primary-color), #2a5a9e);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
}

tr:hover {
    background-color: #f8f9fa;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.faq-item p {
    color: #555;
    margin: 0;
}

/* Reviews */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 5px solid var(--secondary-color);
}

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

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.review-location {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

/* Alertas e Avisos */
.alert {
    background: #fff3cd;
    border-left: 5px solid var(--warning-color);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.alert-success {
    background: #d4edda;
    border-left-color: var(--success-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2530 100%);
    color: var(--text-light);
    padding: 50px 5%;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 15px 5%;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-list li {
    margin: 0;
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
