/* Extracted from backend/core/templates/core/platform_detail_crypto_exchange.html */
body.page-platform-crypto {
            --bg-base: #FFFFFF;
            --bg-body: #F8FAFC;
            --bg-subtle: #FAFAFA;
            --bg-surface: #F1F5F9;
            --bg-gradient: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
            --text-primary: #1E293B;
            --text-secondary: #475569;
            --text-tertiary: #94A3B8;
            --border-light: #E2E8F0;
            --border-hover: #CBD5E1;
            --accent-primary: #6366F1;
            --accent-hover: #4F46E5;
            --accent-soft: #EEF2FF;
            --status-success: #10B981;
            --status-warning: #F59E0B;
            --status-danger: #EF4444;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            --shadow-floating: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: var(--bg-body); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; font-weight: 600; font-size: 14px; border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); border: 1px solid transparent; }
        .btn-sm { padding: 8px 16px; font-size: 13px; }
        .btn-primary { background-color: var(--accent-primary); color: #FFF; box-shadow: var(--shadow-sm); }
        .btn-primary:hover { background-color: var(--accent-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }
        .btn-dark { background-color: var(--text-primary); color: #FFF; }
        .btn-dark:hover { background-color: var(--btn-primary-hover-bg); color: var(--btn-primary-hover-fg); box-shadow: var(--shadow-md); }
        .btn-outline { background-color: var(--bg-base); color: var(--text-primary); border: 1px solid var(--border-light); }
        .btn-outline:hover { border-color: var(--border-hover); background-color: var(--bg-surface); }
        .badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; background: var(--bg-surface); color: var(--text-secondary); border: 1px solid var(--border-light); }
        .badge.crypto { background: var(--accent-soft); color: var(--accent-primary); border-color: #C7D2FE; }
                /* Profile hero — same grid-line treatment as core/home.html marketing hero */
        .profile-hero {
            position: relative;
            overflow: hidden;
            padding: clamp(3rem, 5vw, 5.25rem) 0;
            background-color: var(--bg-subtle, var(--bg-body));
            border-bottom: 1px solid var(--border-light);
        }
        .profile-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, var(--border-light) 1px, transparent 1px),
                linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.5;
            z-index: 0;
            mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
            pointer-events: none;
        }
        .profile-hero .container {
            position: relative;
            z-index: 1;
        }
        .profile-hero__grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
            gap: clamp(1.5rem, 4vw, 3rem);
            align-items: start;
        }
        .profile-hero__identity {
            display: flex;
            gap: clamp(1rem, 2.5vw, 1.75rem);
            align-items: flex-start;
            min-width: 0;
        }
        .profile-hero__metrics {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .profile-hero__metrics-kicker {
            margin: 0;
            padding-left: 2px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-tertiary);
        }
        .hero-logo {
            width: clamp(88px, 11vw, 120px);
            height: clamp(88px, 11vw, 120px);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            color: var(--accent-primary);
        }
        .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: var(--radius-xl);
        }
        .hero-info {
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 2vw, 25px);
            padding-top: 2px;
            min-width: 0;
            flex: 1;
        }
        .hero-title-wrap {
            margin: 0;
        }
        .hero-title {
            margin: 0;
            font-size: clamp(1.625rem, 3.5vw, 2.25rem);
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            line-height: 1.12;
        }
        .profile-hero__badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.2;
        }
        .hero-title-wrap .profile-hero__badges {
            width: 100%;
            margin-top: clamp(8px, 1.2vw, 12px);
        }
        .profile-hero__badges .badge {
            font-size: 12px;
            font-weight: 600;
            line-height: 1.2;
        }
        .profile-hero__badges a.badge {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }
        .profile-hero__badges a.badge:hover {
            border-color: var(--border-hover);
            box-shadow: var(--shadow-sm);
        }
        .badge.profile-claimed {
            background: #ecfdf5;
            color: #047857;
            border-color: #a7f3d0;
        }
        .badge.profile-unclaimed {
            background: var(--bg-surface);
            color: var(--text-secondary);
            border-color: var(--border-light);
        }
        .hero-desc {
            font-size: clamp(15px, 1.6vw, 17px);
            line-height: 1.65;
            color: var(--text-secondary);
            max-width: 42rem;
            margin: 0;
        }
        .platform-hero-last-updated {
            margin: clamp(10px, 1.5vw, 14px) 0 0;
            max-width: 42rem;
            width: 100%;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.4;
            color: #666666;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 8px;
        }
        .platform-hero-last-updated i {
            color: #666666;
            font-size: 14px;
        }
        .platform-hero-last-updated__label {
            font-weight: 600;
            color: #666666;
        }
        .platform-hero-last-updated time {
            color: #666666;
        }
        .hero-stats-card {
            width: 100%;
            margin: 0;
            padding: clamp(1.125rem, 2vw, 1.5rem);
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem 1.25rem;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }
        .stat-item .label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-tertiary);
        }
        .stat-item .value {
            font-size: clamp(16px, 2vw, 18px);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
            word-break: break-word;
        }
        .stat-item .value.highlight {
            color: var(--accent-primary);
        }
        @media (max-width: 992px) {
            .profile-hero__grid {
                grid-template-columns: 1fr;
            }
            .profile-hero__metrics {
                max-width: 100%;
            }
            .hero-stats-card {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 560px) {
            .profile-hero__identity {
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-logo {
                width: 96px;
                height: 96px;
            }
        }

        .profile-hero .hero-title__line { display: block; }
        .profile-hero .hero-title__line--secondary {
            margin-top: 0.2em;
            font-size: 0.88em;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: -0.02em;
        }
                .platform-official-socials { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 2.25rem); column-gap: var(--radius-md); row-gap: var(--radius-md); justify-content: start; align-items: center; }
        .platform-official-socials li { margin: 0; padding: 0; }
        .platform-official-socials a { color: var(--text-tertiary); display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: var(--radius-md); transition: var(--transition); }
        .platform-official-socials a:hover { color: var(--text-primary); background: var(--bg-surface); }
        .platform-official-socials i { font-size: 1.125rem; line-height: 1; }

        .back-bar { background: var(--bg-base); border-bottom: 1px solid var(--border-light); padding: 12px 0; }
                .platform-back-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .platform-breadcrumb {
            min-width: 0;
        }
        .platform-breadcrumb__list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.35;
        }
        .platform-breadcrumb__item {
            display: inline-flex;
            align-items: center;
            gap: 0;
            color: var(--text-secondary);
        }
        .platform-breadcrumb__item:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--text-tertiary);
            font-weight: 600;
            user-select: none;
        }
        .platform-breadcrumb__item a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition, color 0.2s ease);
        }
        .platform-breadcrumb__item a:hover {
            color: var(--accent-primary);
        }
        .platform-breadcrumb__item--current {
            color: var(--text-primary);
            min-width: 0;
        }
        .platform-breadcrumb__current {
            display: inline-block;
            max-width: min(100vw - 120px, 42rem);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            vertical-align: bottom;
        }
        .staff-os-edit-link i { font-size: 13px; opacity: 0.88; }
        .blog-staff-edit-row {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 12px;
        }

                /* Platform intro body — shared table-2 layout (scoped .crypto-detail-ref) */
        .crypto-detail-ref {
            --fx-radius-sm: 8px;
            --fx-radius-md: 12px;
            --fx-radius-lg: 16px;
            --fx-radius-xl: 24px;
            --fx-accent: #4F46E5;
            --fx-accent-hover: #4338CA;
            --fx-accent-soft: #EEF2FF;
            --fx-success-color: #059669;
            --fx-success-bg: #ECFDF5;
            --fx-success-accent: #10B981;
            --fx-danger-color: #DC2626;
            --fx-danger-bg: #FEF2F2;
            --fx-danger-accent: #EF4444;
            --fx-verdict-list-text: #374151;
            --fx-verdict-header-rule: #F3F4F6;
            --fx-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
            --fx-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
            --fx-shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.06), 0 4px 8px -2px rgba(15, 23, 42, 0.03);
            --fx-shadow-floating: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
            --fx-ease: all 0.3s ease-out;
            letter-spacing: -0.01em;
        }
        .crypto-detail-ref.container { max-width: 1140px; }
        .crypto-detail-ref.layout-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 40px;
            padding: 48px 0 96px;
            align-items: start;
        }
        .crypto-detail-ref .link-subtle { color: var(--text-secondary); text-decoration: none; transition: var(--fx-ease); }
        .crypto-detail-ref .link-subtle:hover { color: var(--fx-accent); }
        .crypto-detail-ref .link-subtle.is-disabled { opacity: 0.45; pointer-events: none; cursor: default; }
        .crypto-detail-ref .link-subtle.is-disabled:hover { color: var(--text-secondary); }
        .crypto-detail-ref .btn-glow { box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3); }
        .crypto-detail-ref .btn-glow:hover { box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4); transform: translateY(-2px); }

        /* Expert Verdict (platform-pros-cons.html) */
        .crypto-detail-ref .analysis-section {
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-lg);
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: var(--fx-shadow-sm);
        }
        .crypto-detail-ref .verdict-main-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 32px;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }
        .crypto-detail-ref .verdict-main-title i {
            color: var(--fx-accent);
            font-size: 22px;
        }
        .crypto-detail-ref .verdict-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            align-items: start;
            margin-bottom: 0;
        }
        .forex-detail-ref .verdict-grid {
            margin-bottom: 30px;
        }
        .crypto-detail-ref .verdict-card {
            background-color: var(--bg-base);
            border-radius: var(--fx-radius-md);
            padding: 32px 32px 40px 32px;
            box-shadow: var(--fx-shadow-md);
            border: 1px solid var(--border-light);
        }
        .crypto-detail-ref .verdict-card.theme-strengths {
            border-top: 4px solid var(--fx-success-accent);
        }
        .crypto-detail-ref .verdict-card.theme-strengths .verdict-card-header {
            color: var(--fx-success-color);
        }
        .crypto-detail-ref .verdict-card.theme-strengths .icon-bullet {
            background-color: var(--fx-success-bg);
            color: var(--fx-success-accent);
        }
        .crypto-detail-ref .verdict-card.theme-considerations {
            border-top: 4px solid var(--fx-danger-accent);
        }
        .crypto-detail-ref .verdict-card.theme-considerations .verdict-card-header {
            color: var(--fx-danger-color);
        }
        .crypto-detail-ref .verdict-card.theme-considerations .icon-bullet {
            background-color: var(--fx-danger-bg);
            color: var(--fx-danger-accent);
        }
        .crypto-detail-ref .verdict-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 28px;
            border-bottom: 1px solid var(--fx-verdict-header-rule);
            padding-bottom: 16px;
        }
        .crypto-detail-ref .verdict-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .crypto-detail-ref .verdict-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .crypto-detail-ref .icon-bullet {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-top: 2px;
            font-weight: 900;
        }
        .crypto-detail-ref .verdict-text {
            font-size: 15px;
            line-height: 1.75;
            color: var(--fx-verdict-list-text);
            margin: 0;
        }
        .crypto-detail-ref .analysis-text-block { padding-top: 24px; border-top: 1px solid var(--border-light); }
        .crypto-detail-ref .analysis-text-block h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .crypto-detail-ref .analysis-text-block ul { padding-left: 20px; list-style-type: disc; color: var(--text-secondary); font-size: 14px; }
        .crypto-detail-ref .analysis-text-block ul li { margin-bottom: 8px; }

        /* Unified accordion */
        .crypto-detail-ref .accordion {
            display: flex;
            flex-direction: column;
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-lg);
            box-shadow: var(--fx-shadow-sm);
            margin-bottom: 32px;
            overflow: hidden;
        }
        .crypto-detail-ref .accordion-item {
            border-bottom: 1px solid var(--border-light);
            background: var(--bg-base);
            transition: background 0.3s ease;
        }
        .crypto-detail-ref .accordion-item:last-child { border-bottom: none; }
        .crypto-detail-ref .accordion-header {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }
        .crypto-detail-ref .accordion-header:hover {
            background: var(--bg-surface);
            border-left-color: var(--border-hover);
        }
        .crypto-detail-ref .accordion-header:hover .accordion-title { color: var(--fx-accent); }
        .crypto-detail-ref .accordion-header:hover .accordion-icon { transform: scale(1.08); }
        .crypto-detail-ref .accordion-item.active .accordion-header { border-left-color: var(--fx-accent); }
        .crypto-detail-ref .accordion-title-wrap { display: flex; align-items: center; gap: 14px; }
        .crypto-detail-ref .accordion-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--fx-accent-soft);
            color: var(--fx-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: var(--fx-ease);
        }
        .crypto-detail-ref .accordion-item.active .accordion-icon { background: var(--fx-accent); color: #FFF; }
        .crypto-detail-ref .accordion-title { font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; transition: color 0.2s ease; }
        .crypto-detail-ref .accordion-toggle {
            color: var(--text-secondary);
            font-size: 14px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), all 0.2s ease;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            box-shadow: var(--fx-shadow-sm);
        }
        .crypto-detail-ref .accordion-item.active .accordion-toggle {
            transform: rotate(180deg);
            color: var(--fx-accent);
            background: var(--fx-accent-soft);
            border-color: transparent;
            box-shadow: none;
        }
        .crypto-detail-ref .accordion-body {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            opacity: 0;
        }
        .crypto-detail-ref .accordion-item.active .accordion-body { grid-template-rows: 1fr; opacity: 1; }
        .crypto-detail-ref .accordion-content-inner { overflow: hidden; }
        .crypto-detail-ref .accordion-content-padding {
            padding: 0 24px 24px;
            border-top: 1px solid transparent;
            transition: border-color 0.4s ease;
        }
        .crypto-detail-ref .accordion-item.active .accordion-content-padding {
            border-top-color: var(--border-light);
            padding-top: 24px;
        }

        .crypto-detail-ref .table-container {
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-md);
            overflow: hidden;
            background: var(--bg-base);
        }
        .crypto-detail-ref .premium-table { width: 100%; border-collapse: collapse; text-align: left; }
        .crypto-detail-ref .premium-table th,
        .crypto-detail-ref .premium-table td { padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
        .crypto-detail-ref .premium-table th {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-tertiary);
            font-weight: 700;
            background: var(--bg-surface);
        }
        .crypto-detail-ref .premium-table tr:last-child td { border-bottom: none; }
        .crypto-detail-ref .premium-table tbody tr { transition: var(--fx-ease); }
        .crypto-detail-ref .premium-table tbody tr:hover { background-color: var(--bg-surface); }
        .crypto-detail-ref .premium-table td.lbl {
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 14px;
            width: 45%;
        }
        .crypto-detail-ref .premium-table td.val { font-weight: 600; color: var(--text-primary); font-size: 14px; }
        .crypto-detail-ref .premium-table td.val.highlight { color: var(--fx-accent); font-weight: 700; }
        .crypto-detail-ref .premium-table td .sub {
            font-size: 12px;
            color: var(--text-tertiary);
            display: block;
            margin-top: 4px;
            font-weight: 400;
        }
        .crypto-detail-ref .status-icon { margin-right: 8px; font-size: 14px; width: 16px; text-align: center; }
        .crypto-detail-ref .icon-check { color: var(--status-success); }
        .crypto-detail-ref .icon-cross { color: var(--text-tertiary); opacity: 0.6; }
        .crypto-detail-ref .icon-danger { color: var(--status-danger); }

        .crypto-detail-ref .alert-box,
        .crypto-detail-ref .fx-alert-box {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #FFFBEB;
            border: 1px solid #FDE68A;
            border-radius: var(--fx-radius-md);
            padding: 20px;
            margin-top: 20px;
        }
        .crypto-detail-ref .alert-box > i,
        .crypto-detail-ref .fx-alert-box > i { color: #D97706; font-size: 20px; margin-top: 2px; flex-shrink: 0; }
        .crypto-detail-ref .alert-box .alert-content h4,
        .crypto-detail-ref .fx-alert-box .alert-content h4 { font-size: 14px; font-weight: 700; color: #92400E; margin-bottom: 4px; }
        .crypto-detail-ref .alert-box .alert-content p,
        .crypto-detail-ref .fx-alert-box .alert-content p { font-size: 14px; color: #B45309; line-height: 1.6; }

        /* Comments */
        .crypto-detail-ref .content-card {
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-lg);
            margin-bottom: 32px;
            box-shadow: var(--fx-shadow-sm);
        }
        .crypto-detail-ref .comments-section .card-header {
            padding: 28px 32px 20px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
        }
        .crypto-detail-ref .comments-section .comments-header-main {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            min-width: 0;
            flex: 1 1 auto;
        }
        .crypto-detail-ref .comments-section .comments-header-copy {
            min-width: 0;
        }
        .crypto-detail-ref .comments-section .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--fx-accent-soft);
            color: var(--fx-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .crypto-detail-ref .comments-section .card-title { font-size: 20px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.25; margin: 0; }
        .crypto-detail-ref .comments-section .text-sm {
            margin-top: 6px;
            font-size: 13px;
            line-height: 1.55;
            max-width: 72ch;
        }
        .crypto-detail-ref .comments-section .comments-header-cta {
            flex: 0 0 auto;
            align-self: center;
            white-space: nowrap;
        }
        .crypto-detail-ref .comments-section .comments-header-cta-icon {
            font-size: 11px;
            margin-left: 4px;
        }
        .crypto-detail-ref .comments-section .card-body { padding: 0 32px 32px; }
        .crypto-detail-ref .comment-form { display: flex; flex-direction: column; position: relative; }
        .crypto-detail-ref .comment-input-group { display: flex; gap: 16px; align-items: flex-start; }
        .crypto-detail-ref .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-md);
            font-family: inherit;
            font-size: 15px;
            color: var(--text-primary);
            background: var(--bg-surface);
            transition: var(--fx-ease);
            outline: none;
            resize: vertical;
            min-height: 90px;
        }
        .crypto-detail-ref .form-input::placeholder { color: var(--text-tertiary); }
        .crypto-detail-ref .form-input:focus {
            border-color: var(--fx-accent);
            background: var(--bg-base);
            box-shadow: 0 0 0 4px var(--fx-accent-soft);
        }
        .crypto-detail-ref .form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 12px; }
        .crypto-detail-ref .comments-divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-light), transparent);
            margin: 40px 0;
        }
        .crypto-detail-ref .comment-thread { margin-bottom: 32px; position: relative; display: flex; flex-direction: column; gap: 24px; }
        .crypto-detail-ref .comment-thread::before {
            content: '';
            position: absolute;
            top: 72px;
            bottom: 20px;
            left: 32px;
            width: 2px;
            background: var(--border-light);
            z-index: 0;
            border-radius: 2px;
        }
        .crypto-detail-ref .forum-post {
            display: flex;
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-md);
            overflow: hidden;
            transition: var(--fx-ease);
            position: relative;
            z-index: 1;
        }
        .crypto-detail-ref .forum-post:hover { border-color: var(--border-hover); box-shadow: var(--fx-shadow-sm); }
        .crypto-detail-ref .forum-post.official-reply { border-color: var(--fx-accent); background: var(--fx-accent-soft); }
        .crypto-detail-ref .forum-post.official-reply .forum-user-sidebar { background: #E0E7FF; border-right-color: #C7D2FE; }
        .crypto-detail-ref .forum-user-sidebar {
            width: 180px;
            padding: 24px 16px;
            background: var(--bg-surface);
            border-right: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-shrink: 0;
        }
        .crypto-detail-ref .comment-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-secondary);
            margin-bottom: 12px;
            border: 2px solid var(--bg-base);
            box-shadow: var(--fx-shadow-sm);
            z-index: 2;
        }
        .crypto-detail-ref .comment-avatar.has-image { background: var(--text-primary); color: #FFF; overflow: hidden; }
        .crypto-detail-ref .comment-avatar.has-image img { width: 100%; height: 100%; object-fit: cover; }
        .crypto-detail-ref .forum-post.official-reply .comment-avatar { background: var(--fx-accent); border-color: #E0E7FF; }
        .crypto-detail-ref .comment-author { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
        .crypto-detail-ref .forum-user-stats {
            margin-top: 12px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 11px;
            color: var(--text-secondary);
            text-align: left;
            border-top: 1px dashed var(--border-hover);
            padding-top: 12px;
        }
        .crypto-detail-ref .forum-user-stats div { display: flex; justify-content: space-between; }
        .crypto-detail-ref .badge.verified {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            background: #ECFDF5;
            color: #047857;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .crypto-detail-ref .badge.rep {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            background: var(--text-primary);
            color: #FFF;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .crypto-detail-ref .forum-post-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
        .crypto-detail-ref .forum-post-header {
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-tertiary);
        }
        .crypto-detail-ref .forum-post.official-reply .forum-post-header { border-bottom-color: #C7D2FE; }
        .crypto-detail-ref .comment-date { font-weight: 500; }
        .crypto-detail-ref .comment-text { padding: 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 0; word-break: break-word; }
        .crypto-detail-ref .forum-post-footer {
            padding: 12px 20px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }
        .crypto-detail-ref .forum-post.official-reply .forum-post-footer { background: transparent; border-top-color: #C7D2FE; }
        .crypto-detail-ref .footer-actions { display: flex; justify-content: space-between; align-items: center; }
        .crypto-detail-ref .post-actions-left { display: flex; gap: 8px; }
        .crypto-detail-ref .reply-btn {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-tertiary);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--fx-ease);
            background: none;
            border: none;
            font-family: inherit;
            padding: 0;
        }
        .crypto-detail-ref a.reply-btn { text-decoration: none; }
        .crypto-detail-ref .reply-btn:hover { color: var(--text-primary); }
        .crypto-detail-ref .comment-pagination { padding: 16px 0; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; align-items: center; }

        .crypto-detail-ref .sidebar-widgets { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
        .crypto-detail-ref .sidebar-widget {
            background: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--fx-radius-lg);
            padding: 28px;
            box-shadow: var(--fx-shadow-sm);
        }
        .crypto-detail-ref .action-widget { border-top: 4px solid var(--fx-accent); padding-top: 24px; }
        .crypto-detail-ref .action-widget h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
        .crypto-detail-ref .action-widget p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
        .crypto-detail-ref .claim-widget { background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-surface) 100%); text-align: center; }
        .crypto-detail-ref .claim-icon-wrap {
            width: 56px;
            height: 56px;
            background: #FFF;
            border: 1px solid var(--border-light);
            color: var(--text-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 16px;
            box-shadow: var(--fx-shadow-sm);
        }
        .crypto-detail-ref .claim-widget h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
        .crypto-detail-ref .claim-widget p { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
        .crypto-detail-ref .intro-kv-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--text-primary); }
        .crypto-detail-ref .sidebar-widget--social .intro-kv-title { margin-bottom: 16px; }
        .crypto-detail-ref .sidebar-widget--social .platform-official-socials {
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
            width: max-content;
            max-width: 100%;
        }
        .crypto-detail-ref .sidebar-widget--partnership-docs .intro-kv-title { margin-bottom: 16px; }
        .crypto-detail-ref .partnership-doc-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .crypto-detail-ref .partnership-doc-item { margin: 0; padding: 0; }
        .crypto-detail-ref .partnership-doc-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            padding: 10px 12px;
            border-radius: var(--fx-radius-md);
            border: 1px solid var(--border-light);
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }
        .crypto-detail-ref .partnership-doc-link:hover {
            background: var(--bg-surface);
            border-color: var(--border-hover);
        }
        .crypto-detail-ref .partnership-doc-icon {
            flex-shrink: 0;
            width: 2.25rem;
            height: 2.25rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--fx-radius-md);
            background: var(--bg-surface);
            font-size: 1.125rem;
        }
        .crypto-detail-ref .partnership-doc-icon--pdf { color: #b91c1c; }
        .crypto-detail-ref .partnership-doc-icon--word { color: #1d4ed8; }
        .crypto-detail-ref .partnership-doc-icon--excel { color: #047857; }
        .crypto-detail-ref .partnership-doc-icon--ppt { color: #c2410c; }
        .crypto-detail-ref .partnership-doc-icon--zip { color: var(--text-secondary); }
        .crypto-detail-ref .partnership-doc-icon--txt,
        .crypto-detail-ref .partnership-doc-icon--csv,
        .crypto-detail-ref .partnership-doc-icon--default { color: var(--text-secondary); }
        .crypto-detail-ref .partnership-doc-title { min-width: 0; word-break: break-word; }
        .crypto-detail-ref .kv-list { display: flex; flex-direction: column; gap: 16px; }
        .crypto-detail-ref .kv-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            border-bottom: 1px solid var(--bg-surface);
            padding-bottom: 12px;
            gap: 12px;
        }
        .crypto-detail-ref .kv-item:last-child { border-bottom: none; padding-bottom: 0; }
        .crypto-detail-ref .kv-key { color: var(--text-secondary); font-weight: 500; display: flex; align-items: center; gap: 10px; }
        .crypto-detail-ref .kv-key i { color: var(--text-tertiary); width: 16px; text-align: center; }
        .crypto-detail-ref .kv-val { font-weight: 600; color: var(--text-primary); text-align: right; }
        .crypto-detail-ref .btn-primary { background-color: var(--fx-accent); color: #FFF; }
        .crypto-detail-ref .btn-primary:hover { background-color: var(--fx-accent-hover); color: #FFF; }
        .crypto-detail-ref .btn-primary.is-disabled {
            opacity: 0.45;
            pointer-events: none;
            cursor: default;
            transform: none;
            box-shadow: none;
        }
        .crypto-detail-ref .btn-primary.is-disabled:hover { background-color: var(--fx-accent); transform: none; }

        @media (max-width: 992px) {
            .crypto-detail-ref .verdict-grid { grid-template-columns: 1fr; gap: 24px; }
            .crypto-detail-ref.layout-grid { grid-template-columns: 1fr; }
            .crypto-detail-ref .sidebar-widgets { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        }
        @media (max-width: 768px) {
            .crypto-detail-ref .comments-section .card-header {
                padding: 20px 20px 14px;
                flex-direction: column;
                align-items: stretch;
                gap: 14px;
            }
            .crypto-detail-ref .comments-section .comments-header-main { gap: 12px; }
            .crypto-detail-ref .comments-section .card-icon {
                width: 36px;
                height: 36px;
                border-radius: 9px;
                font-size: 15px;
            }
            .crypto-detail-ref .comments-section .card-title { font-size: 18px; }
            .crypto-detail-ref .comments-section .text-sm { font-size: 12.5px; line-height: 1.5; }
            .crypto-detail-ref .comments-section .comments-header-cta {
                width: 100%;
                justify-content: center;
                min-height: 38px;
            }
            .crypto-detail-ref .verdict-card { padding: 24px; }
            .crypto-detail-ref .sidebar-widgets { grid-template-columns: 1fr; }
            .crypto-detail-ref .premium-table th,
            .crypto-detail-ref .premium-table td { padding: 14px 16px; }
            .crypto-detail-ref .premium-table td { display: block; border-bottom: none; padding-bottom: 4px; }
            .crypto-detail-ref .premium-table td.lbl {
                width: 100%;
                padding-top: 16px;
                color: var(--text-tertiary);
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }
            .crypto-detail-ref .premium-table td.val { padding-top: 4px; border-bottom: 1px solid var(--border-light); padding-bottom: 16px; }
            .crypto-detail-ref .premium-table tr { border-bottom: 1px solid var(--border-light); display: block; }
            .crypto-detail-ref .premium-table thead { display: none; }
            .crypto-detail-ref .comment-thread::before { left: 24px; }
            .crypto-detail-ref .forum-post { flex-direction: column; }
            .crypto-detail-ref .forum-user-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid var(--border-light);
                flex-direction: row;
                padding: 16px 20px;
                gap: 16px;
                text-align: left;
            }
            .crypto-detail-ref .forum-post.official-reply .forum-user-sidebar { border-bottom-color: #C7D2FE; }
            .crypto-detail-ref .comment-avatar { width: 48px; height: 48px; margin-bottom: 0; font-size: 18px; }
            .crypto-detail-ref .forum-user-stats { display: none; }
        }

        .btn-sm { padding: 8px 16px; font-size: 13px; }
