/* Review Aggregator Theme (Trustpilot Style) */
:root {
    --bg-color: #fcfbfb;
    --text-main: #1c1c1c;
    --text-muted: #696a6a;
    --star-color: #00b67a;
    --star-empty: #dcdce6;
    --card-bg: #ffffff;
    --border-color: #e5e5e5;
    --header-bg: #1c1c1c;
    --alert-red: #ff3722;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--header-bg);
    color: white;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--star-color);
}

.company-header {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.company-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.aggregate-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stars-large {
    display: flex;
    gap: 2px;
}

.star {
    width: 30px;
    height: 30px;
    background-color: var(--alert-red);
    display: inline-block;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.empty {
    background-color: var(--star-empty);
}

.rating-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.warning-banner {
    background-color: #fff0f0;
    border: 1px solid var(--alert-red);
    color: var(--alert-red);
    padding: 15px;
    border-radius: 4px;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
    font-weight: 500;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reviews-container {
    padding: 3rem 0;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

.reviewer-name {
    font-weight: bold;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.review-stars .star {
    width: 20px;
    height: 20px;
}

.review-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-body {
    color: #333;
    margin-bottom: 15px;
}

.review-source {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

.verified-badge {
    color: var(--star-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

footer {
    background: var(--header-bg);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}