/* Layout XXVI - Carnival Wave Design for 10bet */
:root {
    --primary: #009739;
    --secondary: #FFDF00;
    --accent: #002776;
    --dark: #006428;
    --light: #E8F5E9;
    --gold: #FFD700;
    --text: #1A1A1A;
    --text-muted: #666666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #009739 0%, #006428 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated carnival wave background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 223, 0, 0.05) 50px, rgba(255, 223, 0, 0.05) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(0, 39, 118, 0.05) 50px, rgba(0, 39, 118, 0.05) 100px);
    z-index: 0;
    pointer-events: none;
    animation: carnivalShift 20s ease-in-out infinite;
}

@keyframes carnivalShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(50px) translateY(-50px); }
}

/* Navigation - Carnival wave tabs */
.samba10-nav {
    background: linear-gradient(135deg, #009739, #006428);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 151, 57, 0.4);
    border-bottom: 4px solid var(--secondary);
}

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

.samba10-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.samba10-logo:hover {
    transform: scale(1.05) rotate(-5deg);
}

.samba10-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: sambaBounce 2s ease-in-out infinite;
}

@keyframes sambaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.samba10-logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.samba10-nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.samba10-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 151, 57, 0.3);
    border-radius: 50px;
    border: 2px solid transparent;
}

.samba10-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.samba10-nav-links a:hover::before {
    opacity: 1;
}

.samba10-nav-links a:hover {
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.samba10-cta-button {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--dark);
    padding: 0.875rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    border: 2px solid var(--gold);
    border-radius: 50px;
}

.samba10-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
}

/* Hero Section - Carnival wave */
.samba10-hero {
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.95), rgba(0, 100, 40, 0.95));
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.samba10-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: 
        radial-gradient(ellipse at 50% 100%, var(--secondary) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 90%, var(--accent) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, var(--secondary) 0%, transparent 50%);
    animation: waveFloat 5s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.samba10-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.4);
}

.samba10-hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Section Styles */
.samba10-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.samba10-section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 15px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
    width: 100%;
}

.samba10-section-title::after {
    content: '🎭';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

/* Games Grid - Wave cards */
.samba10-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.samba10-game-card {
    background: linear-gradient(135deg, #006428, #009739);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s;
    position: relative;
    border: 3px solid var(--secondary);
}

.samba10-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 223, 0, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.samba10-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    border-color: var(--gold);
}

.samba10-game-card:hover::before {
    opacity: 1;
}

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

.samba10-game-card h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin: 1.5rem;
}

.samba10-game-card p {
    color: rgba(255,255,255,0.85);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.samba10-play-button {
    display: block;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--dark);
    text-align: center;
    padding: 1.2rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 27px 27px;
}

.samba10-play-button:hover {
    background: linear-gradient(135deg, #FFA500, var(--gold));
}

/* Benefits Grid */
.samba10-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.samba10-benefit-card {
    background: linear-gradient(135deg, #006428, #009739);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border: 3px solid var(--primary);
}

.samba10-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    border-color: var(--gold);
}

.samba10-benefit-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.samba10-benefit-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* FAQ Section */
.samba10-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.samba10-faq-item {
    background: linear-gradient(135deg, #006428, #009739);
    margin-bottom: 1.5rem;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border-left: 5px solid var(--gold);
}

.samba10-faq-item:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    transform: translateX(5px);
}

.samba10-faq-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.samba10-faq-item p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

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

.samba10-review-card {
    background: linear-gradient(135deg, #006428, #009739);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border: 3px solid var(--primary);
}

.samba10-review-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    border-color: var(--gold);
}

.samba10-review-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.samba10-review-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.samba10-review-card strong {
    color: var(--gold);
    display: block;
    margin-top: 1rem;
}

/* Footer */
.samba10-footer {
    background: linear-gradient(135deg, #006428, #009739);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    border-top: 4px solid var(--secondary);
}

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

.samba10-footer h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.samba10-footer ul li {
    margin-bottom: 0.75rem;
}

.samba10-footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.samba10-footer a:hover {
    color: var(--gold);
}

.samba10-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .samba10-hero h1 {
        font-size: 2.5rem;
    }
    
    .samba10-nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .samba10-nav-links {
        justify-content: center;
    }
}
