@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Coastal Teal + Ember Palette */
    --primary: #0f766e; /* Teal 600 */
    --primary-hover: #115e59; /* Teal 700 */
    --secondary: #1f2937; /* Slate 800 */
    --accent: #f97316; /* Amber 500 */
    --success: #16a34a; /* Green 600 */
    --danger: #dc2626; /* Red 600 */
    
    /* Backgrounds */
    --bg-body: #f5f5f2; /* Warm light base */
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.9);
    --bg-input: #f8faf5;
    
    /* Text */
    --text-main: #0d1b2a;
    --text-muted: #475569;
    --text-light: #6b7280;
    --text-color: var(--text-main);
    --accent-color: var(--primary);
    
    /* UI Elements */
    --border: #d5d7dd;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(15, 118, 110, 0.28);
}

/* Dark Mode Support */
[data-theme="dark"] {
    --bg-body: #0b1f2a;
    --bg-card: #142c38;
    --bg-nav: rgba(20, 44, 56, 0.9);
    --bg-input: #1d3946;
    --text-main: #e2e8f0;
    --text-muted: #cbd5e1;
    --border: #264554;
    --primary: #2dd4bf; /* brighter teal in dark */
    --primary-hover: #14b8a6;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg-body: #0b1f2a;
        --bg-card: #142c38;
        --bg-nav: rgba(20, 44, 56, 0.9);
        --bg-input: #1d3946;
        --text-main: #e2e8f0;
        --text-muted: #cbd5e1;
        --border: #264554;
        --primary: #2dd4bf;
        --primary-hover: #14b8a6;
    }
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 1.875rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

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

a:hover {
    color: var(--primary-hover);
}

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

/* Navigation - Glassmorphism */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.cta-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-nav:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 1rem;
    background: radial-gradient(circle at 20% 20%, rgba(15, 118, 110, 0.16) 0%, transparent 55%), radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.12) 0%, transparent 45%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

.section-tagline {
    text-align: center;
    color: var(--text-muted);
    margin-top: -2rem;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards (Tools & Guides) */
.tool-card, .guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.tool-card h3, .guide-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-card h3 i, .guide-card h3 i {
    color: var(--primary);
}

/* Forms & Inputs */
input[type='text'],
input[type='password'],
input[type='number'],
input[type='file'] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg-input);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Buttons */
.action-btn, .secondary-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.action-btn {
    background-color: var(--primary);
    color: white;
}

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

.secondary-btn {
    background-color: var(--bg-body);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.secondary-btn:hover {
    background-color: var(--border);
}

/* Specific Tool Styles */
.password-generator .controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.password-generator label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

#password-output {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.1em;
    background-color: var(--bg-body);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0; /* Removed margin-bottom as it's handled by wrapper */
}

.password-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.password-input-wrapper input {
    padding-right: 80px; /* Make space for buttons */
}

.password-actions {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.password-action-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    transition: color 0.2s;
}

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

/* Tip Box */
.tip-box {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #92400e;
}

/* Footer */
footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    color: var(--text-muted) !important;
}

footer a {
    color: var(--text-muted) !important;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary) !important;
}

/* Settings Controls (Theme & Language Toggle) */
.settings-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle, .lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    font-family: inherit;
}

.theme-toggle:hover, .lang-toggle:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.theme-toggle i, .lang-toggle i {
    font-size: 1rem;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .container { padding: 0 1rem; }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide nav-links by default on mobile */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--bg-nav);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-right: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:hover, .nav-links a.active {
        background: var(--bg-card);
        color: var(--primary);
    }

    .cta-nav {
        margin: 1rem 2rem;
        text-align: center;
        display: block;
        border-radius: var(--radius-md);
    }

    /* Settings controls on mobile */
    .settings-controls {
        margin-right: 0.5rem;
    }

    .theme-toggle span, .lang-toggle span {
        display: none;
    }

    .theme-toggle, .lang-toggle {
        padding: 0.5rem;
        min-width: 40px;
        justify-content: center;
    }
}

/* ===================================
   FORD RADIO CODE CALCULATOR STYLES
   =================================== */

#ford-serial {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.ford-result {
    margin-top: 1.5rem;
}

.ford-code-result {
    background: linear-gradient(135deg, var(--bg-input), var(--bg-card));
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
}

