/* Layout XXIX - Geometric Prism Design for brazil-10bet.com */
:root {
    --primary: #FFD700;
    --secondary: #00A86B;
    --accent: #0055A4;
    --bg-dark: #001F3F;
    --bg-darker: #001529;
    --text-light: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.8);
}

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

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

/* Geometric Prism Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(60deg, transparent 30%, var(--accent) 30%, var(--accent) 35%, transparent 35%),
        linear-gradient(120deg, transparent 30%, var(--secondary) 30%, var(--secondary) 35%, transparent 35%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    background-size: 200px 200px, 200px 200px, 100% 100%;
    animation: prismShift 20s ease-in-out infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes prismShift {
    0%, 100% { background-position: 0 0, 100px 100px, 0 0; }
    50% { background-position: 100px 100px, 0 0, 0 0; }
}

/* Header */
header {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 2.5rem;
}

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

.brazil10-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brazil10-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.brazil10-brand h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 168, 107, 0.1));
    border: 2px solid var(--primary);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
    display: block;
    font-weight: 600;
}

nav ul li a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.brazil10-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.brazil10-hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brazil10-hero-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    border: 4px solid var(--primary);
    margin: 2rem auto;
    display: block;
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.brazil10-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-darker);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

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

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

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

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

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

.brazil10-game-card {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.8), rgba(0, 21, 41, 0.9));
    border: 3px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
}

.brazil10-game-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: var(--secondary);
}

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

.brazil10-game-card-content {
    padding: 1.5rem;
}

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

.brazil10-game-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.brazil10-game-card a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.brazil10-game-card a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* FAQ Section */
.brazil10-faq {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.6), rgba(0, 21, 41, 0.8));
    padding: 3rem;
    border-radius: 30px;
    border: 3px solid var(--secondary);
    margin-top: 3rem;
}

.brazil10-faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
}

.brazil10-faq-item h3 {
    color: var(--primary);
    margin: 0 0 1rem 0;
}

/* Reviews */
.brazil10-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brazil10-review {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 85, 164, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--secondary);
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 0 100%);
}

.brazil10-review-author {
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    padding: 3rem 2rem 2rem 2rem;
    border-top: 3px solid var(--primary);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding-top: 4rem;
}

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

.brazil10-footer-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.brazil10-footer-section ul li {
    margin-bottom: 0.8rem;
}

.brazil10-footer-section ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.brazil10-footer-section ul li a:hover {
    color: var(--primary);
}

.brazil10-footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .brazil10-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .brazil10-hero h2 {
        font-size: 2rem;
    }
    
    .brazil10-games-grid {
        grid-template-columns: 1fr;
    }
}
