/* SQLMap命令生成器工具标题样式 */
.tool-header {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.tool-header:before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: headerGlow 10s infinite linear;
    z-index: 1;
    pointer-events: none;
}

.tool-header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: fadeInDown 0.8s ease-out;
}

.tool-header p {
    opacity: 0.9;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

/* 确保动画效果正常工作 */
@keyframes headerGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}