/* ═══════════════════════════════════════════════
   Collector Profile Page — collector_v20260512.css
   PixarCarsGarage.com
   Mobile-first. Premium dark-theme cinematic design.
   ═══════════════════════════════════════════════ */

/* ── BODY OVERRIDE — force black bg for entire page ── */
body.pcg-collector-body {
    background-color: #0a0a0a !important;
    margin: 0;
    padding: 0;
}

/* ═══════════════════════════════════════════════
   COLLECTOR HEADER — standalone premium nav
   ═══════════════════════════════════════════════ */
.collector-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

.collector-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
}

.collector-header-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.collector-header-logo-img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.collector-header-logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1;
}

.collector-header-logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}

.collector-header-nav {
    display: none;
    gap: 32px;
    align-items: center;
}

.collector-header-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.collector-header-nav a:hover {
    color: #ffffff;
}

/* Mobile hamburger */
.collector-header-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.collector-header-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.collector-header-menu.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.collector-header-menu.is-open span:nth-child(2) {
    opacity: 0;
}

.collector-header-menu.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav dropdown */
.collector-header-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    padding: 20px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.collector-header-nav.is-open a {
    font-size: 14px;
    padding: 8px 0;
}

/* Desktop nav */
@media (min-width: 768px) {
    .collector-header-inner {
        padding: 24px 60px;
    }

    .collector-header-nav {
        display: flex;
    }

    .collector-header-menu {
        display: none;
    }
}

@media (min-width: 1024px) {
    .collector-header-inner {
        padding: 28px 80px;
    }

    .collector-header-nav {
        gap: 40px;
    }

    .collector-header-nav a {
        font-size: 13px;
    }
}

/* ── SCOPE ── */
.pcg-collector-20260512 {
    --pcg-gold: #c9a94e;
    --pcg-gold-light: #d4b85c;
    --pcg-bg: #0a0a0a;
    --pcg-card-bg: #141414;
    --pcg-card-bg-hover: #1a1a1a;
    --pcg-card-border: rgba(255,255,255,0.06);
    --pcg-text: #e8e8e8;
    --pcg-text-muted: #888888;
    --pcg-text-dim: #666666;
    --pcg-white: #ffffff;
    --pcg-red: #c0392b;
    --pcg-green: #27ae60;
    --pcg-card-radius: 12px;
    --pcg-section-gap: 64px;

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: var(--pcg-text);
    font-family: 'DM Sans', sans-serif;
    background: var(--pcg-bg) !important;
}

/* ═══════════════════════════════════════════════
   HERO — Full-width, left-aligned, cinematic
   ═══════════════════════════════════════════════ */
.collector-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.collector-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.75) 40%,
        rgba(10,10,10,0.30) 70%,
        rgba(10,10,10,0.15) 100%
    );
    z-index: 1;
}

.collector-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 100px 20px 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.collector-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--pcg-white);
    margin: 0 0 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 600px;
}

