* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Government/Fraud Reporting Theme */
    --primary-blue: #1e3a8a;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --accent-blue: #2563eb;
    
    --danger-red: #dc2626;
    --warning-orange: #ea580c;
    --success-green: #16a34a;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --border-color: #e2e8f0;
    --border-dark: #cbd5e1;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Official Header */
.official-header {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.brand-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.brand-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation */
.main-nav {
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 0;
}

.nav-link {
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: var(--bg-light);
}

/* Main Content */
.main-content {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: var(--text-white);
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: var(--danger-red);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* Photo Card */
.photo-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.scammer-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    border: 3px solid var(--danger-red);
    margin-bottom: 15px;
    box-shadow: var(--shadow-lg);
}

.photo-label {
    margin-top: 10px;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.danger {
    background: var(--danger-red);
    color: var(--text-white);
}

/* Section Styling */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Info Cards Section */
.info-cards-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.info-card li:last-child {
    border-bottom: none;
}

/* Evidence Section */
.evidence-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.evidence-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.evidence-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.evidence-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.evidence-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evidence-badge.official {
    background: var(--primary-blue);
    color: var(--text-white);
}

.evidence-badge.social {
    background: var(--accent-blue);
    color: var(--text-white);
}

.evidence-badge.victim {
    background: var(--danger-red);
    color: var(--text-white);
}

.evidence-badge.community {
    background: var(--success-green);
    color: var(--text-white);
}

.evidence-date {
    font-size: 12px;
    color: var(--text-muted);
}

.evidence-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.evidence-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.evidence-embed {
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.embed-frame {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 4px;
}

.twitter-tweet {
    margin: 0 auto;
}

.youtube-embed,
.reddit-embed,
.facebook-embed {
    text-align: center;
    padding: 20px;
}

.embed-placeholder {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.embed-note {
    color: var(--text-muted);
    font-size: 14px;
}

.reddit-embed blockquote {
    border-left: 3px solid var(--accent-blue);
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.victim-loss {
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--danger-red);
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 4px;
    color: var(--danger-red);
    font-weight: 600;
}

.evidence-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: color 0.2s;
}

.evidence-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Report Section */
.report-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.report-box {
    background: var(--bg-light);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.report-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.requirement-item {
    display: flex;
    gap: 15px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.req-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.requirement-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.requirement-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.email-submit-box {
    background: var(--bg-white);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.email-submit-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.email-submit-box p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
    margin: 15px 0;
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.email-icon {
    font-size: 20px;
}

.submit-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Resources Section */
.resources-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.resource-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    text-align: center;
}

.resource-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.resource-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.disclaimer-box {
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
}

.disclaimer-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.disclaimer-box p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 30px 0;
    margin-top: auto;
}

.site-footer .container {
    text-align: center;
}

.site-footer p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-note {
    font-size: 13px;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .info-cards-grid,
    .evidence-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .report-requirements {
        grid-template-columns: 1fr;
    }
    
    .report-box {
        padding: 25px;
    }
    
    .section-title {
        font-size: 26px;
    }
}
