/* ===== REVIEW PAGE STYLES ===== */

.review-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #999;
}

.breadcrumb a {
    color: #ff9000;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.site-logo {
    height: 80px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.rating-box {
    display: inline-block;
    background: #ff9000;
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.content-section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.content-section h2 {
    color: #ff9000;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff9000;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

.content-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros,
.cons {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
}

.pros h3 {
    color: #28a745;
}

.cons h3 {
    color: #dc3545;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 8px 0;
    color: #ccc;
}

.pros li:before {
    content: "✅ ";
    margin-right: 10px;
}

.cons li:before {
    content: "❌ ";
    margin-right: 10px;
}

.faq-section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.faq-question {
    color: #ff9000;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-answer {
    color: #ccc;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(45deg, #ff9000, #ffb84d);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-title {
    color: #000;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-text {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-button {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.internal-links {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.internal-links h3 {
    color: #ff9000;
    margin-bottom: 15px;
}

.internal-links ul {
    list-style: none;
    padding: 0;
}

.internal-links li {
    margin-bottom: 10px;
}

.internal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.internal-links a:hover {
    color: #ff9000;
}

/* ===== RESPONSIVE REVIEW ===== */
@media (max-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 25px;
    }

    .content-section {
        padding: 20px;
    }
}