/* ===== LIVE COVERAGE CARDS ===== */
.live-coverage-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.live-coverage-header {
    margin-bottom: 2.5rem;
}

.live-coverage-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.live-coverage-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.live-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.live-update-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5), rgba(15, 21, 53, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideInLeft 0.5s ease-out;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.live-update-card.new-update {
    animation: slideInLeft 0.5s ease-out, bounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-color: rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.7), rgba(15, 21, 53, 0.5));
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounce {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -15px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.live-update-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6), rgba(15, 21, 53, 0.4));
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.update-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.update-source-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.update-source-badge.reddit { 
    background: rgba(255, 69, 0, 0.1); 
    border-color: rgba(255, 69, 0, 0.3); 
    color: #ff4500; 
}

.update-source-badge.news { 
    background: rgba(59, 130, 246, 0.1); 
    border-color: rgba(59, 130, 246, 0.3); 
    color: #3b82f6; 
}

.update-source-badge.twitter { 
    background: rgba(29, 155, 240, 0.1); 
    border-color: rgba(29, 155, 240, 0.3); 
    color: #1d9bf0; 
}

.update-source-badge.official { 
    background: rgba(16, 185, 129, 0.1); 
    border-color: rgba(16, 185, 129, 0.3); 
    color: #10b981; 
}

.update-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.update-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.update-author-info {
    flex: 1;
    min-width: 0;
}

.update-author-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.update-author-handle {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.update-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.update-metrics {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.85rem;
}

.update-metric {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-tertiary);
}

.update-metric-value {
    color: var(--primary);
    font-weight: 600;
}

.update-time {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.new-update-indicator {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 10px;
    height: 10px;
    background: var(--critical);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 61, 61, 0.8);
    animation: pulse 1.5s infinite;
}

@media (max-width: 1024px) {
    .live-updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .live-coverage-section {
        margin: 2.5rem auto;
        padding: 0 1.5rem;
    }
    .live-coverage-title {
        font-size: 1.5rem;
    }
    .live-updates-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.comments-header {
    margin-bottom: 2.5rem;
}

.comments-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.comments-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.comment-input-box {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5), rgba(15, 21, 53, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.comment-input-avatar {
    font-size: 2rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
}

.comment-textarea:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.comment-submit-btn {
    background: linear-gradient(135deg, #fa860b, #ff6b1a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    min-width: 120px;
}

.comment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 134, 11, 0.3);
}

.comment-submit-btn:active {
    transform: translateY(0);
}

.reply-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid rgba(0, 212, 255, 0.5);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reply-cancel-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s ease;
}

.reply-cancel-btn:hover {
    color: var(--primary);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5), rgba(15, 21, 53, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
}

.comment-reply {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.3), rgba(15, 21, 53, 0.15));
    border-left: 3px solid rgba(0, 212, 255, 0.3);
    padding: 1rem 1rem 1rem 1.5rem;
    margin-top: 0.8rem;
}

.replies-container {
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(0, 212, 255, 0.2);
}

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

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

.comment-author-info {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.comment-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.comment-action {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.comment-action:hover {
    color: var(--primary);
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(99, 102, 241, 0.2));
    color: var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.4);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(99, 102, 241, 0.3));
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .comment-input-box {
        flex-direction: column;
    }

    .comment-submit-btn {
        align-self: flex-end;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-time {
        margin-top: 0.5rem;
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0.5rem;
}

.section {
    margin-bottom: 4rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.content-box {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
}

.content-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.metric-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(99, 102, 241, 0.08));
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.metric-box:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(99, 102, 241, 0.12));
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent);
    pointer-events: none;
    border-radius: 16px;
    clip-path: inset(0 0 0 0 round 16px);
}

