
.header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: rgba(30, 30, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    position: relative;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}


.header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 45%, rgba(250, 206, 96, 0.03) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: movingLines 6s infinite linear;
    opacity: 0.1;
    transition: opacity 0.3s ease-in-out;
}


.header:hover {
    transform: translateY(-2px);
    background: rgba(34, 35, 32, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

.header:hover::before {
    opacity: 0.15;
}


@keyframes movingLines {
    0% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(10px) translateY(10px); }
    100% { transform: translateX(0px) translateY(0px); }
}


.header-content-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}


.header-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    font-size: 16px;
    color: #FFB347;
    transition: transform 0.3s ease-in-out;
}


.header:hover .header-icon {
    transform: scale(1.05);
}


.header-text h1 {
    font-size: 17px;
    font-weight: 600;
    color: #FFB347;
}

.header-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}


.header-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 6px;
}


.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease-in-out;
}


.stat-item:hover {
    background: rgba(96, 165, 250, 0.06);
    border-color: rgba(96, 165, 250, 0.1);
}


.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #FFB347;
}


.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}


.stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
}


@media (max-width: 768px) {
    .header {
        padding: 16px;
        margin-bottom: 20px;
    }

    .header-content-wrapper {
        gap: 8px;
    }

    .header-text h1 {
        font-size: 15px;
    }

    .header-text p {
        font-size: 12px;
    }

    .header-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .stat-item {
        padding: 6px 12px;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 18px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px;
    }
    
    .header-content-wrapper {
        gap: 12px;
    }
    
    .header-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 18px;
    }
}