/* assets/css/meta-tags-analyzer.css */

.seo-check-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.animated-gradient-text {
    background-image: linear-gradient(to right, #ffffff, #e3d9f1, #d0aaf3, #c4a6f5);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-animation 8s infinite alternate;
    display: inline-block;
}

.tool-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 600;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
    color: white;
}

.result-container {
    background: #f8faff;
    border: 1px solid #eef2ff;
    border-radius: 20px;
    padding: 30px;
}

/* Stats Cards */
.stats-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-left: 6px solid #764ba2;
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.benefit-card h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Info Section Premium */
.info-section-premium {
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    border-radius: 20px;
    padding: 40px;
    border-left: 6px solid #667eea;
}

.info-section-premium h3 {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.info-section-premium p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

    100% {
        background-position: 100% 50%;
    }
}

/* Table Enhancements */
.table thead th {
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border: none;
}

.table tbody td,
.table tbody th {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    color: #334155;
}

.badge-pill {
    padding: 0.5em 1em;
    font-weight: 600;
}