.report-container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-y: auto;
    height: 100%;
}

.report-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.section-desc {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

/* Section 1: Summary */
.summary-content {
    display: flex;
    justify-content: center;
}

.score-main {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.circular-chart-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.chart-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.chart-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.chart-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-red);
}

.score-text {
    text-align: left;
}

.score-text .main-msg {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.score-text .sub-msg {
    font-size: 1.5rem;
    font-weight: 700;
}

.score-text span.gold {
    color: var(--gold);
}

.score-text span.red {
    color: var(--neon-red);
    font-size: 1.8rem;
}

/* Section 2: Ranking */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ranking-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rank-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    width: 40px;
}

.game-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.game-info {
    flex: 1;
}

.game-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.game-rounds {
    font-size: 0.75rem;
    color: #666;
}

.game-profit {
    text-align: right;
}

.profit-val {
    display: block;
    color: var(--neon-red);
    font-weight: 800;
}

.profit-label {
    font-size: 0.6rem;
    color: #555;
}

/* Section 3: Quote */
.quote-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px dashed rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    text-align: center;
}

.quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
}

.peak-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.p-stat {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.p-label {
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 5px;
}

.p-val {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Section 4: Theme Quote */
.theme-quote {
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border: none;
}

.math-law {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.4;
}

.brand {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
}

/* Actions */
.report-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.share-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

.restart-btn {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #444;
    background: transparent;
    color: #888;
    font-weight: 700;
    cursor: pointer;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards ease-out;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .score-main {
        gap: 20px;
    }

    .circular-chart-container {
        width: 150px;
        height: 150px;
    }

    .chart-value {
        font-size: 1.8rem;
    }

    .score-text .main-msg {
        font-size: 1rem;
    }

    .score-text .sub-msg {
        font-size: 1.2rem;
    }

    .score-text span.red {
        font-size: 1.4rem;
    }

    .math-law {
        font-size: 1.2rem;
    }
}