/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 90%;
    max-width: 500px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #555;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Animations */
@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Accordion Styles */
.review-accordion {
    width: 100%;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    background: rgba(139, 47, 201, 0.2);
    border: 1px solid rgba(139, 47, 201, 0.5);
    color: #e0e0e0;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header:after {
    content: '▼';
    font-size: 0.8rem;
}

.accordion-header.active {
    background: rgba(139, 47, 201, 0.4);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header.active:after {
    content: '▲';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-content.show {
    max-height: 500px;
    /* Arbitrary large height */
    overflow-y: auto;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    white-space: pre-wrap;
}