/* ==========================================================================
   GPT Offer Pages - Styles
   CLAUDE.md: 16px standard, 8px mobile horizontal, 32px vertical sections
   Font: Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif
   ========================================================================== */

/* Shadows
   ========================================================================== */

:root {
    --gpt-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --gpt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --gpt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --gpt-accent: #1F6A95;
    --gpt-accent-light: #3b9dd1;
}

/* Layout
   ========================================================================== */

.gpt-offer-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

.gpt-offer-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

.gpt-offer-main {
    min-width: 0;
}

/* Breadcrumbs (full-width, above hero)
   ========================================================================== */

.gpt-offer-breadcrumbs {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    padding: 0;
}

.gpt-offer-breadcrumbs a {
    color: #1F6A95;
    text-decoration: none;
}

.gpt-offer-breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 4px;
    color: #cbd5e1;
}

.breadcrumb-current {
    color: #374151;
}

/* Hero Section (dark, full-width)
   ========================================================================== */

.gpt-offer-hero {
    background: #1E293B;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 16px;
    color: white;
    box-shadow: var(--gpt-shadow-lg);
}

.gpt-offer-hero__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.gpt-offer-hero__info {
    flex: 1;
}

.gpt-offer-hero__title {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.gpt-offer-hero__platform {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.gpt-offer-hero__subtitle {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.gpt-offer-hero__payout {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gpt-offer-boosted-badge {
    display: inline-block;
    background: #16A34A;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.gpt-offer-hero__image {
    flex-shrink: 0;
}

.gpt-offer-hero__image img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Stat pills */

.gpt-offer-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.gpt-offer-hero__pill {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.gpt-offer-hero__pill--freshness-active {
    background: rgba(22, 163, 74, 0.2);
    border-color: rgba(22, 163, 74, 0.3);
    color: #4ade80;
}

.gpt-offer-hero__pill--freshness-recent {
    background: rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.3);
    color: #fde047;
}

.gpt-offer-hero__pill--freshness-stale {
    background: rgba(148, 163, 184, 0.2);
    border-color: rgba(148, 163, 184, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

/* Top 3 Sites (inside hero) */

.gpt-offer-top-sites__title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.gpt-offer-top-sites__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gpt-offer-top-site {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.gpt-offer-top-site:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.gpt-offer-top-site--rank-1 {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
}

.gpt-offer-top-site__rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.gpt-offer-top-site--rank-1 .gpt-offer-top-site__rank {
    background: #f59e0b;
    color: white;
}

.gpt-offer-top-site--rank-2 .gpt-offer-top-site__rank {
    background: #9ca3af;
    color: white;
}

.gpt-offer-top-site--rank-3 .gpt-offer-top-site__rank {
    background: #d97706;
    color: white;
}

.gpt-offer-top-site__name {
    flex: 1;
    font-weight: 500;
}

.gpt-offer-top-site__payout {
    font-weight: 700;
    color: #4ade80;
}

.gpt-offer-top-site__arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

/* Section Container
   ========================================================================== */

.gpt-offer-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--gpt-shadow-sm);
    position: relative;
    overflow: hidden;
}

.gpt-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gpt-accent), var(--gpt-accent-light));
}

.gpt-offer-section__title {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
}

.gpt-offer-section p {
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.gpt-offer-section p:last-child {
    margin-bottom: 0;
}

/* Meta Card
   ========================================================================== */

.gpt-offer-meta-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--gpt-shadow-sm);
    position: relative;
    overflow: hidden;
}

.gpt-offer-meta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gpt-accent), var(--gpt-accent-light));
}

.gpt-offer-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.gpt-offer-meta-row:last-of-type {
    border-bottom: none;
}

.gpt-offer-meta-label {
    font-weight: 500;
    color: #64748b;
    font-size: 13px;
}

.gpt-offer-meta-value {
    font-weight: 500;
    color: #374151;
}

.completions-help {
    font-weight: 400;
    font-size: 11px;
    color: #9ca3af;
}

.completions-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
}

.completions-divider {
    color: #cbd5e1;
    margin: 0 2px;
}

/* Heat Indicator */

.gpt-offer-heat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #f1f5f9;
    font-size: 11px;
    color: #9ca3af;
}

.heat-indicator {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    vertical-align: middle;
    margin-right: 4px;
}