.metric-value {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.metric-box p {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.list-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.list-item {
    background: transparent;
    border: none;
    border-left: 3px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.list-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-item:hover::before {
    opacity: 1;
}

.list-item strong {
    color: var(--primary);
    font-weight: 700;
}

.list-item p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    margin-top: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-item.done::before {
    background: var(--success);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.timeline-item.inprogress::before {
    background: var(--warning);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 2.5rem;
    bottom: -2.5rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.3), transparent);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-content {
    flex: 1;
}

.timeline-time {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.timeline-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PROGRESS BAR ===== */
.progress-item {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-label-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

/* ===== USER AVATAR & FEEDBACK ===== */
.user-report {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.user-report:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.user-content {
    flex: 1;
    min-width: 0;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.user-name {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.user-badge {
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.user-message {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.user-time {
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

/* ===== ROOT CAUSE BOX ===== */
.root-cause-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.root-cause-box h4 {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.root-cause-box p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== STEP INDICATOR ===== */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 212, 255, 0.03);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
}

.step-marker {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.step-marker.done {
    background: var(--success);
    color: white;
}

.step-marker.inprogress {
    background: var(--warning);
    animation: pulse 2s infinite;
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.step-description {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* ===== REPORT FORM ===== */
.report-btn {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #6366f1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.report-btn:active {
    transform: translateY(0);
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.thank-you-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.thank-you-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(15, 21, 53, 0.95));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.15);
    text-align: center;
    backdrop-filter: blur(15px);
    animation: popIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-icon {
    font-size: 64px;
    margin-bottom: 1.5rem;
    animation: bounce 0.6s cubic-bezier(0.23, 1, 0.320, 1) 0.2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.thank-you-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.thank-you-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== USER NAME MODAL ===== */
.user-name-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.user-name-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.user-name-modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(15, 21, 53, 0.95));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.15);
    text-align: center;
    backdrop-filter: blur(15px);
    animation: popIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.user-name-modal-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #00d4ff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-name-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.user-name-input {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.user-name-input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.user-name-input::placeholder {
    color: var(--text-tertiary);
}

.user-name-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00d4ff, #6366f1);
    border: none;
    border-radius: 10px;
    color: #0a0e27;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-name-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.user-name-submit-btn:active {
    transform: translateY(0);
}

/* ===== CASCADE CONTROLS ===== */
.cascade-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    background: rgba(0, 212, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.controls-left {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
}

.controls-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cascade-filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cascade-filter-btn:hover {
    border-color: rgba(0, 212, 255, 1);
    color: var(--primary);
}

.cascade-filter-btn.active {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--primary);
    color: #ffffff;
}

.cascade-sort-select {
    padding: 0.6rem 1.2rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(20, 25, 35, 0.8);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cascade-sort-select option {
    background: #1a1f2e;
    color: #e0e0e0;
    padding: 0.5rem;
}

.cascade-sort-select:hover {
    border-color: rgba(0, 212, 255, 1);
}

.cascade-collapse-all-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: var(--accent);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cascade-collapse-all-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent);
}

/* ===== CASCADE SECTIONS ===== */
.cascade-section {
    margin-bottom: 3rem;
}

.cascade-level-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.1);
}

.level-marker {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.cascade-level-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.level-meta {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ===== CASCADE GRID ===== */
.cascade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ===== CASCADE CARDS ===== */
.cascade-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(99, 102, 241, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.cascade-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(99, 102, 241, 0.1));
}

.cascade-card-level2 {
    opacity: 0.95;
    border-left: 4px solid rgba(99, 102, 241, 0.8);
    animation: slideInDown 0.3s ease;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.05));
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cascade-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cascade-card-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.l2-chain-marker {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cascade-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.cascade-card-title span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cascade-card-severity {
    flex-shrink: 0;
}

.severity-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.severity-badge.critical-high {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.severity-badge.critical-medium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.cascade-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cascade-reason {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cascade-reason strong {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cascade-reason span {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== METRICS BUBBLES ===== */
.cascade-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric-bubble {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cascade-card:hover .metric-bubble {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.metric-icon {
    font-size: 1.4rem;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.metric-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.metric-label {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===== INDUSTRIES ===== */
.cascade-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.industry-tag {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cascade-card:hover .industry-tag {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
}

/* ===== CASCADE CARD FOOTER ===== */
.cascade-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.toggle-level2-btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.toggle-level2-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.toggle-level2-btn.expanded {
    background: rgba(99, 102, 241, 0.2);
}

.toggle-toggle {
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.toggle-level2-btn.expanded .toggle-toggle {
    transform: rotateZ(-180deg);
}

/* ===== CASCADE SUMMARY ===== */
.cascade-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: rgba(0, 212, 255, 0.03);
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

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

.summary-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.summary-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .thank-you-content {
        padding: 3rem 2rem;
    }
    .thank-you-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .two-column, .impact-cascade-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-section { 
        padding: 2rem 1rem 1rem; 
    }
    .main-content { 
        padding: 0 1rem 3rem; 
    }
    .hero-header h1 { 
        font-size: 1.5rem; 
    }
    .impact-cascade-grid {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }
    .timeline-item {
        padding-left: 3rem;
        gap: 1.5rem;
    }
    .list-items {
        grid-template-columns: 1fr;
    }
    .status-row {
        flex-direction: column;
        gap: 1rem;
    }
    .status-item {
        width: 100%;
    }
    .section {
        margin-bottom: 2.5rem;
    }
}

/* ===== PAGE FOOTER ===== */
footer {
    border-top: 1px solid #2d2d4f;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== REPORT ISSUE MODAL ===== */
.report-issue-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.report-issue-modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(15, 21, 53, 0.9));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: slideUp 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--primary);
}

.report-issue-modal-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.report-issue-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#reportIssueForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-note {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
}

.report-submit-btn {
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), #0088ff);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

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

.report-feedback {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    min-height: 1.2rem;
}

.report-feedback.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.report-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ===== REPORT STATS DISPLAY ===== */
.report-stats-container {
    max-width: 1400px;
    margin: 1.5rem auto;
    padding: 0 2rem;
}

.report-stats-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin: 0 auto;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-emoji {
    font-size: 1.5rem;
}

.stats-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Impact Item Full Width */
.impact-item-full-width {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    padding: 0.6rem 0.8rem !important;
    gap: 0 !important;
    min-height: auto !important;
    display: flex !important;
}

.impact-item-full-width .impact-content {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.impact-item-full-width .impact-label {
    font-size: 0.75rem !important;
    margin-bottom: 0.15rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

.impact-item-full-width .impact-value {
    font-size: 0.95rem !important;
    line-height: 1.1 !important;
    color: var(--text-primary) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .report-issue-modal-content {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .report-issue-modal-content h2 {
        font-size: 1.3rem;
    }
    
    .report-stats-display {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }
}

