
/* Floating Cards Animation */
.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 160px;
    animation: float 6s ease-in-out infinite;
    z-index: 20;
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
}

/* Feature Images Container Needs Relative Positioning */
.feature-img, .download-image {
    position: relative; /* Ensure cards are positioned relative to this */
}

/* Hero Section Cards */
.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: 3s;
}

/* Feature 1: 智能扫菲 (Scan) */
.card-scan-1 {
    top: 15%;
    right: -10px;
    animation-delay: 1s;
}

.card-scan-2 {
    bottom: 20%;
    left: -10px;
    animation-delay: 4s;
}

/* Feature 2: 自动算薪 (Salary) */
.card-salary-1 {
    top: 25%;
    left: -20px;
    animation-delay: 2s;
}

.card-salary-2 {
    bottom: 30%;
    right: -20px;
    animation-delay: 5s;
}

/* Feature 3: 进度追踪 (Progress) */
.card-progress-1 {
    top: 10%;
    right: 0;
    animation-delay: 0.5s;
}

.card-progress-2 {
    bottom: 15%;
    left: 0;
    animation-delay: 3.5s;
}

/* Download Section Cards */
.card-download-1 {
    top: 15%;
    left: -20px;
    animation-delay: 1.5s;
}

.card-download-2 {
    bottom: 25%;
    right: -20px;
    animation-delay: 4.5s;
}


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    font-size: 1rem;
}

.float-icon.success { background-color: #10b981; }
.float-icon.warning { background-color: #f59e0b; }
.float-icon.primary { background-color: #4f46e5; }
.float-icon.danger { background-color: #ef4444; }
.float-icon.info { background-color: #0ea5e9; }

.card-text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    line-height: 1.3;
}

.card-text strong {
    color: #1f2937;
    font-weight: 600;
}

.card-text span {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Adjust positioning for larger screens */
@media (min-width: 992px) {
    /* Hero Cards */
    .card-1 {
        left: -20px;
        top: 25%;
    }
    .card-2 {
        right: -20px;
        bottom: 30%;
    }

    /* Feature Cards - Adjusted for side-by-side layout */
    .card-scan-1 { right: -30px; top: 20%; }
    .card-scan-2 { left: -30px; bottom: 25%; }
    
    .card-salary-1 { left: -40px; top: 30%; }
    .card-salary-2 { right: -40px; bottom: 20%; }
    
    .card-progress-1 { right: -20px; top: 15%; }
    .card-progress-2 { left: -20px; bottom: 25%; }

    /* Download Cards */
    .card-download-1 { left: -40px; top: 20%; }
    .card-download-2 { right: -40px; bottom: 20%; }
}

/* Hide on small screens */
@media (max-width: 768px) {
    .floating-card {
        display: none;
    }
}
