﻿.container {
    position: relative;
    z-index: 1;
}

/* Blog Content Section Styles */
.blog-content-section {
    background: white;
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

    .blog-content-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #4facfe, #00f2fe);
        background-size: 200% 100%;
        animation: gradientFlow 4s ease-in-out infinite;
    }

.blog-content-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 2rem;
}

.blog-icon-wrapper {
    position: relative;
}

.blog-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

    .blog-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 3s infinite;
    }

    .blog-icon i {
        font-size: 2rem;
        color: white;
        position: relative;
        z-index: 2;
    }

.blog-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #718096;
}

.blog-content-body {
    padding-top: 2rem;
}

.content-section {
    position: relative;
}

/* Highlight Box */
.content-highlight-box {
    background: linear-gradient(135deg, #fff8f0 0%, #fef7e6 100%);
    border: 2px solid #ffd93d;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 217, 61, 0.2);
}

    .content-highlight-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffd93d, #ffb347, #ff8c42);
        background-size: 200% 100%;
        animation: gradientFlow 3s ease-in-out infinite;
    }

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
}

.highlight-cta {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff8c42;
    margin-top: 1.5rem;
}

    .highlight-cta p {
        margin: 0;
        font-size: 1rem;
        color: #2d3748;
    }

/* Section Header */
.section-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-title-wrapper {
    flex: 1;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

/* Feature Intro */
.feature-intro {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.feature-intro-text {
    margin: 0;
    font-size: 1rem;
    color: #2d3748;
}

/* Feature List */
.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

    .feature-item:hover {
        background: #f1f5f9;
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .feature-item.highlight-feature {
        background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
        border-left-color: #38a169;
        box-shadow: 0 4px 20px rgba(56, 161, 105, 0.2);
    }

        .feature-item.highlight-feature .feature-icon {
            background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
            box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
        }

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Final CTA Box */
.final-cta-box {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    border: 2px solid #38a169;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(56, 161, 105, 0.2);
}

    .final-cta-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #38a169, #68d391, #9ae6b4);
        background-size: 200% 100%;
        animation: gradientFlow 3s ease-in-out infinite;
    }

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.3);
}

.cta-text {
    max-width: 600px;
}

.cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.cta-actions {
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .cta-button:hover {
        color: white;
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

.tools-cta-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.tools-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.tools-cta-subtitle {
    font-size: 1rem;
    line-height: 1.5;
}

.tools-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tools-cta-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .tools-cta-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.tools-cta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tools-cta-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.tools-cta-item-desc {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.popular-tools-section {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.1);
    border: 1px solid #ffe0b2;
    position: relative;
    overflow: hidden;
}

    .popular-tools-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff9800, #f57c00, #e65100, #bf360c);
        background-size: 200% 100%;
        animation: gradientFlow 3s ease-in-out infinite;
    }

.popular-tools-icon-wrapper {
    position: relative;
}

.popular-tools-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .popular-tools-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 2s infinite;
    }

    .popular-tools-icon i {
        font-size: 1.8rem;
        color: white;
        position: relative;
        z-index: 2;
    }

.popular-tools-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popular-tools-subtitle {
    font-size: 1rem;
    line-height: 1.5;
}

.popular-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.popular-tool-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.popular-tool-card-inner {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    .popular-tool-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ff9800, #f57c00, #e65100, #bf360c);
        background-size: 200% 100%;
        animation: gradientFlow 3s ease-in-out infinite;
    }

.popular-tool-card-wrapper:hover .popular-tool-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 152, 0, 0.25);
    border-color: #ff9800;
}

.popular-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.popular-tool-icon-wrapper {
    position: relative;
}

.popular-tool-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.popular-tool-card-wrapper:hover .popular-tool-icon {
    transform: scale(1.1) rotate(10deg);
}