.collector-hero-subtitle {
    font-size: 14px;
    color: var(--pcg-text-muted);
    margin: 0 0 28px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ── HERO STAT BAR ── */
.collector-hero-stats {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 28px;
}

.collector-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 24px 8px 0;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.collector-hero-stat:first-child {
    padding-left: 0;
}

.collector-hero-stat:last-child {
    border-right: none;
    padding-right: 0;
}

.collector-hero-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--pcg-white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.collector-hero-stat-label {
    font-size: 10px;
    color: var(--pcg-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    font-weight: 500;
}

.collector-hero-stat-divider {
    display: none;
}

/* ── HERO CTA BUTTONS ── */
.collector-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.collector-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.collector-btn-filled {
    background: linear-gradient(135deg, #c9a94e 0%, #a8882e 100%);
    color: #0a0a0a;
    border: 1px solid #c9a94e;
    font-weight: 700;
}

.collector-btn-filled:hover {
    background: linear-gradient(135deg, #d4b85c 0%, #c9a94e 100%);
    border-color: #d4b85c;
}

.collector-btn-outline {
    background: transparent;
    color: var(--pcg-white);
    border: 1px solid var(--pcg-gold);
}

.collector-btn-outline:hover {
    background: rgba(201,169,78,0.10);
    color: var(--pcg-gold);
}

.collector-btn-sm {
    padding: 8px 20px;
    font-size: 11px;
}

/* ═══════════════════════════════════════════════
   SECTIONS — centered content within black bg
   ═══════════════════════════════════════════════ */
.collector-section {
    margin-top: var(--pcg-section-gap);
    padding: 0 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.collector-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.collector-section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--pcg-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.collector-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--pcg-white);
    margin: 0;
    line-height: 1.25;
}

/* ═══════════════════════════════════════════════
   CROWN JEWELS — Dark card with gradient bg
   ═══════════════════════════════════════════════ */
.collector-crown-wrap {
    background: linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
    border: 1px solid var(--pcg-card-border);
    border-radius: var(--pcg-card-radius);
    padding: 32px 20px 24px;
    margin-top: var(--pcg-section-gap);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════
   CARD GRID (Crown Jewels — 4 cards)
   ═══════════════════════════════════════════════ */
.collector-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ── Activity Label ── */
.collector-activity-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    border: 1px solid var(--pcg-gold, #c9a94e);
    padding: 8px 20px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════
   CARD GRID 5-col (Recently Added, On the Hunt)
   ═══════════════════════════════════════════════ */
.collector-cards-grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ═══════════════════════════════════════════════
   CARD
   ═══════════════════════════════════════════════ */
.collector-card {
    display: block;
    background: var(--pcg-card-bg);
    border-radius: var(--pcg-card-radius);
    border: 1px solid var(--pcg-card-border);
    overflow: hidden;
    text-decoration: none;
    color: var(--pcg-text);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.collector-card:hover {
    border-color: rgba(201,169,78,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.collector-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0e0e0e;
}

.collector-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── CARD BADGES ── */
.collector-card-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    line-height: 1.3;
}

/* Rarity badges */
.collector-badge-ultra-rare {
    background: var(--pcg-gold);
    color: #0a0a0a;
}

.collector-badge-very-rare {
    background: var(--pcg-gold);
    color: #0a0a0a;
}

.collector-badge-rare {
    background: rgba(201,169,78,0.20);
    color: var(--pcg-gold);
    border: 1px solid rgba(201,169,78,0.35);
}

.collector-badge-chase {
    background: rgba(155,89,182,0.20);
    color: #c39bd3;
    border: 1px solid rgba(155,89,182,0.35);
}

.collector-badge-super-chase {
    background: #9b59b6;
    color: #ffffff;
}

.collector-badge-short-run {
    background: rgba(201,169,78,0.15);
    color: var(--pcg-gold-light);
    border: 1px solid rgba(201,169,78,0.25);
}

.collector-badge-hard-to-find {
    background: rgba(230,126,34,0.20);
    color: #e67e22;
    border: 1px solid rgba(230,126,34,0.30);
}

/* Status badges */
.collector-badge-new {
    background: rgba(39,174,96,0.20);
    color: #2ecc71;
    border: 1px solid rgba(39,174,96,0.30);
}

.collector-badge-wanted {
    background: rgba(192,57,43,0.25);
    color: #e74c3c;
    border: 1px solid rgba(192,57,43,0.35);
}

/* ── CARD INFO ── */
.collector-card-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.collector-card-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--pcg-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.collector-card-meta {
    font-size: 12px;
    color: var(--pcg-text-muted);
    font-weight: 400;
}

.collector-card-value {
    font-size: 13px;
    color: var(--pcg-gold);
    font-weight: 600;
    margin-top: 4px;
}

.collector-card-time {
    font-size: 11px;
    color: var(--pcg-text-dim);
    font-style: italic;
}

/* ── WANTED CARD ACCENT ── */
.collector-card-wanted {
    border-color: rgba(192,57,43,0.15);
}

.collector-card-wanted:hover {
    border-color: rgba(192,57,43,0.35);
}

/* ═══════════════════════════════════════════════
   COLLECTION FOCUS SECTION
   ═══════════════════════════════════════════════ */
.collector-focus-section {
    margin-top: var(--pcg-section-gap);
    background: #f5f2ed;
    padding: 60px 20px;
}

.collector-focus-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.collector-focus-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.collector-focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.collector-focus-content {
    padding: 0;
}

.collector-focus-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a7535;
    margin-bottom: 12px;
}

.collector-focus-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 16px;
}

.collector-focus-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 560px;
}

.collector-focus-traits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collector-focus-trait {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.collector-focus-trait-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.collector-focus-trait-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════════
   INTERNAL LINKS (SEO NAV)
   ═══════════════════════════════════════════════ */
.collector-links {
    margin-top: var(--pcg-section-gap);
    padding: 48px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.collector-links a {
    font-size: 13px;
    color: var(--pcg-text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.collector-links a:hover {
    color: var(--pcg-gold);
}

/* ═══════════════════════════════════════════════
   TABLET (600px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 600px) {
    .collector-hero {
        min-height: 520px;
    }

    .collector-hero-content {
        padding: 100px 40px 40px;
    }

    .collector-hero-title {
        font-size: 44px;
    }

    .collector-hero-stat-value {
        font-size: 28px;
    }

    .collector-hero-stat {
        padding: 8px 28px 8px 0;
    }

    .collector-cards-grid {
        gap: 20px;
    }

    .collector-cards-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .collector-focus-traits {
        flex-direction: row;
        gap: 32px;
    }
}

/* ═══════════════════════════════════════════════
   DESKTOP (768px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 768px) {
    .pcg-collector-20260512 {
        --pcg-section-gap: 80px;
    }

    .collector-hero {
        min-height: 560px;
    }

    .collector-hero-content {
        padding: 80px 60px 48px;
    }

    .collector-hero-title {
        font-size: 52px;
        max-width: 550px;
    }

    .collector-hero-subtitle {
        font-size: 15px;
    }

    .collector-hero-stat {
        padding: 8px 32px 8px 0;
    }

    .collector-hero-stat:not(:first-child) {
        padding-left: 32px;
    }

    .collector-hero-stat-value {
        font-size: 32px;
    }

    .collector-section {
        padding: 0 60px;
    }

    .collector-section-title {
        font-size: 28px;
    }

    .collector-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .collector-cards-grid-5 {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }

    .collector-crown-wrap {
        padding: 40px 32px 28px;
        margin-left: 60px;
        margin-right: 60px;
    }

    .collector-focus-section {
        padding: 80px 60px;
    }

    .collector-focus-inner {
        flex-direction: row;
        gap: 48px;
        align-items: center;
    }

    .collector-focus-image {
        width: 40%;
        flex-shrink: 0;
    }

    .collector-focus-content {
        flex: 1;
    }

    .collector-focus-title {
        font-size: 32px;
    }

    .collector-links {
        padding: 48px 60px;
    }
}

/* ═══════════════════════════════════════════════
   LARGE DESKTOP (1024px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .pcg-collector-20260512 {
        --pcg-section-gap: 100px;
    }

    .collector-hero {
        min-height: 600px;
    }

    .collector-hero-content {
        padding: 100px 80px 60px;
    }

    .collector-hero-title {
        font-size: 58px;
    }

    .collector-hero-stat {
        padding: 8px 40px 8px 0;
    }

    .collector-hero-stat:not(:first-child) {
        padding-left: 40px;
    }

    .collector-hero-stat-value {
        font-size: 36px;
    }

    .collector-btn {
        padding: 14px 32px;
        font-size: 13px;
    }

    .collector-section-title {
        font-size: 32px;
    }

    .collector-focus-section {
        padding: 80px 80px;
    }

    .collector-focus-title {
        font-size: 36px;
    }
}

/* ═══════════════════════════════════════════════
   WIDE DESKTOP (1280px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1280px) {
    .collector-hero-title {
        font-size: 64px;
        max-width: 650px;
    }

    .collector-crown-wrap {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ═══════════════════════════════════════════════
   COLLECTOR FOOTER
   ═══════════════════════════════════════════════ */
.collector-footer {
    background: #0a0a0a !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0;
    padding: 0;
}

.collector-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.collector-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collector-footer-logo {
    display: inline-block;
    text-decoration: none;
}

.collector-footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.collector-footer-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin: 0;
}

.collector-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.collector-footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.collector-footer-col a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.collector-footer-col a:hover {
    color: var(--pcg-gold, #c9a94e);
}

.collector-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
}

.collector-footer-copy p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
    margin: 0;
}

/* ── Footer Desktop ── */
@media (min-width: 768px) {
    .collector-footer-inner {
        grid-template-columns: 1.2fr 2fr 1fr;
        gap: 0 60px;
        padding: 56px 60px 40px;
        align-items: start;
    }

    .collector-footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 48px;
    }

    .collector-footer-copy {
        border-top: none;
        padding-top: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .collector-footer-copy p {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .collector-footer-inner {
        padding: 60px 80px 44px;
    }

    .collector-footer-logo-img {
        height: 48px;
    }
}
