/* ========================================
   PERSONA SINGLE PAGE STYLES
   Matching Analysis Page Layout Exactly
   ======================================== */

/* Global Persona Page Styles - Light Theme */
body.single-persona {
    background: #ffffff;
    color: #333;
}

/* Container styles now in global.css - removed duplicate */

/* Section Spacing - Consistent with analysis */
body.single-persona section {
    padding: 60px 0;
    overflow: visible;
    background: transparent;
    position: relative;
}

body.single-persona section:first-of-type {
    padding-top: 0;
}

/* Typography - Exact match */
.single-persona h1,
.single-persona h2,
.single-persona h3,
.single-persona h4,
.single-persona h5,
.single-persona h6 {
    color: #1a1a1a;
}

/* ========================================
   PERSONA HERO SECTION
   ======================================== */

.persona-hero-enhanced {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: visible;
    min-height: 600px;
}

/* Gradient Orbs - Exact positioning */
.persona-hero-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 178, 138, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

.persona-hero-enhanced::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.persona-hero-content {
    position: relative;
    z-index: 2;
}

/* Meta Top Bar */
.persona-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.persona-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00b28a 0%, #00e67a 100%);
    color: #000;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 178, 138, 0.2);
    transition: all 0.3s ease;
}

.persona-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 178, 138, 0.3);
}

.persona-date {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Main Title */
.persona-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Meta Bottom Bar */
.persona-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 178, 138, 0.2);
    transform: translateY(-2px);
}

.meta-icon {
    font-size: 18px;
}

/* Hero Grid Layout */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 48px;
}

.hero-left-section {
    min-width: 0;
}

.hero-right-section {
    min-width: 0;
}

/* Key Metrics Dashboard */
.key-metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    background: #ffffff;
    border-color: rgba(0, 178, 138, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 178, 138, 0.15);
}

.metric-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00b28a;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Manipulation Score Card Special */
.metric-card.manipulation-score-card {
    grid-column: span 2;
    padding: 32px;
}

.metric-gauge {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.gauge-svg {
    width: 160px;
    height: 80px;
}

.gauge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    text-align: center;
}

.gauge-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00b28a;
}

.gauge-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Quick Info Card */
.persona-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 32px;
    height: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.persona-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

