/* ============================================================
   CSGOFast Bonus — Review Page Extended Styles
   Supplements style.css with new section components
   ============================================================ */

/* ── Hero Rating ── */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1rem 0 1.5rem;
}
.hero-rating .stars { color: var(--accent-color); font-size: 1.1rem; }
.hero-rating .rating-score { font-weight: 800; font-size: 1.1rem; color: #fff; }
.hero-rating .rating-label { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Trust Bar ── */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item i { color: var(--primary-color); }

/* ── Verdict Grid ── */
.verdict-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) { .verdict-grid { grid-template-columns: 1fr; } }

.verdict-score-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}
.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}
.score-number { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.score-max { font-size: 1rem; color: rgba(255,255,255,0.7); align-self: flex-end; margin-bottom: 6px; }
.score-breakdown { margin-top: 1.5rem; text-align: left; }
.score-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.score-row span:first-child { flex: 1; white-space: nowrap; }
.score-bar { flex: 2; height: 6px; background: var(--border-color); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; background: var(--gradient-orange); border-radius: 3px; transition: width 1s ease; }
.score-val { font-weight: 700; color: #fff; min-width: 24px; text-align: right; }

/* ── Pros/Cons Wrap ── */
.pros-cons-wrap { display: flex; flex-direction: column; gap: 1rem; }
.pros-box, .cons-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}
.pros-box { border-left: 4px solid var(--success-color); }
.cons-box { border-left: 4px solid var(--error-color); }
.pros-box h4 { color: var(--success-color); margin-bottom: 1rem; }
.cons-box h4 { color: var(--error-color); margin-bottom: 1rem; }

/* Reset conflicts from style.css and set consistent list styles */
.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros-box ul li,
.cons-box ul li {
    position: relative;
    padding: 7px 0 7px 26px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    line-height: 1.5;
}
.pros-box ul li:last-child,
.cons-box ul li:last-child { border-bottom: none; }
.pros-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
}
.cons-box ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--error-color);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
}

/* ── Data Table ── */
.table-responsive { overflow-x: auto; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.data-table th {
    background: rgba(255,107,53,0.15);
    color: var(--primary-color);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
}
.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.data-table tr:hover td { background: var(--bg-card-hover); color: #fff; }
.data-table i { margin-right: 6px; color: var(--primary-color); }

/* ── Banking Notes ── */
.banking-notes { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.note-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.note-card i { color: var(--secondary-color); margin-top: 2px; flex-shrink: 0; }
.note-card strong { color: #fff; }

/* ── Content Grid 2-col ── */
.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) { .content-grid-2 { grid-template-columns: 1fr; } }

.info-block h3 { color: var(--primary-color); margin-bottom: 1rem; }
.info-block h3 i { margin-right: 8px; }
.styled-list { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }
.styled-list li {
    padding: 6px 0 6px 1.5rem;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before { content: "›"; position: absolute; left: 0; color: var(--primary-color); font-weight: 700; }

/* ── Alert Box ── */
.alert-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,171,0,0.1);
    border: 1px solid rgba(255,171,0,0.3);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.alert-box.alert-info {
    background: rgba(255,107,53,0.08);
    border-color: rgba(255,107,53,0.25);
}
.alert-box i { color: var(--warning-color); margin-top: 2px; flex-shrink: 0; font-size: 1.1rem; }
.alert-info i { color: var(--primary-color); }
.alert-box strong { color: #fff; }

/* ── Trust Grid ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}
.trust-card:hover { border-color: var(--primary-color); transform: translateY(-4px); }
.trust-icon {
    width: 60px; height: 60px;
    background: rgba(255,107,53,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}
.trust-card h4 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.trust-card p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

/* ── Mobile Scores ── */
.mobile-scores {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}
.mobile-scores h3 { margin-bottom: 1.5rem; color: var(--primary-color); }

/* ── Screenshots ── */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.screenshot-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.screenshot-card:hover { border-color: var(--primary-color); transform: scale(1.02); }
.screenshot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.screenshot-card span {
    display: block;
    padding: 10px 14px;
    background: var(--bg-card);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ── Step Number ── */
.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ── Game Description ── */
.game-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    animation: toastIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,200,83,0.4);
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Promo code button style ── */
.promo-code {
    cursor: pointer;
    border: 2px dashed var(--primary-color);
    background: transparent;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Inter', monospace;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    letter-spacing: 3px;
    margin: 1rem 0;
}
.promo-code:hover { background: rgba(255,107,53,0.1); color: var(--primary-color); }
.promo-code i { font-size: 1.2rem; }

/* ── Popup code button ── */
.popup-code {
    background: none;
    border: 2px dashed var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
}
.popup-code:hover { background: rgba(255,107,53,0.15); }
