* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
    color: #fff;
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.demo-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-logo i {
    font-size: 2rem;
    color: #6366f1;
}

.demo-logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-badge {
    font-size: 0.75rem;
    background: rgba(99,102,241,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: #6366f1;
    margin-left: 0.5rem;
}

.language-selector {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 40px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: transparent;
    border: none;
    border-radius: 40px;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.lang-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.btn-end-demo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(239,68,68,0.2);
    border: 1px solid rgba(239,68,68,0.5);
    border-radius: 12px;
    color: #ef4444;
    cursor: pointer;
}

/* Main Tabs */
.main-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.main-tab-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.main-tab-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.main-section {
    display: none;
}

.main-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-description {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-description h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-description p {
    color: #a1a1aa;
}

.demo-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

/* Left Side */
.demo-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-card {
    background: rgba(15,20,45,0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.upload-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
}

.upload-area {
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #6366f1;
}

.upload-area i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.btn-upload {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #6366f1;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.preview-area {
    text-align: center;
}

.preview-area img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid #6366f1;
}

.btn-change {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 0.5rem;
    flex-wrap: wrap;
}

.platform-input i {
    font-size: 1.25rem;
    width: 32px;
    text-align: center;
}

.platform-input.discord i { color: #5865F2; }
.platform-input.instagram i { color: #E4405F; }
.platform-input.kwai i { color: #FF5A00; }
.platform-input.tiktok i { color: #000; }
.platform-input.whatsapp i { color: #25D366; }
.platform-input.facebook i { color: #1877F2; }
.platform-input.twitter i { color: #1DA1F2; }

.platform-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.5rem;
    min-width: 120px;
}

.platform-input input::placeholder {
    color: #a1a1aa;
}

.btn-connect {
    padding: 0.5rem 1rem;
    background: rgba(99,102,241,0.2);
    border: 1px solid #6366f1;
    border-radius: 8px;
    color: #6366f1;
    cursor: pointer;
    font-size: 0.75rem;
}

.status-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
}

.status-badge.connected {
    background: rgba(16,185,129,0.2);
    color: #10b981;
}

.info-card {
    background: rgba(15,20,45,0.8);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card.warning-card {
    border-color: rgba(239,68,68,0.3);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #a1a1aa;
    font-size: 0.875rem;
}

.info-card li i {
    color: #10b981;
}

/* Right Side */
.demo-right {
    background: rgba(15,20,45,0.8);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.detection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-detect {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-detect:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.results-container {
    max-height: 600px;
    overflow-y: auto;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #a1a1aa;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.loading-state {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(99,102,241,0.3);
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.progress-bar-scan {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-fill-scan {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Results Summary */
.results-summary {
    margin-bottom: 1.5rem;
}

.summary-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-item.success .stat-value { color: #10b981; }
.stat-item.danger .stat-value { color: #ef4444; }
.stat-item.warning .stat-value { color: #f59e0b; }

.stat-label {
    font-size: 0.7rem;
    color: #a1a1aa;
}

.summary-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.summary-details span {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

/* Account Cards */
.account-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.account-card.real {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
    border-color: rgba(16,185,129,0.5);
}

.account-card.fake {
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(239,68,68,0.05));
    border-color: rgba(239,68,68,0.5);
}

.account-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.account-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.account-info h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.verified-badge {
    background: rgba(16,185,129,0.2);
    color: #10b981;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.fake-badge {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.similarity-bar {
    margin: 0.75rem 0;
}

.similarity-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
}

.bar-fill.high { background: linear-gradient(90deg, #ef4444, #f59e0b); }
.bar-fill.medium { background: linear-gradient(90deg, #f59e0b, #eab308); }
.bar-fill.low { background: linear-gradient(90deg, #eab308, #10b981); }

.account-details {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    color: #a1a1aa;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.warning-message {
    background: rgba(239,68,68,0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    font-size: 0.75rem;
}

.account-footer {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-report, .btn-block, .btn-view {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.btn-report {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.btn-block {
    background: rgba(99,102,241,0.2);
    color: #6366f1;
    border: 1px solid #6366f1;
}

.btn-view {
    background: rgba(16,185,129,0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

/* Child Protection Enhanced Styles */
.alert-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-card.critical { border-left-color: #ef4444; }
.alert-card.high { border-left-color: #f59e0b; }
.alert-card.safe { border-left-color: #10b981; }

.alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.platform-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

.platform-badge.critical { background: rgba(239,68,68,0.2); color: #ef4444; }
.platform-badge.high { background: rgba(245,158,11,0.2); color: #f59e0b; }
.platform-badge.safe { background: rgba(16,185,129,0.2); color: #10b981; }

/* Danger Meter */
.danger-meter {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.danger-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    color: #a1a1aa;
}

.danger-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.danger-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.danger-percent {
    font-weight: 700;
    color: #ef4444;
}

.danger-text {
    font-size: 0.7rem;
    font-weight: 600;
}

/* Perpetrator Info */
.perpetrator-info {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    flex-wrap: wrap;
}

.perpetrator-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.perpetrator-details {
    flex: 1;
}

.perpetrator-details p {
    font-size: 0.7rem;
    color: #a1a1aa;
    margin: 0.25rem 0;
}

/* Messages */
.messages-list {
    margin: 1rem 0;
}

.messages-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.message-item {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 0.5rem;
    margin: 0.5rem 0;
}

.message-item.deleted {
    background: rgba(239,68,68,0.1);
}

.message-item.grooming {
    border-left: 3px solid #ef4444;
}

.message-item.bullying {
    border-left: 3px solid #f59e0b;
}

.message-time {
    font-size: 0.6rem;
    color: #a1a1aa;
    margin-bottom: 0.25rem;
}

.message-text {
    font-size: 0.8rem;
}

.emoji-alert {
    background: rgba(239,68,68,0.2);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-size: 0.6rem;
    margin-left: 0.5rem;
}

/* Risk Factors */
.risk-factors {
    margin: 1rem 0;
}

.risk-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #a1a1aa;
}

.risk-factors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.risk-factor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    font-size: 0.7rem;
}

.risk-factor.critical {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
    border-left: 3px solid #ef4444;
}

.risk-factor.high {
    background: rgba(245,158,11,0.2);
    color: #f59e0b;
    border-left: 3px solid #f59e0b;
}

.risk-factor.safe {
    background: rgba(16,185,129,0.2);
    color: #10b981;
    border-left: 3px solid #10b981;
}

/* Recommendation Box */
.recommendation-box {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.recommendation-box.critical {
    background: rgba(239,68,68,0.15);
    border-left: 4px solid #ef4444;
}

.recommendation-box.high {
    background: rgba(245,158,11,0.15);
    border-left: 4px solid #f59e0b;
}

.recommendation-box.safe {
    background: rgba(16,185,129,0.15);
    border-left: 4px solid #10b981;
}

/* Safety Banner */
.safety-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.safety-banner.danger {
    background: rgba(239,68,68,0.2);
    border: 1px solid #ef4444;
}

.safety-banner.safe {
    background: rgba(16,185,129,0.2);
    border: 1px solid #10b981;
}

.safety-banner i {
    font-size: 1.5rem;
}

.safety-banner.danger i { color: #ef4444; }
.safety-banner.safe i { color: #10b981; }

.safety-banner strong {
    display: block;
    font-size: 0.875rem;
}

.safety-banner p {
    font-size: 0.75rem;
    color: #a1a1aa;
    margin-top: 0.25rem;
}

/* Child Summary */
.child-summary {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.child-summary h3 {
    margin-bottom: 0.25rem;
}

.alert-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.alert-stats .critical-count { color: #ef4444; }
.alert-stats .high-count { color: #f59e0b; }
.alert-stats .safe-count { color: #10b981; }
.alert-stats .total-count { color: #a1a1aa; }

.location-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.btn-maps {
    padding: 0.25rem 0.75rem;
    background: rgba(66,133,244,0.2);
    border: 1px solid #4285F4;
    border-radius: 20px;
    color: #4285F4;
    cursor: pointer;
    font-size: 0.7rem;
}

/* Safety Tips */
.safety-tips {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16,185,129,0.1);
    border-radius: 12px;
}

.safety-tips h4 {
    margin-bottom: 0.5rem;
}

.safety-tips ul {
    padding-left: 1.5rem;
}

.safety-tips li {
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

/* Alert Actions */
.alert-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.btn-evidence, .btn-notify {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.btn-evidence {
    background: rgba(16,185,129,0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.btn-notify {
    background: rgba(245,158,11,0.2);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

/* Safe Message */
.safe-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16,185,129,0.1);
    border-radius: 12px;
    margin: 1rem 0;
}

.safe-message i {
    font-size: 1.5rem;
    color: #10b981;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: linear-gradient(135deg, #1a1f3a, #0f1425);
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
}

/* Netsent AI Seal Report */
.netsent-seal-report {
    animation: fadeIn 0.3s ease;
}

.verification-seal {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99,102,241,0.5);
}

.verification-seal.child-seal {
    background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(245,158,11,0.2));
    border-color: rgba(239,68,68,0.5);
}

.verification-seal.real-seal {
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
    border-color: rgba(16,185,129,0.5);
}

.seal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.seal-header i {
    font-size: 2rem;
    color: #6366f1;
}

.seal-text {
    flex: 1;
}

.seal-title {
    display: block;
    font-weight: 700;
    color: #6366f1;
    font-size: 0.9rem;
}

.seal-badge {
    background: rgba(99,102,241,0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6366f1;
}

.seal-badge.real-badge {
    background: rgba(16,185,129,0.3);
    color: #10b981;
}

.report-success-header {
    text-align: center;
    margin-bottom: 1rem;
}

.report-success-header i {
    font-size: 3rem;
    color: #10b981;
}

.evidence-section {
    margin: 1rem 0;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.evidence-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
}

.evidence-card.full-width {
    grid-column: 1 / -1;
}

.evidence-card.real-card {
    border: 1px solid rgba(16,185,129,0.3);
}

.evidence-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.evidence-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6366f1;
}

.vs {
    font-size: 0.8rem;
    font-weight: bold;
    color: #ef4444;
}

.similarity-badge {
    text-align: center;
    background: rgba(239,68,68,0.2);
    padding: 0.25rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #ef4444;
}

.evidence-details p {
    font-size: 0.7rem;
    margin: 0.25rem 0;
    color: #a1a1aa;
}

.evidence-details p span {
    color: #fff;
    font-weight: 500;
}

.suspicious-messages {
    margin-top: 0.5rem;
}

.msg-item {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.msg-item.critical {
    border-left: 3px solid #ef4444;
}

.analysis-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    font-size: 0.7rem;
}

.analysis-label {
    color: #a1a1aa;
}

.analysis-value {
    font-weight: 600;
    color: #10b981;
}

.analysis-value.high-risk {
    color: #ef4444;
}

.analysis-value.high-success {
    color: #10b981;
}

.conclusion-box {
    background: rgba(239,68,68,0.1);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    gap: 0.75rem;
    border-left: 4px solid #ef4444;
}

.conclusion-box.real-conclusion {
    background: rgba(16,185,129,0.1);
    border-left: 4px solid #10b981;
}

.conclusion-box ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.conclusion-box li {
    font-size: 0.7rem;
    margin: 0.25rem 0;
}

.digital-signature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.signature-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signature-left i {
    font-size: 1.5rem;
    color: #6366f1;
}

.signature-left p {
    font-size: 0.65rem;
    color: #a1a1aa;
}

.signature-right .qr-simulate {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 8px;
}

.signature-right code {
    display: block;
    font-size: 0.7rem;
    background: rgba(0,0,0,0.3);
    padding: 0.25rem;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.btn-done {
    width: 100%;
    padding: 0.75rem;
    background: #6366f1;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.child-name-report {
    margin-top: 0.5rem;
    padding: 0.25rem;
    background: rgba(99,102,241,0.2);
    border-radius: 8px;
    font-size: 0.8rem;
}

/* Profile View */
.profile-view-container {
    animation: fadeIn 0.3s ease;
}

.profile-header-fake {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fake-profile-warning {
    background: rgba(239,68,68,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #ef4444;
    font-weight: 600;
}

.close-profile {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.profile-content {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.profile-avatar-large {
    position: relative;
    width: 120px;
    height: 120px;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ef4444;
}

.fake-stamp {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ef4444;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.6rem;
}

.profile-info-fake {
    flex: 1;
}

.warning-box {
    background: rgba(239,68,68,0.1);
    border-radius: 12px;
    padding: 0.75rem;
    margin: 1rem 0;
}

.profile-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-report-large, .btn-block-large, .btn-visit {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-report-large {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.btn-block-large {
    background: rgba(99,102,241,0.2);
    color: #6366f1;
    border: 1px solid #6366f1;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1100;
}

.toast.error {
    background: #ef4444;
}

.toast.warning {
    background: #f59e0b;
}

/* Responsive */
@media (max-width: 968px) {
    .demo-main {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .main-tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}