/* 419Eater.com Ultra Modern Design 2025 */
/* Maintaining brand colors with completely modern aesthetics */

/* CSS Variables - SE Square Left Forum Color Palette */
:root {
    /* Primary forum colors from SE Square Left theme */
    --primary-blue: #105289;
    --primary-blue-hover: #D31141;
    --secondary-blue: #536482;
    --light-blue: #A8D8FF;
    --accent-blue: #368AD2;
    --dark-blue: #20354c;
    --forum-header-bg: #1C2E43;
    --forum-header-gradient: linear-gradient(to bottom, #315275 0%, #1F4A7A 2px, #425A75 92px, #1C2E43 100%);
    
    /* Content area colors */
    --content-bg: #FFF;
    --content-border: #bcd4e3;
    --panel-bg: #ECF1F3;
    --surface: #f3f7fa;
    --surface-alt: #e9f0f5;
    
    /* Text colors from forum */
    --text-primary: #333333;
    --text-secondary: #536482;
    --text-muted: #666666;
    --text-white: #FFFFFF;
    
    /* Interactive colors */
    --link-color: #105289;
    --link-hover: #D31141;
    --border: #CCCCCC;
    --border-light: #e5e5e5;
    
    /* Status colors */
    --success-green: #1b9A1B;
    --warning-orange: #FF6600;
    --error-red: #BC2A4D;
    
    /* Background and surfaces */
    --background: #ffffff;
    --background-dark: #20354C;
    --card-border: #234C7A;
    --card-hover-bg: #F6F4D0;
    
    /* Shadows and effects */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Forum-style gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--light-blue) 100%);
    --gradient-hero: var(--forum-header-gradient);
    --gradient-forum-bg: linear-gradient(to bottom, #D2E0EB 0%, #EEF5F9 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--background-dark);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Forum-style content wrapper - matches the white box in forum */
.content-wrapper {
    background: #FFFFFF;
    border: 2px solid #606e7b;
    border-radius: 8px;
    padding: 0;
    margin: 2rem auto;
    max-width: 1200px;
    overflow: hidden;
}

/* Main content sections inside wrapper */
.main-content {
    background: #FFFFFF;
    padding: 2rem;
}

/* Forum-style section headers */
.section-header {
    background: linear-gradient(to bottom, #315275 0%, #1F4A7A 2px, #425A75 92px, #1C2E43 100%);
    color: #FFFFFF;
    padding: 12px 16px;
    border-bottom: 1px solid #4f91b6;
    font-weight: bold;
}

/* Forum-style alternating row backgrounds */
.forum-row {
    padding: 12px 16px;
    border-bottom: 1px solid #bcd4e3;
}

.forum-row:nth-child(odd) {
    background: #f3f7fa;
}

.forum-row:nth-child(even) {
    background: #e9f0f5;
}

.forum-row:hover {
    background: #F6F4D0 !important;
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.section-lg {
    padding: 8rem 0;
}

/* Forum-style background sections */
.bg-surface {
    background: var(--gradient-forum-bg) !important;
}

.panel {
    background: var(--panel-bg);
    border: 1px solid var(--content-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

/* Forum-style list items */
.forum-list li:hover, 
.thread-card:hover,
.feature-card:hover {
    background: var(--card-hover-bg) !important;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to right, #264E79, #293D54);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - works with forum layout */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="600" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="800" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(to bottom, #FFFFFF 0%, #E9E9E9 100%);
    color: var(--primary-blue-hover);
    border: 1px solid var(--border);
    box-shadow: 0 0 0 1px #FFFFFF inset;
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #E9E9E9 0%, #FFFFFF 100%);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Cards System - Forum style */
.card {
    background: #FFFFFF;
    border: 1px solid #bcd4e3;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.card:hover {
    background: var(--card-hover-bg);
}

/* Forum-style stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    background: #FFFFFF;
    border: 1px solid #bcd4e3;
    border-radius: 4px;
    overflow: hidden;
    margin: 2rem 0;
}

.stat-item {
    background: #f3f7fa;
    padding: 2rem 1rem;
    text-align: center;
    border-right: 1px solid #bcd4e3;
    transition: background 0.3s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--card-hover-bg);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    padding: 1.5rem;
    background: var(--gradient-secondary);
    border-bottom: 1px solid var(--border);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--surface);
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f3f7fa;
    border: 1px solid #bcd4e3;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.feature-card:hover {
    background: var(--card-hover-bg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Forum Section */
.forum-section {
    padding: 6rem 0;
    background: white;
}

.forum-header {
    text-align: center;
    margin-bottom: 4rem;
}

.forum-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.forum-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.forum-threads {
    display: grid;
    gap: 1.5rem;
}

.thread-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.thread-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.thread-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.thread-meta {
    flex: 1;
}

.thread-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.thread-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.thread-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.thread-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.thread-title a {
    color: inherit;
    text-decoration: none;
}

.thread-title a:hover {
    color: var(--accent-blue);
}

.thread-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Social links removed - no longer needed */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.bg-primary {
    background: var(--primary-blue);
}

.bg-secondary {
    background: var(--secondary-blue);
}

.bg-surface {
    background: var(--surface);
}

.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

/* Scroll-triggered animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .card {
        background: #1f2937;
        color: white;
    }
    
    .thread-card {
        background: #1f2937;
        border-color: #374151;
        color: white;
    }
    
    .feature-card {
        background: #1f2937;
        color: white;
    }
}

/* Inner Page Template Styles */
.main-content {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 97, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(198, 211, 231, 0.1) 50%, transparent 60%);
    background-size: 800px 800px, 600px 600px, 400px 400px;
    background-position: 0 0, 100% 100%, 50% 50%;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.content-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: var(--radius-xl);
    color: white !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.page-header * {
    color: white !important;
}

@keyframes shimmer {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.1; }
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    color: white !important;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 1;
    font-weight: 300;
    position: relative;
    z-index: 1;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.intro-image {
    flex-shrink: 0;
}

.intro-img {
    width: 200px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--secondary-blue);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border-left: 4px solid;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 243, 205, 0.9), rgba(255, 234, 167, 0.9));
    border-left-color: #ffc107;
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.alert-content p {
    margin: 0;
    line-height: 1.6;
}

.instructions {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.instructions p {
    margin: 0.5rem 0;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.quick-links .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.gallery-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(74, 97, 132, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(74, 97, 132, 0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 100%;
}

.fake-photo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fake-photo:hover {
    transform: scale(1.05);
}

.card-info {
    padding: 1.5rem;
    background: white;
    color: var(--text-color);
}

.scammer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue) !important;
    margin: 0 0 0.5rem 0;
}

.submitted-by {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    margin: 0;
}

.submitted-by strong {
    color: var(--text-color) !important;
}

/* Responsive Design for Inner Pages */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-img {
        width: 150px;
        margin: 0 auto;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .alert {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Actions */
.page-actions {
    margin: 3rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.action-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-buttons .btn:hover::before {
    left: 100%;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border: 2px solid transparent;
}

.action-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 97, 132, 0.3);
    color: white;
    text-decoration: none;
}

.action-buttons .btn-secondary {
    background: linear-gradient(135deg, #6b7280, #374151);
    color: white;
    border: 2px solid transparent;
}

.action-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #374151, #6b7280);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 114, 128, 0.3);
    color: white;
    text-decoration: none;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.btn-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.btn-icon.prev::before {
    border-right: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: -1px;
}

.btn-icon.next::before {
    border-left: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 1px;
}

.btn-icon.latest::before {
    content: '★';
    border: none;
    font-size: 10px;
    line-height: 1;
}

/* Submission CTA */
.submission-cta {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(198, 211, 231, 0.9));
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.submission-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer-cta 3s infinite;
}

@keyframes shimmer-cta {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 97, 132, 0.3);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: white;
    text-decoration: none;
}

.btn-cta .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 10px;
}

.btn-cta .btn-icon.forum::before {
    content: '💬';
    font-size: 10px;
}

/* Letters Table Styling */
.letters-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.letters-table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.table-row:hover {
    background: var(--card-hover-bg);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.featured {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border-left: 4px solid #ef4444;
}

.table-row.featured:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
}

.letter-title a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.letter-title a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.letter-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.letters-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(74, 97, 132, 0.1);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-blue);
}

.letters-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-header .header-author,
    .letter-author {
        font-size: 0.8rem;
        opacity: 0.8;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    border: none;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: var(--primary-blue);
    color: white;
}

.pagination-btn.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0 1rem;
}

.pagination-btn.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 0 1rem;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.page-info-container {
    text-align: center;
    margin: 1rem 0;
}

.page-info-display {
    background: rgba(74, 97, 132, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

@media (max-width: 768px) {
    .pagination-container {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .pagination-btn.btn-primary,
    .pagination-btn.btn-secondary {
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
}

/* Hero Section Styles */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content Section Styles */
.content-section {
    margin-bottom: 3rem;
}

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

.lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.benefit-item {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Guide Section Styles */
.guide-section {
    margin-bottom: 3rem;
}

.methodology-step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-details h4 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--text-primary);
}

.step-details h4:first-child {
    margin-top: 0;
}

.step-details ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.step-details li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* FAQ Section Styles */
.faq-section {
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* Risk Section Styles */
.risk-section {
    margin-bottom: 3rem;
}

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

.risk-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.risk-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.risk-item ul {
    margin-left: 1.5rem;
}

.risk-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Tools Section Styles */
.tools-section {
    margin-bottom: 3rem;
}

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

.tool-category {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.tool-category h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tool-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tool-category li:last-child {
    border-bottom: none;
}

/* CTA Section Styles */
.cta-section {
    background: var(--gradient-hero);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.community-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.community-stats .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.community-stats .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .methodology-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 419 FAQ Page Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

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

.stat-card .stat-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.25rem;
    display: block;
}

.scam-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.scam-type {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.scam-type h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.scam-type p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.warning-signs h4 {
    color: var(--error-red);
    margin-bottom: 1rem;
}

.action-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.action-steps .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.action-steps .step-number {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.action-steps .step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.action-steps .step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.resources-section {
    margin: 3rem 0;
}

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

.resource-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.reporting-links {
    display: grid;
    gap: 0.25rem;
    margin-top: 1rem;
}

.reporting-item {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.reporting-item strong {
    color: var(--text-primary);
}

.reporting-item a {
    color: var(--accent-blue);
    text-decoration: none;
}

.reporting-item a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .scam-types {
        grid-template-columns: 1fr;
    }
    
    .action-steps {
        grid-template-columns: 1fr;
    }
    
    .action-steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Letters Grid and Badge Styles */
.letters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.letter-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.letter-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.letter-card.featured:hover {
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.card-header {
    padding: 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-image: none !important;
}

.badge.featured {
    background: var(--primary-blue) !important;
    color: white !important;
}

.badge.category {
    background: #6c757d !important;
    color: white !important;
    background-image: none !important;
}

.badge.category.religious-scam { 
    background: #28a745 !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.art-media-scam { 
    background: #17a2b8 !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.financial-scam { 
    background: #dc3545 !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.educational-scam { 
    background: #ffc107 !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.political-scam { 
    background: #6f42c1 !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.phone-scam { 
    background: #fd7e14 !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.general-scam { 
    background: #6c757d !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.category.exposure { 
    background: #e83e8c !important; 
    color: white !important; 
    background-image: none !important; 
}

.badge.parts {
    background: #495057 !important;
    color: white !important;
    background-image: none !important;
}

.card-content {
    padding: 1rem;
}

.letter-title {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.letter-title a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.letter-title a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.letter-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.letter-description {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.parts-list {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius);
}

.parts-list h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.parts-list ul {
    margin: 0;
    padding-left: 1rem;
    list-style: none;
}

.parts-list li {
    margin-bottom: 0.25rem;
}

.parts-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.parts-list a:hover {
    text-decoration: underline;
}

.card-footer {
    padding: 1rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .letters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}