.search-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.search-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-form {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.search-input-group {
    display: flex;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    padding: 16px 24px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border: none;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.search-btn:hover {
    background: linear-gradient(135deg, #00ccff, #00ff88);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.search-input-group:focus-within {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.search-results-info {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(10px);
}

.search-results-info strong {
    color: #00ff88;
    font-weight: 700;
}

.clear-search {
    color: #00ccff;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.clear-search::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    transition: width 0.3s ease;
}

.clear-search:hover {
    color: #00ff88;
}

.clear-search:hover::after {
    width: 100%;
}

/* Responsive для поиска */
@media (max-width: 768px) {
    .search-section {
        margin: 1.5rem 0;
        padding: 1rem;
    }

    .search-input-group {
        max-width: 100%;
    }

    .search-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .search-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .search-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .search-btn {
        padding: 12px 16px;
    }

    .search-results-info {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .clear-search {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}