/* Report Page Styles - For use with Site.master */

/* Page Title */
.page-title { 
    text-align: center; 
    margin-bottom: 50px; 
}
.page-title h1 { 
    font-family: var(--font-display); 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    color: var(--pearl); 
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.page-title h1 i { 
    color: var(--gold); 
}
.page-title p { 
    color: var(--silver); 
    font-size: 1.1rem; 
}

/* Stats Grid */
.stats-section { margin-bottom: 60px; }
.stats-section-title { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--pearl); 
    margin-bottom: 24px; 
    display: flex; 
    align-items: center; 
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stats-section-title i { color: var(--gold); font-size: 1.3rem; }
.stats-section-title::before { 
    content: ''; 
    width: 4px; 
    height: 28px; 
    background: linear-gradient(180deg, var(--ruby), var(--gold)); 
    border-radius: 2px; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px; 
}

.stat-card { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.06); 
    border-radius: 20px; 
    padding: 30px; 
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ruby), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); 
    border-color: rgba(255,255,255,0.1);
}
.stat-card:hover::before { opacity: 1; }

.stat-card__icon { 
    width: 60px; 
    height: 60px; 
    background: linear-gradient(135deg, var(--ruby), var(--gold)); 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    color: white; 
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(227, 27, 84, 0.3);
}
.stat-card__icon.blue { background: linear-gradient(135deg, #0ea5e9, #38bdf8); box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3); }
.stat-card__icon.green { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); }
.stat-card__icon.purple { background: linear-gradient(135deg, #a855f7, #c084fc); box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3); }

.stat-card__label { 
    font-size: 0.9rem; 
    color: var(--silver); 
    margin-bottom: 8px; 
}
.stat-card__value { 
    font-family: var(--font-display); 
    font-size: 2.5rem; 
    color: var(--pearl); 
    line-height: 1;
}
.stat-card__subtitle { 
    font-size: 0.85rem; 
    color: var(--silver); 
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stat-card__subtitle i { color: var(--gold); }

/* Summary Cards */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
@media (max-width: 900px) { .summary-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .summary-grid { grid-template-columns: 1fr; } }

.summary-card {
    background: linear-gradient(135deg, rgba(227, 27, 84, 0.1), rgba(245, 166, 35, 0.1));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}
.summary-card.tv {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.1));
}
.summary-card.seasons {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(192, 132, 252, 0.1));
}
.summary-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 15px 40px rgba(227, 27, 84, 0.4);
}
.summary-card.tv .summary-card__icon {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}
.summary-card.seasons .summary-card__icon {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}
.summary-card__title {
    font-size: 1.3rem;
    color: var(--pearl);
    margin-bottom: 8px;
}
.summary-card__total {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--pearl);
    line-height: 1;
    margin-bottom: 8px;
}
.summary-card__views {
    font-size: 1rem;
    color: var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.summary-card__views i { color: var(--gold); }

/* Recent Section */
.recent-section { margin-top: 60px; }
.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.recent-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}
.recent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--ruby);
}
.recent-card__poster {
    aspect-ratio: 2/3;
    overflow: hidden;
}
.recent-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.recent-card:hover .recent-card__poster img {
    transform: scale(1.1);
}
.recent-card__info {
    padding: 12px;
}
.recent-card__title {
    font-size: 0.85rem;
    color: var(--pearl);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.recent-card__date {
    font-size: 0.75rem;
    color: var(--silver);
}

/* Container */
.report-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 180px 40px 40px; /* Added top padding for header and banner ads */
}
@media (max-width: 768px) { 
    .report-container { padding: 140px 20px 20px; }
    .header {
        padding: 35px 16px !important;
    }
}