.heat-bar {
    width: 4px;
    border-radius: 1px;
    background: #e5e7eb;
    transition: background 0.2s;
}

.heat-bar--1 { height: 7px; }
.heat-bar--2 { height: 10px; }
.heat-bar--3 { height: 13px; }
.heat-bar--4 { height: 16px; }

.heat-bar.active {
    background: #9ca3af;
}

.heat-very-hot .heat-bar.active {
    background: #ef4444;
}

.heat-hot .heat-bar.active {
    background: #f97316;
}

.heat-steady .heat-bar.active {
    background: #eab308;
}

.heat-cold .heat-bar.active {
    background: #94a3b8;
}

.gpt-offer-about-context {
    color: #64748b;
    font-size: 13px;
}

/* Offer Guide Steps */

.gpt-offer-guide {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: guide-step;
}

.gpt-offer-guide__step {
    counter-increment: guide-step;
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}

.gpt-offer-guide__step:last-child {
    margin-bottom: 0;
}

.gpt-offer-guide__step::before {
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #1F6A95;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gpt-offer-guide__step strong {
    display: block;
    font-size: 14px;
    color: #1E293B;
    margin-bottom: 4px;
}

.gpt-offer-guide__step p {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.gpt-offer-guide__step a {
    color: #1F6A95;
    text-decoration: none;
    font-weight: 500;
}

.gpt-offer-guide__step a:hover {
    text-decoration: underline;
}

/* Disclaimer */

.gpt-offer-disclaimer {
    background: #f8f9fa;
    border-color: #e5e7eb;
    box-shadow: none;
}

.gpt-offer-disclaimer::before {
    display: none;
}

.gpt-offer-disclaimer__text {
    font-size: 12px;
    color: #64748b;
    font-style: italic;
}

/* Payout History Chart
   ========================================================================== */

.gpt-offer-chart-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 16px;
}

.gpt-offer-chart-stat {
    color: #64748b;
    font-size: 14px;
}

.gpt-offer-chart-stat strong {
    color: #16A34A;
    font-size: 16px;
}