.popular-tool-badges {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-popular-small {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.popular-tool-content {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.popular-tool-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.popular-tool-description {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.popular-tool-keywords {
    margin-top: 0.5rem;
}

.popular-tool-footer {
    border-top: 1px solid #f7fafc;
    padding-top: 1rem;
}

.popular-tool-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ff9800;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.popular-tool-action-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

    .popular-tool-action-link:hover {
        color: inherit;
        text-decoration: none;
    }

.popular-tool-card-wrapper:hover .popular-tool-action {
    color: #f57c00;
}

    .popular-tool-card-wrapper:hover .popular-tool-action i {
        transform: translateX(5px);
    }

.new-tools-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    border: 1px solid #e6eaff;
    position: relative;
    overflow: hidden;
}

    .new-tools-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #feca57);
        background-size: 200% 100%;
        animation: gradientFlow 3s ease-in-out infinite;
    }

.new-tools-icon-wrapper {
    position: relative;
}

.new-tools-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

    .new-tools-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 2s infinite;
    }

    .new-tools-icon i {
        font-size: 1.8rem;
        color: white;
        position: relative;
        z-index: 2;
    }

.new-tools-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.new-tools-subtitle {
    font-size: 1rem;
    line-height: 1.5;
}

.new-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.new-tool-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.new-tool-card-inner {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    .new-tool-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #feca57);
        background-size: 200% 100%;
        animation: gradientFlow 3s ease-in-out infinite;
    }

.new-tool-card-wrapper:hover .new-tool-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.new-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.new-tool-icon-wrapper {
    position: relative;
}

.new-tool-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.new-tool-card-wrapper:hover .new-tool-icon {
    transform: scale(1.1) rotate(10deg);
}

.badge-free-small {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.new-tool-content {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.new-tool-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.new-tool-description {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.new-tool-date {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

    .new-tool-date i {
        color: #667eea;
    }

.new-tool-footer {
    border-top: 1px solid #f7fafc;
    padding-top: 1rem;
}

.new-tool-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667eea;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.new-tool-action-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

    .new-tool-action-link:hover {
        color: inherit;
        text-decoration: none;
    }

.new-tool-card-wrapper:hover .new-tool-action {
    color: #4c51bf;
}

    .new-tool-card-wrapper:hover .new-tool-action i {
        transform: translateX(5px);
    }

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Statistics Section Styles */
.statistics-section {
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }

    .stat-card:hover::before {
        transform: scaleX(1);
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

    .stat-icon.free {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }

    .stat-icon.recent {
        background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
        box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
    }

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

    .feature-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        animation: shimmer 3s infinite;
    }

    .feature-icon i {
        font-size: 2rem;
        color: white;
        position: relative;
        z-index: 2;
    }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.category-header-wrapper {
    position: relative;
}

.category-header {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .category-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .category-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

.category-icon-wrapper {
    flex-shrink: 0;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.category-content {
    flex-grow: 1;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.category-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.category-badge {
    flex-shrink: 0;
}

    .category-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        border-radius: 50px;
    }

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.tool-card-inner {
    background: white;
    border-radius: 15px;
    padding: 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .tool-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

.tool-card-wrapper:hover .tool-card-inner::before {
    transform: translateX(0);
}

.tool-card-wrapper:hover .tool-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tool-icon-wrapper {
    position: relative;
}

.tool-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tool-card-wrapper:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-status {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-free {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-premium {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: white;
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.tool-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.tool-name-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

    .tool-name-link:hover {
        color: #667eea;
        text-decoration: none;
    }

.tool-description {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.tool-keywords {
    margin-top: 0.5rem;
}

.tool-last-updated {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f1f5f9;
}

.tool-footer {
    border-top: 1px solid #f7fafc;
    padding-top: 1rem;
}

.tool-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tool-action-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

    .tool-action-link:hover {
        color: inherit;
        text-decoration: none;
    }

.tool-card-wrapper:hover .tool-action {
    color: #4c51bf;
}

    .tool-card-wrapper:hover .tool-action i {
        transform: translateX(5px);
    }

/* Responsive */
@media (max-width: 768px) {
    .tool-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tool-card-inner {
        padding: 1.5rem;
    }

    .new-tools-section, .popular-tools-section, .blog-content-section {
        padding: 2rem 1.5rem;
    }

    .new-tools-grid, .popular-tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .new-tool-card-inner, .popular-tool-card-inner {
        padding: 1.25rem;
    }

    .new-tools-title, .popular-tools-title {
        font-size: 1.5rem;
    }

    .content-highlight-box {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .final-cta-box, .tools-cta-section {
        padding: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .tools-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }

        .feature-icon i {
            font-size: 1.5rem;
        }

    .display-5 {
        font-size: 1.8rem;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }
}