/* Section Headers */
.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Alternating Section Backgrounds */
.persona-bio-section,
.persona-timeline-section,
.persona-social-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.persona-stats-section,
.persona-fate-section,
.persona-analyses-section {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ========================================
   STATS SECTION
   ======================================== */

.persona-stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b28a 0%, #00e67a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 178, 138, 0.15);
    border-color: rgba(0, 178, 138, 0.2);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 178, 138, 0.1) 0%, rgba(0, 230, 122, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #00b28a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.stat-description {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* ========================================
   BIO SECTION
   ======================================== */

.persona-bio-section {
    padding: 80px 0;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bio-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.bio-text p {
    margin-bottom: 24px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */

.persona-timeline-section {
    padding: 80px 0;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00b28a 0%, #00e67a 100%);
    opacity: 0.3;
}

.timeline-events {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.timeline-event {
    flex: 0 0 320px;
    position: relative;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 4px solid #00b28a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 178, 138, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-event:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 178, 138, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-event:hover .timeline-content {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 178, 138, 0.2);
}

.event-date {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #00b28a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.event-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ========================================
   FATE SECTION
   ======================================== */

.persona-fate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.fate-analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.fate-analysis-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fate-analysis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 178, 138, 0.15);
    border-color: rgba(0, 178, 138, 0.2);
}

.fate-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.fate-icon {
    font-size: 32px;
}

.fate-header h3 {
    flex: 1;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.fate-impact {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fate-impact.impact-high {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.fate-impact.impact-medium {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
}

.fate-impact.impact-low {
    background: rgba(0, 178, 138, 0.1);
    color: #00b28a;
}

.fate-score-visual {
    text-align: center;
    margin: 24px 0;
}

.fate-score-circle {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
}

.fate-score-circle svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: #00b28a;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 220;
    transition: stroke-dashoffset 0.8s ease;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #00b28a;
}

.fate-description {
    margin-bottom: 24px;
}

.fate-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.fate-techniques h4,
.fate-timestamps h4 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.fate-techniques ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fate-techniques li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
    color: #555;
}

.timestamps-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timestamp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(0, 178, 138, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.timestamp-item:hover {
    background: rgba(0, 178, 138, 0.1);
    transform: translateX(4px);
}

.timestamp-time {
    font-size: 13px;
    font-weight: 600;
    color: #00b28a;
    min-width: 60px;
}

.timestamp-desc {
    font-size: 13px;
    color: #666;
    flex: 1;
}

/* ========================================
   SOCIAL SECTION
   ======================================== */

.persona-social-section {
    padding: 80px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.social-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 178, 138, 0.15);
    border-color: rgba(0, 178, 138, 0.2);
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.platform-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 178, 138, 0.1) 0%, rgba(0, 230, 122, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.social-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.social-stat {
    text-align: center;
}

.social-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #00b28a;
    margin-bottom: 4px;
}

.social-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* ========================================
   ANALYSES SECTION
   ======================================== */

.persona-analyses-section {
    padding: 80px 0;
}

.analyses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.analysis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 178, 138, 0.15);
    border-color: rgba(0, 178, 138, 0.2);
}

.analysis-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.analysis-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
}

.analysis-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.analysis-card:hover .analysis-thumbnail img {
    transform: scale(1.05);
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #999;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 8px;
    opacity: 0.5;
}

.placeholder-text {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.5;
}

.analysis-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.manipulation-score {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 60px;
}

.score-number {
    display: block;
    font-weight: 700;
    font-size: 18px;
    font-family: monospace;
}

.score-label {
    display: block;
    font-size: 10px;
    opacity: 0.8;
    margin-top: 2px;
    text-transform: uppercase;
}

.manipulation-score.score-high {
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.manipulation-score.score-medium {
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.manipulation-score.score-low {
    color: #00b28a;
    border: 1px solid rgba(0, 178, 138, 0.3);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
}

.analysis-content {
    padding: 24px;
}

.analysis-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.analysis-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}

.fate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fate-tag {
    background: rgba(0, 178, 138, 0.1);
    color: #00b28a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.fate-tag.more {
    background: rgba(0, 0, 0, 0.05);
    color: #999;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 48px;
}

.load-more-btn {
    background: linear-gradient(135deg, #00b28a 0%, #00e67a 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    font-size: 16px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 178, 138, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-count {
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
}

/* ========================================
   COMMENTS SECTION
   ======================================== */

.persona-comments {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.comments-section {
    max-width: 800px;
    margin: 0 auto;
}

.comments-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 16px;
}

.comment-meta {
    color: #999;
    font-size: 13px;
    margin-bottom: 16px;
}

.comment-content {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.comment-respond {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: rgba(0, 178, 138, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 178, 138, 0.1);
}

.comment-form .submit {
    background: linear-gradient(135deg, #00b28a 0%, #00e67a 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 178, 138, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fate-analysis-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* .single-persona .container - removed duplicate, now in global.css */

    .persona-hero-enhanced {
        padding: 120px 0 60px;
    }
    
    body.single-persona section {
        padding: 40px 0;
    }
    
    .persona-title {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stats-grid,
    .social-grid,
    .analyses-grid {
        grid-template-columns: 1fr;
    }
    
    .persona-meta-bottom {
        gap: 12px;
    }
    
    .meta-item {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .timeline-events {
        gap: 20px;
    }
    
    .timeline-event {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .metric-card {
        padding: 20px;
    }
    
    .bio-card {
        padding: 24px;
    }
    
    .fate-analysis-card {
        padding: 24px;
    }
    
    .analysis-card {
        border-radius: 12px;
    }
    
    .load-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade animations for AOS library */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-scale"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-scale"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Float animation for background elements */
@keyframes float {
    0% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
    100% {
        transform: translateY(0) rotate(-15deg);
    }
}

/* ========================================================================================
   ENHANCED ANALYTICS SECTIONS - Advanced Metrics Display
   ======================================================================================== */

/* Enhanced Analytics Grid */
.enhanced-analytics {
    background: linear-gradient(135deg, rgba(0, 178, 138, 0.05), rgba(0, 0, 0, 0.02));
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.analytics-header {
    text-align: center;
    margin-bottom: 40px;
}

.analytics-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.analytics-header p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.analytics-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.analytics-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b28a, #00d4aa);
}

.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.analytics-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.analytics-card .card-header h4 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.analytics-card .card-icon {
    font-size: 1.8rem;
    opacity: 0.7;
}

/* Credibility Assessment Card */
.credibility-card .primary-metric {
    text-align: center;
    margin-bottom: 20px;
}

.credibility-card .metric-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00b28a;
    line-height: 1;
}

.credibility-card .metric-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.secondary-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.metric-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    flex: 1;
}

.metric-item .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.metric-item .metric-text {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.metric-item.warning .metric-value {
    color: #e74c3c;
}

.credibility-assessment {
    text-align: center;
}

.assessment {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.assessment.high { background: #d4edda; color: #155724; }
.assessment.medium { background: #fff3cd; color: #856404; }
.assessment.low { background: #f8d7da; color: #721c24; }
.assessment.critical { background: #f5c6cb; color: #721c24; }

/* Manipulation Patterns Card */
.technique-frequency-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.technique-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.technique-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.technique-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.technique-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.technique-usage {
    font-size: 0.8rem;
    color: #666;
}

.technique-bar {
    width: 80px;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.technique-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b28a, #00d4aa);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.technique-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00b28a;
    min-width: 35px;
    text-align: right;
}

/* Content Strategy Card */
.strategy-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.strategy-metric {
    text-align: center;
}

.strategy-metric .metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00b28a;
    line-height: 1;
}

.strategy-metric .metric-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.platform-breakdown h5 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.platform-name {
    font-weight: 500;
    color: #1a1a1a;
}

.platform-count {
    font-size: 0.8rem;
    color: #666;
}

.platform-percentage {
    font-size: 0.8rem;
    font-weight: 600;
    color: #00b28a;
}

/* Risk Assessment Card */
.risk-card {
    border-left: 5px solid #00b28a;
}

.risk-card.risk-critical {
    border-left-color: #dc3545;
}

.risk-card.risk-critical::before {
    background: linear-gradient(90deg, #dc3545, #e74c3c);
}

.risk-card.risk-high {
    border-left-color: #fd7e14;
}

.risk-card.risk-high::before {
    background: linear-gradient(90deg, #fd7e14, #ff8c00);
}

.risk-card.risk-medium {
    border-left-color: #ffc107;
}

.risk-card.risk-medium::before {
    background: linear-gradient(90deg, #ffc107, #ffcd39);
}

.risk-level-display {
    text-align: center;
    margin-bottom: 20px;
}

.risk-indicator {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risk-indicator.critical { background: #f8d7da; color: #721c24; }
.risk-indicator.high { background: #fff3cd; color: #856404; }
.risk-indicator.medium { background: #cce5ff; color: #004085; }
.risk-indicator.low { background: #d4edda; color: #155724; }

.risk-factors {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.risk-factor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #dee2e6;
}

.risk-factor.high {
    background: #fdf2f2;
    border-left-color: #dc3545;
}

.risk-factor.medium {
    background: #fffbf0;
    border-left-color: #ffc107;
}

.risk-factor.low {
    background: #f0fff4;
    border-left-color: #28a745;
}

.factor-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.factor-text {
    font-size: 0.9rem;
    color: #555;
}

/* Enhanced FATE Analytics */
.enhanced-fate-analytics {
    background: linear-gradient(135deg, rgba(0, 178, 138, 0.05), rgba(0, 0, 0, 0.02));
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.fate-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.fate-analytics-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fate-analytics-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fate-analytics-card .analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.fate-analytics-card .analytics-header h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.technique-score {
    background: #00b28a;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.breakdown-stats {
    text-align: center;
    margin-bottom: 20px;
}

.breakdown-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00b28a;
    line-height: 1;
}

.breakdown-stats .stat-label {
    display: block;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.top-techniques h5 {
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.techniques-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fate-analytics-card .technique-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.fate-analytics-card .technique-name {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 500;
}

.fate-analytics-card .technique-count {
    font-size: 0.75rem;
    color: #00b28a;
    font-weight: 600;
}

/* Advanced FATE Insights */
.advanced-fate-insights {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
}

.advanced-insights-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advanced-insight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00b28a;
}

.advanced-insight.high-volume {
    background: #e8f5e8;
    border-left-color: #28a745;
}

.advanced-insight.sophistication {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.advanced-insight.balanced {
    background: #e2f3ff;
    border-left-color: #007bff;
}

.insight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.insight-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Mobile Responsiveness for Enhanced Analytics */
@media (max-width: 768px) {
    .analytics-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enhanced-analytics,
    .enhanced-fate-analytics {
        padding: 25px 20px;
        margin: 20px -20px 0;
        border-radius: 0;
    }
    
    .analytics-card,
    .fate-analytics-card {
        padding: 20px;
    }
    
    .technique-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .technique-bar {
        width: 100%;
        margin: 10px 0;
    }
    
    .secondary-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .platform-item {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }
}