/* Layout XXX - Liquid Wave Design for brazil-999bet.com */
:root {
    --primary: #FFD700;
    --secondary: #FF6B35;
    --accent: #004E89;
    --bg-dark: #1A1A2E;
    --bg-darker: #0F0F1E;
    --text-light: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.85);
}

* {
    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;
}

/* Liquid Wave Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, var(--secondary) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, var(--accent) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--primary) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    animation: liquidFlow 15s ease-in-out infinite;
    opacity: 0.4;
    z-index: -1;
}

@keyframes liquidFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 30, 0.95));
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--primary);
    backdrop-filter: blur(10px);
}

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

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

.lucky999-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.lucky999-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.15), rgba(255, 107, 53, 0.15));
    border: 2px solid var(--primary);
    border-radius: 50px;
    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 20px rgba(255, 215, 0, 0.5);
}

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

.lucky999-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;
}

.lucky999-hero-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
    border: 4px solid var(--primary);
    margin: 2rem auto;
    display: block;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.lucky999-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 25px rgba(255, 215, 0, 0.5);
}

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

/* 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 */
.lucky999-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lucky999-game-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 30, 0.9));
    border: 3px solid var(--primary);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lucky999-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
    border-color: var(--secondary);
}

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

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

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

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

.lucky999-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;
}

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

/* FAQ Section */
.lucky999-faq {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(15, 15, 30, 0.9));
    padding: 3rem;
    border-radius: 40px;
    border: 3px solid var(--secondary);
    margin-top: 3rem;
}

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

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

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

.lucky999-review {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid var(--secondary);
}

.lucky999-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;
    border-top: 3px solid var(--primary);
}

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

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

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

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

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

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

.lucky999-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) {
    .lucky999-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .lucky999-hero h2 {
        font-size: 2rem;
    }
    
    .lucky999-games-grid {
        grid-template-columns: 1fr;
    }
}