.gpt-offer-chart-container {
    height: 250px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

/* Task Breakdown
   ========================================================================== */

.gpt-offer-task-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gpt-offer-task-grid {
    display: grid;
    min-width: 500px;
}

.gpt-offer-task-grid--cols-1 { grid-template-columns: 2fr 1fr; }
.gpt-offer-task-grid--cols-2 { grid-template-columns: 2fr repeat(2, 1fr); }
.gpt-offer-task-grid--cols-3 { grid-template-columns: 2fr repeat(3, 1fr); }
.gpt-offer-task-grid--cols-4 { grid-template-columns: 2fr repeat(4, 1fr); }
.gpt-offer-task-grid--cols-5 { grid-template-columns: 2fr repeat(5, 1fr); }

.gpt-offer-task-header {
    display: contents;
}

.gpt-offer-task-header__task,
.gpt-offer-task-header__site {
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
}

.gpt-offer-task-header__task {
    text-align: left;
}

.gpt-offer-task-header__name {
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

.gpt-offer-task-totals {
    display: contents;
}

.gpt-offer-task-totals__label {
    padding: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.gpt-offer-task-totals__cell {
    padding: 8px 4px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.gpt-offer-task-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #16A34A;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.gpt-offer-task-site-btn:hover {
    background: #15803D;
    text-decoration: none;
}

.gpt-offer-task-row {
    display: contents;
}

.gpt-offer-task-row__name {
    padding: 8px;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #f1f5f9;
}

.gpt-offer-task-row__payout {
    padding: 8px;
    text-align: center;
    font-size: 13px;
    font-family: 'Roboto Mono', monospace;
    color: #374151;
    border-bottom: 1px solid #f1f5f9;
}

/* Sites Comparison
   ========================================================================== */

.gpt-offer-sites-grid {
    border-radius: 8px;
    overflow: hidden;
}

.gpt-offer-sites-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 1fr;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.gpt-offer-sites-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 1fr;
    gap: 8px;
    padding: 8px 16px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.gpt-offer-sites-row:last-child {
    border-bottom: none;
}

.gpt-offer-sites-row__rank {
    font-weight: 700;
    font-size: 14px;
    color: #374151;
}

.gpt-offer-sites-row__rank.rank-gold {
    color: #f59e0b;
}

.gpt-offer-sites-row__rank.rank-silver {
    color: #9ca3af;
}

.gpt-offer-sites-row__rank.rank-bronze {
    color: #d97706;
}

.gpt-offer-sites-row__payout {
    font-weight: 700;
    color: #16A34A;
}

.gpt-offer-site-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background: #f0f8ff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.gpt-offer-site-join-btn:hover {
    border-color: var(--gpt-accent);
    background: white;
    box-shadow: var(--gpt-shadow-sm);
    text-decoration: none;
}

.gpt-offer-site-join-arrow {
    color: #9ca3af;
}

/* Recommended Badge
   ========================================================================== */

.gpt-offer-recommended-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Badge on dark hero background */
.gpt-offer-hero .gpt-offer-recommended-badge {
    background: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* Recommendation Section
   ========================================================================== */

.gpt-offer-recommendation {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.gpt-offer-recommendation::before {
    background: linear-gradient(90deg, #16A34A, #4ade80);
}

.gpt-offer-recommendation__card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
}

.gpt-offer-recommendation__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.gpt-offer-recommendation__logo {
    flex-shrink: 0;
}

.gpt-offer-recommendation__info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gpt-offer-recommendation__name {
    font-weight: 700;
    font-size: 16px;
    color: #1E293B;
}

.gpt-offer-recommendation__payout {
    font-weight: 700;
    font-size: 16px;
    color: #16A34A;
}

.gpt-offer-recommendation__reason {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.gpt-offer-recommendation__btn {
    background: #16A34A;
}

.gpt-offer-recommendation__btn:hover {
    background: #15803D;
    color: white;
}

/* Feedback Section (v3 component styles)
   ========================================================================== */

.gpt-offer-section .offer-feedback-section {
    margin: 0;
}

.gpt-offer-section .feedback-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
}

.feedback-card:last-child {
    margin-bottom: 0;
}

.feedback-title {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-count {
    font-weight: 400;
    color: #64748b;
    font-size: 14px;
}

.vote-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.15s;
}

.vote-btn:hover:not(:disabled) {
    border-color: #9ca3af;
    background: #f8f9fa;
}

.vote-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.vote-btn.vote-up.active {
    background: #f0fff4;
    border-color: #16A34A;
    color: #16A34A;
}

.vote-btn.vote-down.active {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

.vote-icon { font-size: 16px; }
.vote-count { font-size: 13px; color: #64748b; }

.completion-rate { margin-top: 8px; }

.rate-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.rate-fill {
    height: 100%;
    background: #16A34A;
    border-radius: 4px;
    transition: width 0.3s;
}

.rate-text {
    font-size: 13px;
    color: #64748b;
}

.login-prompt {
    font-size: 14px;
    color: #64748b;
    margin: 8px 0 0 0;
}

.login-prompt a {
    color: #1F6A95;
    text-decoration: none;
    font-weight: 500;
}

.comments-list { margin-bottom: 16px; }

.no-comments {
    color: #64748b;
    font-style: italic;
    padding: 16px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.comment-item {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
}

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

.comment-author { font-weight: 600; color: #1E293B; font-size: 14px; }
.comment-time { font-size: 12px; color: #9ca3af; }
.comment-text { font-size: 14px; color: #374151; line-height: 1.6; }

.comment-form { margin-top: 16px; }

.comment-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
}

.comment-input:focus {
    outline: none;
    border-color: #1F6A95;
}

.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.char-count { font-size: 12px; color: #9ca3af; }

.comment-submit-btn {
    padding: 8px 16px;
    background: #1F6A95;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.comment-submit-btn:hover {
    background: #034063;
}

.comment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sidebar
   ========================================================================== */

.gpt-offer-sidebar {
    position: sticky;
    top: 16px;
}

.gpt-offer-sidebar__card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--gpt-shadow-sm);
}

.gpt-offer-sidebar__title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
}

/* TOC */

.gpt-offer-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gpt-offer-toc__list li {
    margin-bottom: 4px;
}

.gpt-offer-toc__link {
    display: block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
}

.gpt-offer-toc__link:hover {
    background: #f0f8ff;
    color: #1F6A95;
    text-decoration: none;
}

.gpt-offer-toc__link.active {
    background: #f0f8ff;
    color: #1F6A95;
    font-weight: 600;
}

/* CTA */

.gpt-offer-sidebar__cta p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #64748b;
}

.gpt-offer-cta-btn {
    display: block;
    text-align: center;
    padding: 8px 16px;
    background: #1F6A95;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.gpt-offer-cta-btn:hover {
    background: #034063;
    text-decoration: none;
    color: white;
}

.gpt-offer-cta-btn--outline {
    background: white;
    color: #1F6A95;
    border: 2px solid #1F6A95;
}

.gpt-offer-cta-btn--outline:hover {
    background: #f0f8ff;
    color: #1F6A95;
}

/* Best Site */

.gpt-offer-sidebar__best-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f0fff4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.gpt-offer-sidebar__best-link:hover {
    border-color: #16A34A;
    box-shadow: var(--gpt-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.gpt-offer-sidebar__best-name {
    flex: 1;
    font-weight: 500;
}

.gpt-offer-sidebar__best-payout {
    font-weight: 700;
    color: #16A34A;
}

/* Related Offers
   ========================================================================== */

.gpt-offer-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.gpt-offer-related__card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    box-shadow: var(--gpt-shadow-sm);
    transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
}

.gpt-offer-related__card:hover {
    border-color: var(--gpt-accent);
    box-shadow: var(--gpt-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.gpt-offer-related__image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.gpt-offer-related__name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1E293B;
}

.gpt-offer-related__payout {
    display: block;
    font-size: 13px;
    color: #16A34A;
    font-weight: 500;
}

.gpt-offer-related__source {
    display: block;
    font-size: 12px;
    color: #94A3B8;
}

.gpt-offer-related__more {
    text-align: center;
}

/* Country Flags */

.country-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.country-flag {
    font-size: 16px;
    line-height: 1;
}

.more-countries {
    font-size: 11px;
    color: #9ca3af;
    margin-left: 4px;
}

/* Freshness Badge */

.gpt-offer-freshness {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.freshness-active {
    background: #dcfce7;
    color: #16A34A;
}

.freshness-recent {
    background: #fef9c3;
    color: #a16207;
}

.freshness-stale {
    background: #f1f5f9;
    color: #64748b;
}

/* Platform Tags */

.platform-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 4px;
    vertical-align: middle;
    background: #f1f5f9;
    color: #475569;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES (largest to smallest per CLAUDE.md)
   ========================================================================== */

@media (max-width: 900px) {
    .gpt-offer-layout {
        grid-template-columns: 1fr 250px;
        gap: 16px;
    }

    .gpt-offer-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpt-offer-sites-header,
    .gpt-offer-sites-row {
        grid-template-columns: 50px 1fr 80px 1fr;
    }
}

@media (max-width: 768px) {
    .gpt-offer-page {
        padding: 16px 8px;
    }

    .gpt-offer-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gpt-offer-sidebar {
        position: static;
    }

    .gpt-offer-hero {
        padding: 16px;
    }

    .gpt-offer-hero__title {
        font-size: 1.25rem;
    }

    .gpt-offer-hero__image img {
        width: 64px;
        height: 64px;
    }

    .gpt-offer-related__grid {
        grid-template-columns: 1fr;
    }

    .gpt-offer-sites-header {
        display: none;
    }

    .gpt-offer-sites-row {
        grid-template-columns: 40px 1fr;
        gap: 4px;
        padding: 8px;
    }

    .gpt-offer-sites-row__payout {
        grid-column: 2;
    }

    .gpt-offer-sites-row__action {
        grid-column: 1 / -1;
    }

    .gpt-offer-chart-stats {
        flex-direction: column;
        gap: 8px;
    }

    .gpt-offer-chart-container {
        height: 200px;
    }

    .gpt-offer-toc {
        display: none;
    }

    .vote-buttons {
        flex-direction: column;
    }

    .vote-btn {
        width: 100%;
        justify-content: center;
    }

    .comment-form-footer {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .char-count {
        text-align: right;
    }

    .comment-submit-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .gpt-offer-hero__top {
        gap: 8px;
    }

    .gpt-offer-hero__image img {
        width: 56px;
        height: 56px;
    }

    .gpt-offer-top-site {
        padding: 8px;
    }

    .gpt-offer-task-grid {
        min-width: 400px;
    }
}
