/* brlbet - Mists of Pandaria Theme CSS */
/* 2026 SEO Optimized - Mobile First Design */

:root {
    --jade-primary: #1a5c3a;
    --jade-light: #2d8a5e;
    --jade-dark: #0d3d26;
    --gold-primary: #d4a84b;
    --gold-light: #f0c674;
    --gold-dark: #a67c3d;
    --cherry-pink: #ffb7c5;
    --cherry-dark: #e8909f;
    --mist-white: #f5f5f0;
    --bamboo-green: #4a7c59;
    --temple-brown: #3d2914;
    --shadow-dark: rgba(13, 61, 38, 0.8);
    --text-primary: #1a1a1a;
    --text-light: #f5f5f0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, var(--jade-dark) 0%, var(--jade-primary) 50%, var(--jade-dark) 100%);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

/* Mystical Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 183, 197, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header Navigation - Non-Sticky */
.site-header {
    background: linear-gradient(135deg, var(--jade-dark) 0%, var(--temple-brown) 100%);
    border-bottom: 3px solid var(--gold-primary);
    padding: 15px 0;
    position: relative;
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 168, 75, 0.5);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--mist-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.nav-link:hover {
    background: var(--jade-light);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--temple-brown);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 168, 75, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

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

.hero-title {
    font-size: 3rem;
    color: var(--gold-light);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--mist-white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.breadcrumb-item {
    color: var(--mist-white);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--gold-light);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item::after {
    content: '›';
    margin-left: 10px;
    color: var(--cherry-pink);
}

.breadcrumb-item:last-child::after {
    display: none;
}

/* Section Styling */
.content-section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: linear-gradient(145deg, rgba(26, 92, 58, 0.9) 0%, rgba(13, 61, 38, 0.95) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold-dark);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-light);
    box-shadow: 0 20px 50px rgba(212, 168, 75, 0.3);
}

.game-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--gold-dark);
}

.game-card-content {
    padding: 20px;
}

.game-card-title {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.game-card-desc {
    color: var(--mist-white);
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.game-card-link {
    display: inline-block;
    color: var(--cherry-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.game-card-link:hover {
    color: var(--gold-light);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(45, 138, 94, 0.3) 0%, rgba(26, 92, 58, 0.5) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.info-box-title {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Author Box - E-E-A-T */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.8) 0%, rgba(26, 92, 58, 0.6) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--gold-dark);
    margin: 40px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
}

.author-info h4 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.author-title {
    color: var(--cherry-pink);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--mist-white);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--jade-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--gold-light);
}

.review-location {
    font-size: 0.85rem;
    color: var(--cherry-pink);
}

.review-stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--mist-white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--jade-light);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cherry-pink);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--mist-white);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Payment Methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid var(--gold-dark);
    text-align: center;
}

.payment-item img {
    height: 40px;
    width: auto;
}

/* License Badge */
.license-section {
    text-align: center;
    padding: 40px 0;
}

.license-badge {
    max-width: 150px;
    margin: 20px auto;
    display: block;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--temple-brown) 0%, #1a1a1a 100%);
    border-top: 3px solid var(--gold-primary);
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--mist-white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.age-badge {
    width: 50px;
    height: 50px;
    margin: 15px auto;
}

/* Content Pages */
.page-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid var(--jade-light);
}

.page-content h2 {
    color: var(--gold-light);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.page-content h3 {
    color: var(--cherry-pink);
    font-size: 1.4rem;
    margin: 25px 0 12px;
}

.page-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-content ul, .page-content ol {
    margin: 15px 0 15px 30px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid var(--gold-dark);
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--jade-light);
}

.info-table th {
    background: var(--jade-dark);
    color: var(--gold-light);
    font-weight: 600;
}

.info-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Cherry Blossom Decoration */
.cherry-decoration {
    position: relative;
}

.cherry-decoration::before,
.cherry-decoration::after {
    content: '🌸';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
}

.cherry-decoration::before {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.cherry-decoration::after {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.text-pink { color: var(--cherry-pink); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
