/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    --secondary: #06b6d4;
    --accent: #f472b6;
    --accent-2: #fb923c;
    --neon-green: #34d399;
    --neon-purple: #c084fc;
    --bg: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #1f1f35;
    --bg-surface: #16162a;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --border: #2d2d4a;
    --border-light: #1e1e36;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
    --shadow-glow-accent: 0 0 30px rgba(244, 114, 182, 0.15);
    --max-width: 1200px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(244, 114, 182, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: bg-pulse 8s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.4); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer-bg {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.site-header:hover {
    border-bottom-color: rgba(99, 102, 241, 0.25);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: gradient-shift 4s ease infinite;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: all var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
    transition: all var(--transition);
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: var(--text);
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== AD CONTAINERS ===== */
.ad-container {
    text-align: center;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.ad-placeholder {
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 728px;
    margin: 0 auto;
}

/* Banner image ads */
.banner-img-link {
    display: inline-block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    max-width: 100%;
}

.banner-img-link:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.15);
}

.banner-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary-light);
}

/* ===== TOOL PAGE LAYOUT ===== */
.tool-page {
    padding: 48px 0;
    animation: slide-up 0.6s ease;
}

.tool-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tool-page .tool-description {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.tool-container {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    transition: all var(--transition);
}

.tool-container:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-glow);
}

/* ===== PAGE LAYOUT (about, privacy, contact) ===== */
.page-hero {
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: bg-pulse 6s ease-in-out infinite alternate;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slide-up 0.6s ease;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: slide-up 0.8s ease;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
    z-index: 1;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 48px 0 16px;
    color: var(--text);
    position: relative;
    padding-left: 16px;
}

.page-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.page-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text);
}

.page-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    color: var(--text-light);
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-content a {
    color: var(--primary-light);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.page-content a:hover {
    border-bottom-color: var(--primary-light);
}

/* ===== FORM ELEMENTS ===== */
input[type="text"],
input[type="number"],
input[type="url"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--bg-surface);
    color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 0 20px rgba(99, 102, 241, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn-copy {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
}

.btn-copy:hover {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ===== RESULT BOX ===== */
.result-box {
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-top: 20px;
    font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    word-break: break-all;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
}

/* ===== RANGE SLIDER ===== */
input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* ===== CHECKBOX / TOGGLE ===== */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 56px 40px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--neon-green));
    background-size: 300% 100%;
    animation: gradient-shift 4s ease infinite;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.newsletter-section h2 {
    color: var(--text);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.newsletter-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--bg-surface);
    color: var(--text);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    white-space: nowrap;
    padding: 16px 28px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.newsletter-success {
    display: none;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px;
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-header .container {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .tool-container {
        padding: 20px;
    }

    .tool-page h1 {
        font-size: 1.6rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .newsletter-section {
        padding: 36px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section h2 {
        font-size: 1.4rem;
    }
}


/* ===== PROMO BANNERS ===== */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    color: white;
    font-size: 1rem;
    max-width: 900px;
    margin: 16px auto;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.promo-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.promo-banner:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.promo-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.promo-text {
    line-height: 1.5;
    z-index: 1;
}

.promo-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.promo-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.promo-banner:hover .promo-cta {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* TEMU */
.promo-temu {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff4500);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

/* NORDVPN */
.promo-nordvpn {
    background: linear-gradient(135deg, #1a1a4e, #2d2d8a, #4343c8, #2d2d8a);
    background-size: 300% 300%;
    animation: gradient-shift 5s ease infinite;
}

/* KIWI */
.promo-kiwi {
    background: linear-gradient(135deg, #00a991, #00c9b1, #005f56, #00a991);
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

/* DEAL / OFFRE */
.promo-deal {
    background: linear-gradient(135deg, #7c3aed, #a855f7, #6d28d9, #7c3aed);
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

/* CAPCUT */
.promo-capcut {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

/* MOONLOCK */
.promo-moonlock {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
}

/* BARISTINA */
.promo-baristina {
    background: linear-gradient(135deg, #4a2c17, #6b3a1f, #8b4513);
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

/* Floating particles */
.promo-banner .particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.promo-banner .particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float-up 4s infinite;
}

.promo-banner .particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.promo-banner .particles span:nth-child(2) { left: 30%; animation-delay: 1s; }
.promo-banner .particles span:nth-child(3) { left: 50%; animation-delay: 2s; }
.promo-banner .particles span:nth-child(4) { left: 70%; animation-delay: 0.5s; }
.promo-banner .particles span:nth-child(5) { left: 90%; animation-delay: 1.5s; }

@keyframes float-up {
    0% { bottom: -10px; opacity: 0; }
    50% { opacity: 1; }
    100% { bottom: 110%; opacity: 0; }
}

@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        min-height: 120px;
    }
    .promo-text strong {
        font-size: 1.05rem;
    }
    .promo-icon {
        font-size: 2rem;
    }
}


/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: var(--max-width);
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.breadcrumb span {
    color: var(--text-light);
}

/* ===== RELATED TOOLS ===== */
.related-tools {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.related-tools h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.related-tool-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 8px 4px 0;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.related-tool-link:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.05);
}

/* ===== NEWSLETTER STICKY BAR ===== */
.newsletter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-size: 0.9rem;
    color: var(--text-light);
}

.newsletter-bar-form {
    display: flex;
    gap: 8px;
}

.newsletter-bar-form input {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-surface);
    color: var(--text);
    font-size: 0.85rem;
    width: 200px;
}

.newsletter-bar-form button {
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background var(--transition-fast);
}

.newsletter-bar-form button:hover {
    background: var(--primary-dark);
}

.newsletter-bar-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
}

@media (max-width: 768px) {
    .newsletter-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }
    .newsletter-bar-form input {
        width: 150px;
    }
}


/* ===== UPDATE DATE BADGE ===== */
.update-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ===== STATS HIGHLIGHT ===== */
.stats-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

.stats-highlight strong {
    color: var(--text);
}


/* ===== UPDATE DATE ===== */
.update-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 6px 12px;
    background: var(--bg-surface);
    border-radius: 6px;
    display: inline-block;
    border: 1px solid var(--border);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--bg-surface);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    border-bottom: 2px solid var(--border);
}

.comparison-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.comparison-table tr:hover td {
    background: rgba(99, 102, 241, 0.03);
}

.comparison-table .check {
    color: var(--neon-green);
    font-weight: bold;
}

.comparison-table .cross {
    color: #ef4444;
}


/* ===== SEO STATS ===== */
.seo-stats {
    background: var(--bg-card);
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.seo-stats strong {
    color: var(--primary-light);
}
