/* Layout XXXI - Royal Crown Design for vip-leaobet.com */
:root {
    --primary: #FFD700;
    --secondary: #8B008B;
    --accent: #DC143C;
    --bg-dark: #1A0A2E;
    --bg-darker: #0F0520;
    --text-light: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.9);
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Royal Crown Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(139, 0, 139, 0.05) 50px, rgba(139, 0, 139, 0.05) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255, 215, 0, 0.03) 50px, rgba(255, 215, 0, 0.03) 100px),
        radial-gradient(circle at 50% 50%, var(--bg-dark) 0%, var(--bg-darker) 100%);
    animation: royalShine 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes royalShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.98), rgba(15, 5, 32, 0.98));
    padding: 1.5rem 2rem;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.3);
}

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

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

.vip-leao-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
    animation: crownPulse 3s ease-in-out infinite;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255, 215, 0, 0.7); }
    50% { transform: scale(1.08); box-shadow: 0 0 60px rgba(255, 215, 0, 0.9); }
}

.vip-leao-brand h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.9rem 1.7rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(139, 0, 139, 0.2));
    border: 2px solid var(--primary);
    border-radius: 30px;
    transition: all 0.3s ease;
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

nav ul li a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

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

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

.vip-leao-hero-img {
    width: 100%;
    max-width: 900px;
    height: 450px;
    object-fit: cover;
    border-radius: 50px;
    border: 5px solid var(--primary);
    margin: 2rem auto;
    display: block;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

.vip-leao-cta {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-darker);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.vip-leao-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.8);
}

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

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

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

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

/* Game Cards */
.vip-leao-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vip-leao-game-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(15, 5, 32, 0.95));
    border: 3px solid var(--primary);
    border-radius: 35px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vip-leao-game-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
    border-color: var(--accent);
}

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

.vip-leao-game-card-content {
    padding: 1.8rem;
}

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

.vip-leao-game-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.vip-leao-game-card a {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.vip-leao-game-card a:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* FAQ */
.vip-leao-faq {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(15, 5, 32, 0.95));
    padding: 3.5rem;
    border-radius: 45px;
    border: 4px solid var(--secondary);
    margin-top: 3rem;
}

.vip-leao-faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.08);
    border-left: 5px solid var(--primary);
    border-radius: 20px;
}

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

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

.vip-leao-review {
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.15), rgba(220, 20, 60, 0.15));
    padding: 2.5rem;
    border-radius: 30px;
    border: 3px solid var(--secondary);
}

.vip-leao-review-author {
    font-weight: 800;
    color: var(--primary);
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    padding: 3.5rem 2rem;
    border-top: 4px solid var(--primary);
}

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

.vip-leao-footer-section h3 {
    color: var(--primary);
    margin-bottom: 1.8rem;
}

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

.vip-leao-footer-section ul li {
    margin-bottom: 1rem;
}

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

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

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

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