/* Meta Page Styles */
.meta-page {
    padding: 40px 0;
}

.meta-header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideIn 0.6s ease-out;
}

.meta-header h1 {
    font-family: 'Lilita One', cursive;
    font-size: 3rem;
    color: var(--brawl-yellow);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

.meta-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Meta Tiers */
.meta-tiers {
    margin-bottom: 50px;
}

.tier-section {
    margin-bottom: 40px;
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.tier-section:nth-child(1) { animation-delay: 0.1s; }
.tier-section:nth-child(2) { animation-delay: 0.2s; }
.tier-section:nth-child(3) { animation-delay: 0.3s; }
.tier-section:nth-child(4) { animation-delay: 0.4s; }
.tier-section:nth-child(5) { animation-delay: 0.5s; }

.tier-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.tier-s {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.tier-a {
    background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
}

.tier-b {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
}

.tier-c {
    background: linear-gradient(135deg, #808080 0%, #606060 100%);
}

.tier-d {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
}

.tier-letter {
    font-family: 'Lilita One', cursive;
    font-size: 3rem;
    color: var(--brawl-darker);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    background: var(--brawl-darker);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.tier-title {
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    color: var(--brawl-darker);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.tier-brawlers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-brawler {
    background: var(--bg-card);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.meta-brawler:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--brawl-yellow);
    box-shadow: var(--shadow-glow);
}

.meta-brawler-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid var(--brawl-yellow);
}

.meta-brawler-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.meta-brawler-info {
    flex: 1;
}

.meta-brawler-info h4 {
    font-family: 'Lilita One', cursive;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.meta-brawler-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-brawler-stats {
    display: flex;
    gap: 8px;
}

.meta-stat {
    background: rgba(255, 193, 7, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brawl-yellow);
    border: 1px solid var(--brawl-yellow);
}

/* Meta Analysis Section */
.meta-analysis {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--brawl-yellow);
    animation: slideIn 0.6s ease-out;
}

.meta-analysis h2 {
    font-family: 'Lilita One', cursive;
    font-size: 2rem;
    color: var(--brawl-yellow);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.analysis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.analysis-card {
    background: rgba(15, 52, 96, 0.6);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.analysis-card:hover {
    border-color: var(--brawl-yellow);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.analysis-card h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.3rem;
    color: var(--brawl-yellow);
    margin-bottom: 10px;
}

.analysis-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .meta-header h1 {
        font-size: 2rem;
    }
    
    .tier-brawlers {
        flex-direction: column;
    }
    
    .meta-brawler {
        min-width: 100%;
    }
    
    .analysis-content {
        grid-template-columns: 1fr;
    }
}
