/* Brazil-166bet.com - HEXAGON GRID Layout (#26) - SEO Enhanced */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0d3d0d 0%, #1a5c1a 50%, #0d3d0d 100%);
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

/* Header - NO STICKY */
header {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border-bottom: 5px solid #0066cc;
}

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

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

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

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

.logo h1 {
    font-size: 2.5em;
    color: #0d3d0d;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

/* Navigation - NO STICKY */
nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #0d3d0d;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    background: rgba(255,255,255,0.2);
    display: block;
}

nav ul li a:hover {
    background: #0066cc;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,102,204,0.4);
}

/* PLAY Button */
nav ul li a[href="/play/"] {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0d3d0d;
    font-weight: 700;
    animation: play-pulse 2s infinite;
    border: 2px solid #0066cc;
}

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500; }
    50% { box-shadow: 0 0 20px #FFD700, 0 0 40px #FFA500; }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: url('images/hero.png') center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(13, 61, 13, 0.7);
    position: relative;
}

.hero::before {
    content: '⬡';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 215, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0d3d0d;
    padding: 22px 55px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border: 3px solid #0066cc;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

/* Hexagon Section */
.hexagon-section {
    padding: 80px 20px;
    position: relative;
}

.hexagon-section::before {
    content: '⬡⬡⬡';
    position: absolute;
    font-size: 100px;
    color: rgba(255, 215, 0, 0.05);
    top: 20px;
    right: 20px;
    letter-spacing: 20px;
}

.hexagon-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Hexagon Grid */
.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hex-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(0,102,204,0.1));
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.hex-card::before {
    content: '⬡';
    position: absolute;
    font-size: 150px;
    color: rgba(255, 215, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    transition: all 0.4s;
}

.hex-card:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    border-color: #0066cc;
}

.hex-card:hover::before {
    transform: translate(-50%, -50%) rotate(60deg) scale(1.2);
    color: rgba(0, 102, 204, 0.2);
}

.hex-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 3px solid #FFD700;
}

.hex-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFD700;
}

.hex-card p {
    font-size: 1.1em;
    color: #fff;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
    background: rgba(0,0,0,0.3);
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFD700;
    text-align: center;
}

.content-section p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 600;
}

.content-section a:hover {
    color: #FFA500;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700;
}

.faq-item {
    background: rgba(255,215,0,0.1);
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.faq-item p {
    font-size: 1.1em;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 20px;
    background: rgba(0,0,0,0.3);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700;
}

.review {
    background: rgba(255,215,0,0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #FFD700;
}

.review-info {
    flex: 1;
}

.review-author {
    font-size: 1.3em;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.review-location {
    color: #ccc;
    font-size: 0.95em;
}

.review-date {
    color: #999;
    font-size: 0.9em;
    margin-left: 10px;
}

.review-rating {
    color: #FFD700;
    font-size: 1.5em;
}

.review-text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95em;
}

.verified-badge {
    color: #4CAF50;
    font-weight: 600;
}

.helpful {
    color: #999;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #0d3d0d, #1a5c1a, #0d3d0d);
    padding: 60px 20px 30px;
    border-top: 5px solid #FFD700;
}

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

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255,215,0,0.3);
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.8;
}

.footer-legal a {
    color: #FFD700;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2em;
    }
    
    .hexagon-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
    }
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