.code-display {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.code-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.code-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3em;
    text-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.code-instructions {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.code-instructions h4 {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.code-instructions ol {
    margin-left: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.code-instructions ol li {
    margin-bottom: 0.5rem;
}

.code-instructions ol li strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1em;
}

.code-instructions .warning {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.95rem;
}

#ford-status.success {
    color: var(--success);
    font-weight: 600;
}

#ford-status.error {
    color: var(--danger);
    font-weight: 600;
}

#ford-status.info {
    color: var(--primary);
    font-weight: 500;
}

/* Responsive adjustments for Ford tool */
@media (max-width: 768px) {
    .code-value {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .code-instructions {
        padding: 1rem;
    }

    .code-instructions ol {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}

/* Blog post layout (email leak + AI scam guides) */
.blog-post {
    padding: 120px 0 80px;
    background: var(--bg-color);
    color: var(--text-color);
}

.blog-post .container {
    max-width: 980px;
}

.post-header {
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.75;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post-header h1 {
    margin: 14px 0 12px;
    font-size: 2rem;
    line-height: 1.35;
    color: var(--text-color);
}

.post-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.post-section {
    margin: 36px 0;
}

.post-section h2 {
    font-size: 1.5rem;
    margin: 0 0 14px;
    color: var(--text-color);
}

.post-section h3 {
    font-size: 1.2rem;
    margin: 22px 0 10px;
    color: var(--text-color);
}

.post-section p {
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0 0 14px;
}

.post-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.post-section a:hover {
    text-decoration: underline;
}

.feature-list,
.numbered-list {
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li,
.numbered-list li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.numbered-list {
    counter-reset: section;
}

.numbered-list li::before {
    counter-increment: section;
    content: counter(section) ".";
    font-weight: 600;
    color: var(--accent-color);
    width: 24px;
}

.danger-box,
.warning-box,
.info-box,
.success-box {
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 18px 0;
}

.danger-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(153, 27, 27, 0.06));
    border-color: rgba(220, 38, 38, 0.3);
}

.warning-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(217, 119, 6, 0.06));
    border-color: rgba(249, 115, 22, 0.3);
}

.info-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.06));
    border-color: rgba(59, 130, 246, 0.3);
}

.success-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.06));
    border-color: rgba(34, 197, 94, 0.3);
}

.code-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin: 18px 0;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.code-block pre {
    margin: 0;
    padding: 14px;
    background: var(--card-bg);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.95rem;
    overflow: auto;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

.tool-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin: 18px 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--bg-color);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.tool-content h3 {
    margin: 0 0 6px;
    color: var(--text-color);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.practice-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px;
}

.practice-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-color);
    color: var(--accent-color);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.post-tags .tag {
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 0.95rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.data-table th,
.data-table td {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-color);
}

.data-table th {
    background: var(--bg-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 100px 0 60px;
    }

    .post-header h1 {
        font-size: 1.4rem;
    }

    .post-section {
        margin: 28px 0;
    }
}

/* Article layout (shared) */
.article-header {
    background: linear-gradient(135deg, #0f766e 0%, #0ea5e9 100%);
    color: white;
    padding: 80px 20px 60px;
}

.article-title {
    max-width: 900px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.article-subtitle {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.5;
}

.article-meta {
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.article-content h2 {
    color: var(--text-color);
    font-size: 32px;
    margin: 50px 0 25px;
    padding-top: 20px;
}

.article-content h3 {
    color: var(--text-color);
    font-size: 24px;
    margin: 40px 0 20px;
}

.article-content h4 {
    color: var(--text-color);
    font-size: 20px;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin: 10px 0;
    font-size: 17px;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border-left: 4px solid #ef4444;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.warning-box h4 {
    color: #ef4444;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.danger-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(185, 28, 28, 0.08));
    border-left: 4px solid #dc2626;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.danger-box h4 {
    color: #dc2626;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-left: 4px solid #3b82f6;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: #3b82f6;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border-left: 4px solid #22c55e;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.success-box h4 {
    color: #22c55e;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scam-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.scam-card h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.back-to-blog:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(-5px);
}

.share-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.share-box h4 {
    margin: 0 0 12px 0;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    font-weight: 600;
    color: white;
}

.share-btn.twitter { background: #1d9bf0; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }

.share-btn:hover { filter: brightness(0.95); }

.template-text {
    background: rgba(17,24,39,0.04);
    border: 1px dashed var(--border-color);
    padding: 14px 16px;
    border-radius: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.article-header.paypal-header {
    background: linear-gradient(135deg, #b91c1c 0%, #f97316 100%);
}

@media (max-width: 768px) {
    .article-title { font-size: 32px; }
    .article-subtitle { font-size: 18px; }
    .article-content h2 { font-size: 26px; }
    .article-content h3 { font-size: 22px; }
}
